diff --git a/frontend/application/components/CartDrawer.tsx b/frontend/application/components/CartDrawer.tsx index 7fc8301..0da3991 100644 --- a/frontend/application/components/CartDrawer.tsx +++ b/frontend/application/components/CartDrawer.tsx @@ -55,17 +55,30 @@ export default function CartDrawer({ isOpen, onClose, onCheckout, onShopNavigate } }, [hasLachsOl, hasCanhydrox]); - // Lock background body scroll when cart drawer is open + // Lock background body scroll and handle browser back button to close drawer useEffect(() => { if (isOpen) { document.body.style.overflow = "hidden"; + if (typeof window !== "undefined") { + window.history.pushState({ modal: "cart_drawer" }, ""); + } } else { document.body.style.overflow = "unset"; } + + const handlePopState = () => { + if (isOpen) { + onClose(); + } + }; + + window.addEventListener("popstate", handlePopState); + return () => { document.body.style.overflow = "unset"; + window.removeEventListener("popstate", handlePopState); }; - }, [isOpen]); + }, [isOpen, onClose]); return ( diff --git a/frontend/application/components/ProductPage.tsx b/frontend/application/components/ProductPage.tsx index 1c6144e..4457bb3 100644 --- a/frontend/application/components/ProductPage.tsx +++ b/frontend/application/components/ProductPage.tsx @@ -18,6 +18,7 @@ import { Bell, Sparkles, ChevronDown, + ChevronUp, Activity, Heart, Zap, @@ -25,6 +26,9 @@ import { ShoppingBag, Thermometer, AlertTriangle, + AlertCircle, + Dog, + Cat, Share2, Phone, Download, @@ -84,6 +88,7 @@ export default function ProductPage({ productSlug }: { productSlug: string }) { const [showRefillModal, setShowRefillModal] = useState(false); const [isMounted, setIsMounted] = useState(false); const [dosageConfig, setDosageConfig] = useState(null); + const [isFullDescriptionOpen, setIsFullDescriptionOpen] = useState(false); const [activeImage, setActiveImage] = useState(null); const [isImageZoomOpen, setIsImageZoomOpen] = useState(false); @@ -156,6 +161,22 @@ export default function ProductPage({ productSlug }: { productSlug: string }) { } }, [activePet, setPetType, setWeight]); + // Pet compatibility calculation matching ArchivePage logic + const compatibility = useMemo(() => { + if (!activePet || !fullProduct) return null; + + const sameSpecies = fullProduct.suitableFor === activePet.type || fullProduct.suitableFor === "هر دو"; + const matchedSymptom = (activePet.medicalConditions || []).find(mc => + (fullProduct.symptoms || []).some(s => mc.includes(s) || s.includes(mc)) + ); + + if (!sameSpecies) return { type: 'alert', text: `مخصوص ${fullProduct.suitableFor}` }; + if (matchedSymptom) return { type: 'success', text: `توصیه شده برای ${matchedSymptom} ${activePet.name}` }; + if (sameSpecies) return { type: 'neutral', text: `مناسب برای ${activePet.name}` }; + + return null; + }, [fullProduct, activePet]); + const calculation = useMemo(() => { if (!fullProduct) return null; @@ -166,7 +187,8 @@ export default function ProductPage({ productSlug }: { productSlug: string }) { if (dosageConfig) { const baseW = dosageConfig.baseWeightKg || 10; const baseD = dosageConfig.baseDose || 1; - const calculated = Math.round((weight / baseW) * baseD); + const ageMultiplier = petType === "young" ? (dosageConfig.youngMultiplier || 1.25) : 1; + const calculated = Math.round((weight / baseW) * baseD * ageMultiplier); dailyDose = Math.max(1, calculated); if (dosageConfig.maxDailyDose && dosageConfig.maxDailyDose > 0) { dailyDose = Math.min(dailyDose, dosageConfig.maxDailyDose); @@ -292,6 +314,20 @@ export default function ProductPage({ productSlug }: { productSlug: string }) { گرید دارویی اختصاصی + + {/* Species Suitable Badges (Dog / Cat) */} +
+ {(product.suitableFor === "سگ" || product.suitableFor === "هر دو") && ( +
+ +
+ )} + {(product.suitableFor === "گربه" || product.suitableFor === "هر دو") && ( +
+ +
+ )} +
)} + {compatibility && ( +
+ {compatibility.type === 'alert' ? : compatibility.type === 'success' ? : } + {compatibility.text} +
+ )}

@@ -441,17 +487,44 @@ export default function ProductPage({ productSlug }: { productSlug: string }) { {/* Comprehensive Product Description Section (Below the fold) */} {fullProduct.description && ( -
-
-
- +
+
+
+
-

توضیحات و معرفی محصول

+

توضیحات و معرفی محصول

-
- {fullProduct.description.split('\n').filter(Boolean).map((para, pIdx) => ( -

{para.trim()}

- ))} +
+ {(() => { + const paragraphs = fullProduct.description.split('\n').filter(Boolean); + const shouldTruncate = paragraphs.length > 2 || fullProduct.description.length > 300; + const displayedParagraphs = (!isFullDescriptionOpen && shouldTruncate) + ? paragraphs.slice(0, 2) + : paragraphs; + + return ( + <> +
+ {displayedParagraphs.map((para, pIdx) => ( +

{para.trim()}

+ ))} +
+ + {shouldTruncate && ( +
+ +
+ )} + + ); + })()}
)} @@ -465,16 +538,16 @@ export default function ProductPage({ productSlug }: { productSlug: string }) { fullProduct.nameFa?.includes('کرم') || fullProduct.nameFa?.includes('قطره تمیزکننده') || fullProduct.nameFa?.includes('اسپری')) && ( -
-
-
- +
+
+
+
-

+

{activePet ? `ماشین حساب هوشمند مصرف برای ${activePet.name}` : 'ماشین حساب هوشمند مصرف'}

-

+

{activePet ? `تخمین دقیق دوز روزانه و ماندگاری هر بسته بر اساس وزن و سن ${activePet.name}` : 'تخمین دقیق دوز روزانه و ماندگاری هر بسته بر اساس مشخصات پت شما'} @@ -482,14 +555,14 @@ export default function ProductPage({ productSlug }: { productSlug: string }) {

-
+
{/* Manual Slider Inputs */} -
+
{activePet ? `وزن ${activePet.name} (کیلوگرم)` : 'وزن پت (کیلوگرم)'} - {toPersian(weight)} ک‌گ + {toPersian(weight)} ک‌گ
- - + +
{/* Calculation Results Output */} -
-
-
- - - {activePet ? `محاسبه‌گر دوره درمانی برای ${activePet.name}` : 'محاسبه‌گر دوره درمانی (AI Calculator)'} +
+
+
+
+ + + {activePet ? `محاسبه‌گر دوره درمانی ${activePet.name}` : 'محاسبه‌گر دوره درمانی'} + +
+ + AI Calculator
- + پیشنهاد: {toPersian(itemQuantity)} بسته
-
{toPersian(calculation.duration)} روز
+
{toPersian(calculation.duration)} روز
مدت تامین یک بسته
-
{toPersian(calculation.dailyDose)}
+
{toPersian(calculation.dailyDose)}
دوز روزانه ({calculation.unit === 'g' ? 'گرم' : calculation.unit})
-
- تخمین هزینه دوره ۳۰ روزه: - +
+ تخمین هزینه دوره ۳۰ روزه: + {toPersian((Math.ceil(30 / (calculation.duration || 30)) * (product.priceValue || 0)).toLocaleString())} تومان
-

+

{activePet ? `* دوز دقیق بر اساس وزن ${activePet.name} (${toPersian(weight)} ک‌گ) محاسبه شده است؛ برای ماندگاری کامل دوره، خرید تعداد بسته‌های پیشنهادی توصیه می‌شود.` : '* دوز دقیق بر اساس وزن پت محاسبه شده است؛ برای ماندگاری کامل دوره، خرید تعداد بسته‌های پیشنهادی توصیه می‌شود.'} @@ -553,20 +631,20 @@ export default function ProductPage({ productSlug }: { productSlug: string }) { )} {/* Ingredients Section */} -

-
-
- +
+
+
+
-

ترکیبات و آنالیز علمی

+

ترکیبات و آنالیز علمی

-
+
{/* Ingredients Cards */} {product.main_ingredients && product.main_ingredients.length > 0 && (
-

مواد تشکیل‌دهنده برتر

-
+

مواد تشکیل‌دهنده برتر

+
{product.main_ingredients.map((ing, idx) => { const termKey = termKeys.find(key => { const termObj = scientificTerms[key] || SCIENTIFIC_TERMS[key]; @@ -580,8 +658,8 @@ export default function ProductPage({ productSlug }: { productSlug: string }) { termNameClean.includes(ingClean); }); return ( -
- +
+ {termKey ? ( router.push(`/wiki?term=${id}`)}> {ing} diff --git a/frontend/application/components/Tooltip.tsx b/frontend/application/components/Tooltip.tsx index 6055a44..3f40fd3 100644 --- a/frontend/application/components/Tooltip.tsx +++ b/frontend/application/components/Tooltip.tsx @@ -1,5 +1,5 @@ "use client"; -import React, { useState } from 'react'; +import React, { useState, useRef, useEffect } from 'react'; import { motion, AnimatePresence } from 'motion/react'; import { Info, ExternalLink } from 'lucide-react'; import { SCIENTIFIC_TERMS } from '../lib/data/scientificTerms'; @@ -13,30 +13,90 @@ interface TooltipProps { export default function Tooltip({ termKey, children, onWikiNavigate }: TooltipProps) { const [isVisible, setIsVisible] = useState(false); + const [positionClass, setPositionClass] = useState("left-1/2 -translate-x-1/2"); + const [arrowClass, setArrowClass] = useState("left-1/2 -translate-x-1/2"); + const containerRef = useRef(null); + const tooltipRef = useRef(null); + const scientificTerms = useSettingsStore(state => state.scientificTerms); const termData = scientificTerms[termKey] || SCIENTIFIC_TERMS[termKey]; + // Adjust horizontal position dynamically to prevent overflowing viewport edges + useEffect(() => { + if (isVisible && containerRef.current) { + const rect = containerRef.current.getBoundingClientRect(); + const screenWidth = window.innerWidth; + + if (rect.left < 140) { + // Too close to left edge (in LTR) or screen boundary + setPositionClass("left-0 translate-x-0"); + setArrowClass("left-6 translate-x-0"); + } else if (screenWidth - rect.right < 140) { + // Too close to right edge + setPositionClass("right-0 translate-x-0"); + setArrowClass("right-6 translate-x-0"); + } else { + setPositionClass("left-1/2 -translate-x-1/2"); + setArrowClass("left-1/2 -translate-x-1/2"); + } + } + }, [isVisible]); + + // Click outside listener to dismiss on mobile + useEffect(() => { + if (!isVisible) return; + const handleClickOutside = (e: MouseEvent | TouchEvent) => { + if (containerRef.current && !containerRef.current.contains(e.target as Node)) { + setIsVisible(false); + } + }; + document.addEventListener("mousedown", handleClickOutside); + document.addEventListener("touchstart", handleClickOutside); + return () => { + document.removeEventListener("mousedown", handleClickOutside); + document.removeEventListener("touchstart", handleClickOutside); + }; + }, [isVisible]); + if (!termData) return <>{children}; + const handleToggle = (e: React.MouseEvent) => { + e.preventDefault(); + e.stopPropagation(); + setIsVisible(prev => !prev); + }; + return ( setIsVisible(true)} - onMouseLeave={() => setIsVisible(false)} + ref={containerRef} + className="relative inline-block group cursor-pointer border-b border-dotted border-canina-blue/60 select-none" + onClick={handleToggle} + onMouseEnter={() => { + if (typeof window !== "undefined" && window.matchMedia?.("(hover: hover)")?.matches !== false) { + setIsVisible(true); + } + }} + onMouseLeave={() => { + if (typeof window !== "undefined" && window.matchMedia?.("(hover: hover)")?.matches !== false) { + setIsVisible(false); + } + }} > {children} {isVisible && ( e.stopPropagation()} + className={`absolute bottom-full mb-3 w-72 max-w-[calc(100vw-2rem)] p-4 sm:p-5 bg-white text-medical-gray-900 rounded-2xl shadow-2xl border border-medical-gray-200 z-[100] text-sm ${positionClass}`} dir="rtl" >
- + دانشنامه علمی کنینا
{termData.term}
@@ -52,11 +112,11 @@ export default function Tooltip({ termKey, children, onWikiNavigate }: TooltipPr className="flex items-center justify-between text-canina-blue hover:text-blue-700 transition-colors text-xs font-black cursor-pointer pt-2 border-t border-medical-gray-100 w-full" > مطالعه مقاله کامل - + )} {/* Arrow */} -
+
)} diff --git a/frontend/application/lib/types.ts b/frontend/application/lib/types.ts index 06aeefa..67b291e 100644 --- a/frontend/application/lib/types.ts +++ b/frontend/application/lib/types.ts @@ -97,6 +97,7 @@ export interface DosageConfig { baseDose: number; maxDailyDose: number; instructions: string; + youngMultiplier?: number; } export interface HomeApiResponse { diff --git a/graphify-out/.graphify_labels.json b/graphify-out/.graphify_labels.json index 5848cb7..4ea4b28 100644 --- a/graphify-out/.graphify_labels.json +++ b/graphify-out/.graphify_labels.json @@ -1,38 +1,26 @@ { "0": "Roles", "1": "app.module.ts", - "2": "SmsService", + "2": "SettingsController", "3": "ProductService", - "4": "utils.ts", + "4": "SafeImage.tsx", "5": "CmsController", "6": "tickets.controller.ts", "7": "Button.tsx", - "8": "ReportsController", + "8": "admin.module.ts", "9": "devDependencies", -<<<<<<< HEAD - "10": "ReviewsController", + "10": "CreateReviewDto", "11": "MediaSelector.tsx", "12": "index.ts", "13": "app-audit-verification.e2e-spec.js", - "14": "useSettingsStore", -======= - "10": "ReviewsService", - "11": "MediaSelector.tsx", - "12": "PetProfile.tsx", - "13": "app-audit-verification.e2e-spec.js", "14": "UserDashboard.tsx", ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "15": "src/services/api.ts", "16": "DoctorQueryDto", - "17": "UserDashboard.tsx", + "17": "schema.ts", "18": "JwtAuthGuard", - "19": "ProductsService", + "19": "RevalidationService", "20": "CreateVideoDto", -<<<<<<< HEAD - "21": "Button.tsx", -======= "21": "ProductPage.tsx", ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "22": "lib/services/api.ts", "23": "MenuService", "24": "BE-001", @@ -44,9 +32,9 @@ "30": "DEVOPS-001", "31": "DOC-001", "32": "adminRoutes.tsx", - "33": "WholesaleService", + "33": "WholesaleApplyDto", "34": "B2BService", - "35": "PetProfile.tsx", + "35": "AuthController", "36": "FaqService", "37": "راهنمای تست سیستم (Software Testing)", "38": "Button", @@ -59,47 +47,27 @@ "45": "What You Must Do When Invoked", "46": "HomeController", "47": "IngredientsService", -<<<<<<< HEAD - "48": "useCartStore", -======= "48": "auth.module.ts", ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "49": "devDependencies", "50": "devDependencies", "51": "BlogsController", "52": "PrescriptionsService", "53": "SmartAdvisorService", -<<<<<<< HEAD - "54": "UsersService", -======= "54": "UsersController", ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "55": "UITexts.tsx", "56": "Orders.tsx", "57": "Role & Core Objective", "58": "ContactService", "59": "compilerOptions", -<<<<<<< HEAD - "60": "PaymentService", - "61": "AdminTransactionFilterDto", - "62": "CreateReviewDto", - "63": "dependencies", - "64": "compilerOptions", - "65": "Media.tsx", - "66": "WikiController", - "67": "PetsController", - "68": "20260526145407_init/migration.sql", -======= "60": "users.controller.ts", "61": "payment.service.ts", "62": "ProductDto", "63": "dependencies", "64": "compilerOptions", "65": "app.e2e-spec.js", - "66": "ApiOperation", - "67": "admin.module.ts", + "66": "AdminQueryDto", + "67": "PetsController", "68": "PaymentService", ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "69": "Required Review Group Closures", "70": "compilerOptions", "71": "getPageMetadata", @@ -107,36 +75,28 @@ "73": "Operational Rules & Boundaries", "74": "WikiController", "75": "PetsController", -<<<<<<< HEAD - "76": "CreateEBankCheckoutDto", -======= - "76": "AdminService", ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 + "76": ".getDashboardStats", "77": "seo.module.ts", - "78": "route.ts", + "78": "rss.xml/route.ts", "79": "🏢 AI Software Agency — Master Orchestration Protocol v3", "80": "Operational Rules & Boundaries", "81": "Operational Rules & Boundaries", "82": "scripts", "83": "dependencies", "84": "Role & Core Objective", - "85": "eslint-config-prettier", + "85": "ArchivePage.tsx", "86": "zibal.service.ts", "87": "dependencies", -<<<<<<< HEAD - "88": "ProductPage.tsx", -======= - "88": "toPersian", ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 + "88": "NetworkBanner.tsx", "89": "seed-products.ts", "90": "useSettingsStore", "91": "Reconciled Audit Roles & Assignments", "92": "OrdersService", "93": "@nestjs/schematics", "94": "Phase 3.1 — Human Review Preparation and Master Backlog Critique", - "95": "schema.ts", + "95": "blog/[slug]/page.tsx", "96": "compilerOptions", - "97": "blog/[slug]/page.tsx", + "97": "SettingsService", "98": "scripts", "99": "BlogsController", "100": "Deep Audit Summary Report", @@ -145,19 +105,14 @@ "103": "Comprehensive Change Log", "104": "Coupons.tsx", "105": "Operational Rules & Boundaries", -<<<<<<< HEAD - "106": "blog/page.tsx", - "107": "layout.tsx", -======= "106": "Media.tsx", - "107": "@types/supertest", ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 + "107": "WikiController", "108": "PrismaService", "109": "1. Summary of Integrity Repairs Performed", "110": "Operational Rules & Boundaries", "111": "Operational Rules & Boundaries", "112": "Operational Rules & Boundaries", - "113": "CreateReviewDto", + "113": "SmsService", "114": "AppService", "115": "UsersService", "116": "Vazirmatn Changelog", @@ -166,57 +121,43 @@ "119": "compilerOptions", "120": "compilerOptions", "121": "backend/README.md", -<<<<<<< HEAD - "122": "videos/page.tsx", - "123": "BlogsService", -======= - "122": "Param", + "122": "AdminService", "123": "CreateEBankCheckoutDto", ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "124": "Repository Map", "125": "validate_integrity.js", "126": "admin-panel/package.json", "127": "Sahel-Font", -<<<<<<< HEAD - "128": "AdminService", - "129": "نقشه جامع پوشش تست‌های سرتاسری (E2E Test Coverage Map) — پروژه Canina", -======= "128": "AdminController", "129": "InitiatePaymentDto", ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "130": "Sahel-Font", "131": "Role & Core Objective", "132": "orchestrate.py", "133": "backend/package.json", - "134": "app.e2e-spec.js", + "134": "blog/page.tsx", "135": "graphify reference: extra exports and benchmark", "136": "Phase 2 Final Quality Gate Summary Report", "137": "Task Modifications Log", "138": "Install", - "139": "catalog/page.tsx", + "139": "layout.tsx", "140": "ErrorBoundary", "141": "application/package.json", "142": "start-dev.js", "143": "generate-openapi.js", "144": "@testing-library/react", - "145": "@types/node", + "145": "admin.service.ts", "146": "System Discovery", - "147": "RevalidationService", - "148": "typescript", + "147": "useCartStore", + "148": "wiki/[slug]/page.tsx", "149": "SmsSettingsPage.tsx", "150": "Product Requirement Document (PRD)", -<<<<<<< HEAD - "151": "admin.service.ts", - "152": "InitiatePaymentDto", -======= "151": "auth.service.ts", - "152": ".createCoupon", ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 + "152": "cartStore.ts", "153": "exclude", "154": "Baseline Command Plan & Reconciled Command History", "155": "seo-backfill.ts", "156": "manual-test-scenarios.md", "157": "ErrorPages.tsx", + "158": "AuthService", "159": "with-vpn.sh", "160": "Architecture Specification", "161": "Project Health Audit Report", @@ -234,12 +175,16 @@ "173": "Phase 3 Audit Traceability Matrix", "174": "rebuild_honest_ledger.js", "175": "validate_evidence_grade.js", + "176": "CreateOrderDto", + "177": "SmsLogQueryDto", + "178": "نقشه جامع پوشش تست‌های سرتاسری (E2E Test Coverage Map) — پروژه Canina", "179": "PaginationDto", "180": "API Contract Specification", "181": "⚙️ Backend Technical Review (05_dev_backend)", "182": "🎨 Frontend & Admin Panel Technical Review (06_dev_frontend)", "183": "🚀 SEO & Content Strategy Review (12_seo_content)", - "184": "MetricsController", + "184": "RedisService", + "185": "trust-seals/page.tsx", "186": "seed-ui-texts.ts", "187": "seed-wiki.ts", "188": "update-blog.dto.ts", @@ -251,11 +196,14 @@ "194": "Raw Finding Verification & Disposition Report", "195": "React + TypeScript + Vite", "196": "Select.tsx", - "199": "auth.controller.ts", + "197": "wiki/page.tsx", + "198": "catalog/page.tsx", + "199": "RegisterDto", "200": "application/README.md", "201": "deploy.sh", "202": "🔒 Security & Performance Review (09_devops_security)", "203": "👁️ UX & Persona Interface Review (08_visual_qa)", + "204": "eslint", "205": "prisma/scientificTerms.ts", "206": "seed-blogs.ts", "207": "seed-custom.ts", @@ -274,6 +222,7 @@ "220": "Input.tsx", "221": "Textarea.tsx", "222": "admin-panel/tsconfig.json", + "223": "@types/node", "224": "jest", "225": "next.config.ts", "226": "Shabnam Font README", @@ -281,16 +230,9 @@ "228": "rules/graphify.md", "229": ".agents/workflows/graphify.md", "230": "instructions.md", + "231": "typescript", "232": "@eslint/js", -<<<<<<< HEAD - "234": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", -======= - "233": "eslint-plugin-prettier", - "234": "WholesaleApplyDto", - "235": "@nestjs/cli", - "236": "@nestjs/testing", - "237": "app/page.tsx", ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 + "233": "globals", "238": "prisma", "239": "source-map-support", "240": "supertest", @@ -349,7 +291,6 @@ "293": "Staging Docker Compose", "294": "ZibalService", "295": "eslint-plugin-react-refresh", - "296": "tailwindcss", "297": "ZibalEBankService", "298": ".initiateOrderPayment", "299": "@tailwindcss/postcss", @@ -365,12 +306,7 @@ "311": "@types/multer", "312": "@types/passport-jwt", "313": "Modal.tsx", -<<<<<<< HEAD -======= - "314": "typescript-eslint", ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "315": "typescript", - "316": "ts-jest", "317": "revalidate/route.ts", "318": "MaskableField.tsx", "319": "eslint-config-next" diff --git a/graphify-out/.graphify_labels.json.sig b/graphify-out/.graphify_labels.json.sig index e2a49f3..9430fde 100644 --- a/graphify-out/.graphify_labels.json.sig +++ b/graphify-out/.graphify_labels.json.sig @@ -1,5 +1 @@ -<<<<<<< HEAD -{"0": "b0118f68a3e7f0ad", "1": "18de18c6e7ae94f7", "2": "c15787a7453232bc", "3": "7589a65ac5d3843e", "4": "77c7452fa7f95e52", "5": "f34c872571e8a774", "6": "57f26bed5f2b7960", "7": "0054fd66d397b1c2", "8": "eab4b90b3684993f", "9": "5755748a15e41acd", "10": "62efd7b1e440f9ed", "11": "7486b8792dd18a8e", "12": "69a57651cd8f5b0b", "13": "3a0d379c05c48643", "14": "f70ac56a441b71cc", "15": "c503f61c132e0faa", "16": "bbaf7539ddd300b0", "17": "d0c893a01ede1ca8", "18": "714e834ae9808320", "19": "77128508b883f928", "20": "1a62865714a9c82a", "21": "ca7f434e9ff71924", "22": "453cd415050479d6", "23": "b64d81a71800bd4b", "24": "4eda46a5b0695ef6", "25": "90b79d6027d60d30", "26": "6bd6f2633370820c", "27": "7664e56213a29331", "28": "942c4f9928c60a45", "29": "0614b98d9013b5f5", "30": "53ff49b3d54f0fba", "31": "2153ddcd7477dfb7", "32": "89fe2ef12db40871", "33": "8c213a62d97de6b1", "34": "e89579446dcd5c0b", "35": "10ed3df6c0c4be58", "36": "b73994254301dd0e", "37": "1c9a1f4c72613346", "38": "58fe18c423dae025", "39": "f38c905c9af9edc0", "40": "f07a16ec76520068", "41": "7abb5bc6a0e4f65f", "42": "cbaa20536db72d3e", "43": "7478d6755ca2248a", "44": "b4c82af1f2f566f7", "45": "7dd5c61562c827a8", "46": "4ece6985263357c4", "47": "65e41c1c22dcd058", "48": "e0d5fcbe4aefbdbc", "49": "841013681f4e6e8c", "50": "b1c3283bd55a8fe9", "51": "f72c06a6893d6e7d", "52": "73df605d6eec20d9", "53": "cb17af4eb831480f", "54": "be3689094661c515", "55": "93d836d575401c61", "56": "2a1dd74542bc4e00", "57": "0f62727f3b4907c0", "58": "533f2d32c60dd4b3", "59": "7369e85febb97f1a", "60": "5287bf63026e555d", "61": "5404a2dafca5cc88", "62": "2c77321eabf5539c", "63": "2b0ee366d6136717", "64": "3b9521f7d7986eaa", "65": "0e03a5b22c0f26de", "66": "6e67e4bc78994a71", "67": "10d4f0bfa19dd52f", "68": "bf5a253cc5340107", "69": "31a5a53f1fe77e46", "70": "01d4f9d6d9f3b08a", "71": "de88671ca9aafe18", "72": "69d0f8b228227690", "73": "22456307ff273d80", "74": "d9e74b032c5b8440", "75": "30a4a28cb6862c78", "76": "c4acedd7472cf7cb", "77": "62430df45afa65b5", "78": "0273bbf045eb1528", "79": "ba7bc17581366c9a", "80": "0727bb53199085fc", "81": "91393683c97d1773", "82": "992572e1562e1a95", "83": "71d2ce6fb684bc0e", "84": "70497658d0e0cea6", "85": "f6ddba6f531d6b96", "86": "e3d13e2060945d3f", "87": "f0f56796aaebb4f5", "88": "169054d7af756091", "89": "656f816eb51f2ab1", "90": "8bc436ec0e99c7d9", "91": "25a6695f5783d2be", "92": "00341c22c4d34679", "93": "b796283dc9729998", "94": "f7a706f5fcb260c3", "95": "cf61e1532c01d2a4", "96": "3fef84a1b6832b0b", "97": "9c27b454cb67cda6", "98": "5bbc8944b2ba2d8f", "99": "3c7478cc94918e63", "100": "3c1d9844d072bd2a", "101": "b3c5433df880f335", "102": "e036dbd1de0f8b38", "103": "ac7cb5ec7d5c0802", "104": "dbe2f8ccb8d5321a", "105": "622f83f2eb300a25", "106": "73382a9ef9d08673", "107": "3ae63656c43c37a7", "108": "54a50b1fb4116d98", "109": "6d16ccde1291c9d4", "110": "d228746e85ead3af", "111": "b55ba9125ffb5729", "112": "5f50a360f18a880b", "113": "34cf48f154e5d4dd", "114": "c6b57d78299a27b3", "115": "4ab8ffab1d51ca61", "116": "db70db08c00162df", "117": "9a1080686fc7c39b", "118": "77fd76193df9f573", "119": "28355f848c862b6e", "120": "25f77f5455bdc96a", "121": "9141a0ede9461fd5", "122": "d86deea433a6d69d", "123": "7197798a32778fd4", "124": "3ceda88239910d9a", "125": "9409b3b8a334f51d", "126": "ac95a9f152e3d1c4", "127": "a7299f20633c0236", "128": "c9b5396dadad9f63", "129": "e55eee7bf1230c00", "130": "7f405315686459b9", "131": "44c7924c829cc215", "132": "17ecb7325285cf7a", "133": "4487fd85ddc13c93", "134": "c35e392f1594d14e", "135": "c4abf0eb38ef740d", "136": "07d37aeefbe50e21", "137": "70b58e32c2890fdd", "138": "f2c7afb0c277c4b7", "139": "bee7620bf612dcfe", "140": "167643bcbbc26244", "141": "dcffd9ad7a1f7df6", "142": "f47469d48b3776b5", "143": "1b0ef1cf87b53de3", "144": "e195f425def606d0", "145": "6ddbf62ac93920e1", "146": "c7ddffce8605b65b", "147": "c432e2ac14610f9b", "148": "d0fc47de7f8bcf41", "149": "39d16c91943d85e4", "150": "5910eeefe2f97a20", "151": "127d0372ec8bf9ee", "152": "34581929891cefb2", "153": "6cfdd09a6fdd9ff9", "154": "66efafa1e86d8081", "155": "562a328c3cebc9b1", "156": "4a8bdc6821207fa3", "157": "dd5f624dc488c627", "159": "a2fe690317aef2ee", "160": "e30004421d79ffeb", "161": "cd66a5f43cd3407d", "162": "fa2d7dcf52348095", "163": "75efc6457f7fce22", "164": "8375a4fbf0573a52", "165": "edb079558c6f3d59", "166": "1d80b74f885d6716", "167": "3cd15de82f23093a", "168": "7a77349497fcdf37", "169": "85cd9ca1246dc437", "170": "3e93071fc4a80e95", "171": "6114ccb7b9036e33", "172": "f3d92800d756dd79", "173": "2aa85a497fd142d7", "174": "35d3a2679371e9a4", "175": "b8f35a499b36a57a", "179": "48eb576d55dfdbb8", "180": "4ac5f9965007617d", "181": "cff999497d56b512", "182": "06b38ffa6f58195d", "183": "ee705c178d6958bb", "184": "1a833537ef5e569c", "186": "867babdd40f0c3fc", "187": "298144d1548a7dee", "188": "00d275127a7e435e", "189": "2942a9d30dae4a29", "190": "3e21e2fb50e12670", "191": "be62daa7d5bc336a", "192": "47c3e1a9d4bb7e67", "193": "82ff39c105ae3090", "194": "6747ecf936cb0400", "195": "ebc0087e3400009c", "196": "51d4e15c7e10decf", "199": "4c613615c4fd913d", "200": "162b36508e5879f3", "201": "6256958a9b817133", "202": "ab06e01c9caa9f90", "203": "204b3a83ef62f360", "205": "67b5cef27d55952d", "206": "10b2996179aaaf2e", "207": "39031f751fb2d42f", "208": "54f53e5e0cc8c385", "209": "821696b1ff49347b", "210": "00739b5480732bdc", "211": "2434b1a28b16557f", "212": "cb3fe87c920b0cb3", "213": "ddb9c95db6575999", "214": "e2250667e3a77089", "215": "9069d5dda9013eee", "216": "0077975cffee54dc", "217": "e6fcd0aec85fac92", "218": "9590124db1601a96", "219": "e077f384ad6b18ad", "220": "dd8d62f9fb517bb5", "221": "6d0322fa3d03fa10", "222": "3be2a9ccdc6668cc", "224": "c7de3fe21e2e53b4", "225": "703a4a9860d7ed16", "226": "85fd4a84b5393d0e", "227": "97ec841e4f367258", "228": "4654167fd211d027", "229": "8176a164778526f9", "230": "a74925b45b279d6f", "232": "b0b81cfb9e11502e", "234": "7c65a1f3c4f1b858", "238": "fc778d7a22e550eb", "239": "4865e180c0694458", "240": "8d1aad761b4c839d", "241": "e66a941c60456b44", "242": "a7cf02106e992a23", "243": "88604333ff6aa860", "244": "8365b02889fa6cfc", "245": "6e7b82d0387bf16d", "246": "2eef246ebb269184", "247": "f5edd0761d024ff0", "248": "1e833ee596b5ca23", "249": "9fd8a4abf0eb00a3", "250": "e9728eefddbaed5b", "251": "fe8ad8aaa5b6f652", "252": "be78134816511eaf", "253": "4737624cd139d117", "254": "5fcab665dcd75a7d", "255": "33b1870821fb012a", "256": "10992f7331cbdeba", "257": "cef806733796b489", "258": "76578e90353475ed", "259": "04d938f720c1db19", "260": "57931ddf408ceeeb", "261": "b4fbbd4b7a13369e", "262": "d64c6d160a7faed4", "263": "2d1c86501cdb42dd", "264": "e24cf60bcf607797", "265": "0650b6a561436852", "266": "bbcea5ec9d046ac0", "267": "fd158611e3227271", "268": "ecfb692b6f7a1014", "269": "88e82bb9fffbe642", "270": "ef2d2abc6e491968", "271": "a1e0a3465632c13a", "272": "e6273a4f9b65952b", "273": "38a03e32ab28113e", "274": "400d2883ce278be7", "275": "a13f9628796dc16a", "276": "6e3ce4714f76f2f9", "277": "de2233c73c628824", "278": "a144dcdc61af17a5", "279": "672ba0ee4d6993c2", "280": "daf108b14eb1d2d5", "281": "a618b7b467aa2c0c", "282": "60a2d42e0373376c", "283": "934bee98555c5f5b", "284": "3a30dd7bf2ececaa", "285": "23c1a365d72c9b86", "286": "3323cd7407922799", "287": "9050a3ebe80326e5", "288": "10d7c8f3898b68e5", "289": "2ce5bbc30db985b5", "290": "2a963843e9a8e153", "291": "28537a0c0fbd566f", "292": "3659ed0b62c213c5", "293": "912cf03978233ef7", "294": "324d8e36c3be5e01", "295": "60ce4fcea460e0a6", "296": "7a7f04630a11cc2b", "297": "69f2014dab3c4a93", "298": "9372bf2b2a6a0b97", "299": "5a4d1c1ef8bed9bb", "300": "b1d204e97a3c45dc", "301": "47fc05295105c312", "302": "1c69dcee9405ce47", "303": "5eb83040a203bd16", "304": "20a2080eac259e2b", "305": "19ac29575c50f599", "308": "bcf417101439fd9e", "309": "768db8a3a299f590", "310": "321732baccae846b", "311": "0598c15fa2a12fad", "312": "05f1ad1f29e435ff", "313": "f9e342f69d6a5dae", "315": "a0fdc688ac30f227", "317": "31eb2ccb16c5af0f", "318": "2491d05d8bb29ad7"} -======= -{"0": "d25fd17d96b1a62b", "1": "af2d2c3633c601a3", "2": "5b8c7a2dd2067688", "3": "04070ce691ed6169", "4": "074087b4c650c099", "5": "f34c872571e8a774", "6": "81b67391b0b87cab", "7": "ca7f434e9ff71924", "8": "20af84cfaa2bae80", "9": "23ffcb2f5682d0bc", "10": "752e0fd82db2f266", "11": "7486b8792dd18a8e", "12": "6caf8ee86ba2ed45", "13": "3a0d379c05c48643", "14": "cd3c428e9ee071f3", "15": "c503f61c132e0faa", "16": "bbaf7539ddd300b0", "17": "f3a20d4c4c3ae66c", "18": "a8ebf083d3c3351b", "19": "10c596403944b996", "20": "b8abf3d4ac15fc65", "21": "1977ca45f10f6c18", "22": "6dec4777ae917b2c", "23": "493cda457ee900a1", "24": "4eda46a5b0695ef6", "25": "90b79d6027d60d30", "26": "6bd6f2633370820c", "27": "7664e56213a29331", "28": "942c4f9928c60a45", "29": "0614b98d9013b5f5", "30": "53ff49b3d54f0fba", "31": "2153ddcd7477dfb7", "32": "89fe2ef12db40871", "33": "5499104e9ca4fdad", "34": "e89579446dcd5c0b", "35": "836402a6cb97cbac", "36": "5eeec9927fe55f6c", "37": "1c9a1f4c72613346", "38": "58fe18c423dae025", "39": "f38c905c9af9edc0", "40": "cf43e144340a5383", "41": "7abb5bc6a0e4f65f", "42": "cbaa20536db72d3e", "43": "7478d6755ca2248a", "44": "b4c82af1f2f566f7", "45": "7dd5c61562c827a8", "46": "4ece6985263357c4", "47": "65e41c1c22dcd058", "48": "bf83938692ed2636", "49": "841013681f4e6e8c", "50": "6e280669736f661b", "51": "91d7f3d12813e4ff", "52": "9924f91d5ca70505", "53": "cb17af4eb831480f", "54": "fbdb74c5357de09c", "55": "93d836d575401c61", "56": "2a1dd74542bc4e00", "57": "0f62727f3b4907c0", "58": "533f2d32c60dd4b3", "59": "7369e85febb97f1a", "60": "e082fbf02b3f316c", "61": "9b0eb2e9b68ff17d", "62": "2f37c9309529a181", "63": "0b962a47d1b049e5", "64": "3b9521f7d7986eaa", "65": "c35e392f1594d14e", "66": "819075fa1b5877e9", "67": "b70d9b71ad3a2a88", "68": "e076648de48aa01a", "69": "31a5a53f1fe77e46", "70": "01d4f9d6d9f3b08a", "71": "646fa925a26370aa", "72": "69d0f8b228227690", "73": "22456307ff273d80", "74": "d9e74b032c5b8440", "75": "ca4d94b36734b0d0", "76": "c0190297baa0a88e", "77": "62430df45afa65b5", "78": "0273bbf045eb1528", "79": "ba7bc17581366c9a", "80": "0727bb53199085fc", "81": "91393683c97d1773", "82": "b1fb8b1d0bcaa7fd", "83": "71d2ce6fb684bc0e", "84": "70497658d0e0cea6", "85": "f6ddba6f531d6b96", "86": "e3d13e2060945d3f", "87": "f0f56796aaebb4f5", "88": "0f9f4033ec04bed6", "89": "656f816eb51f2ab1", "90": "add25d0c96b40a17", "91": "25a6695f5783d2be", "92": "2450b45f1f62fece", "93": "b796283dc9729998", "94": "f7a706f5fcb260c3", "95": "3b8f30fa05a39967", "96": "46e9411f2b2e725a", "97": "78aa95566e86b57f", "98": "5bbc8944b2ba2d8f", "99": "6b4a687ed862e0e1", "100": "3c1d9844d072bd2a", "101": "b3c5433df880f335", "102": "e036dbd1de0f8b38", "103": "ac7cb5ec7d5c0802", "104": "dbe2f8ccb8d5321a", "105": "622f83f2eb300a25", "106": "0e03a5b22c0f26de", "107": "bfcc583da029935c", "108": "0235c559d6061ae6", "109": "6d16ccde1291c9d4", "110": "d228746e85ead3af", "111": "b55ba9125ffb5729", "112": "5f50a360f18a880b", "113": "ee186e3bf8b91965", "114": "c6b57d78299a27b3", "115": "7ef836e15e8c1b76", "116": "db70db08c00162df", "117": "9a1080686fc7c39b", "118": "77fd76193df9f573", "119": "28355f848c862b6e", "120": "25f77f5455bdc96a", "121": "9141a0ede9461fd5", "122": "3961b8d3c4ba6519", "123": "c4acedd7472cf7cb", "124": "3ceda88239910d9a", "125": "9409b3b8a334f51d", "126": "ac95a9f152e3d1c4", "127": "a7299f20633c0236", "128": "e52967fd04fc10e6", "129": "34581929891cefb2", "130": "7f405315686459b9", "131": "44c7924c829cc215", "132": "17ecb7325285cf7a", "133": "4487fd85ddc13c93", "134": "73382a9ef9d08673", "135": "c4abf0eb38ef740d", "136": "07d37aeefbe50e21", "137": "70b58e32c2890fdd", "138": "f2c7afb0c277c4b7", "139": "3ae63656c43c37a7", "140": "167643bcbbc26244", "141": "dcffd9ad7a1f7df6", "142": "f47469d48b3776b5", "143": "1b0ef1cf87b53de3", "144": "e195f425def606d0", "145": "e6017dd76d4422b6", "146": "c7ddffce8605b65b", "147": "47b6bed81c7c0b45", "148": "8a3667a0e1bf82c5", "149": "39d16c91943d85e4", "150": "5910eeefe2f97a20", "151": "af334b96b59797f8", "152": "ab3039226b729a13", "153": "6cfdd09a6fdd9ff9", "154": "66efafa1e86d8081", "155": "562a328c3cebc9b1", "156": "3528c4c8a0e2db61", "157": "dd5f624dc488c627", "158": "959e76250dbacbad", "159": "a2fe690317aef2ee", "160": "e30004421d79ffeb", "161": "cd66a5f43cd3407d", "162": "fa2d7dcf52348095", "163": "75efc6457f7fce22", "164": "8375a4fbf0573a52", "165": "edb079558c6f3d59", "166": "1d80b74f885d6716", "167": "3cd15de82f23093a", "168": "7a77349497fcdf37", "169": "85cd9ca1246dc437", "170": "3e93071fc4a80e95", "171": "6114ccb7b9036e33", "172": "f3d92800d756dd79", "173": "2aa85a497fd142d7", "174": "35d3a2679371e9a4", "175": "b8f35a499b36a57a", "176": "3a6753a80123a0f4", "177": "ca950b47c628b81a", "178": "255a8a95e2a3df67", "179": "4d5aa5463205505c", "180": "4ac5f9965007617d", "181": "cff999497d56b512", "182": "06b38ffa6f58195d", "183": "ee705c178d6958bb", "184": "1a833537ef5e569c", "185": "47e08912fd6cd296", "186": "867babdd40f0c3fc", "187": "298144d1548a7dee", "188": "00d275127a7e435e", "189": "2942a9d30dae4a29", "190": "3e21e2fb50e12670", "191": "be62daa7d5bc336a", "192": "47c3e1a9d4bb7e67", "193": "82ff39c105ae3090", "194": "6747ecf936cb0400", "195": "ebc0087e3400009c", "196": "51d4e15c7e10decf", "197": "3a8a257d1f54b2ae", "198": "2ed3af4b96bcf920", "199": "642e51489ab39b63", "200": "162b36508e5879f3", "201": "6256958a9b817133", "202": "ab06e01c9caa9f90", "203": "204b3a83ef62f360", "204": "7fde599bf90ee0bf", "205": "67b5cef27d55952d", "206": "10b2996179aaaf2e", "207": "39031f751fb2d42f", "208": "54f53e5e0cc8c385", "209": "821696b1ff49347b", "210": "00739b5480732bdc", "211": "2434b1a28b16557f", "212": "cb3fe87c920b0cb3", "213": "ddb9c95db6575999", "214": "e2250667e3a77089", "215": "9069d5dda9013eee", "216": "0077975cffee54dc", "217": "e6fcd0aec85fac92", "218": "9590124db1601a96", "219": "e077f384ad6b18ad", "220": "dd8d62f9fb517bb5", "221": "6d0322fa3d03fa10", "222": "3be2a9ccdc6668cc", "223": "65d822bbba496dee", "224": "c7de3fe21e2e53b4", "225": "703a4a9860d7ed16", "226": "85fd4a84b5393d0e", "227": "97ec841e4f367258", "228": "4654167fd211d027", "229": "8176a164778526f9", "230": "a74925b45b279d6f", "231": "0bd7ed52b69464bf", "232": "b0b81cfb9e11502e", "233": "578638c4278d00c6", "234": "69c8cbfb6992b123", "235": "d7cad630fb1d1414", "236": "9a7b4968676954d7", "237": "0dd5439f11354ec2", "238": "fc778d7a22e550eb", "239": "4865e180c0694458", "240": "8d1aad761b4c839d", "241": "e66a941c60456b44", "242": "a7cf02106e992a23", "243": "88604333ff6aa860", "244": "8365b02889fa6cfc", "245": "6e7b82d0387bf16d", "246": "2eef246ebb269184", "247": "f5edd0761d024ff0", "248": "1e833ee596b5ca23", "249": "9fd8a4abf0eb00a3", "250": "e9728eefddbaed5b", "251": "fe8ad8aaa5b6f652", "252": "be78134816511eaf", "253": "4737624cd139d117", "254": "5fcab665dcd75a7d", "255": "33b1870821fb012a", "256": "f379c891e179d45a", "257": "cef806733796b489", "258": "76578e90353475ed", "259": "04d938f720c1db19", "260": "57931ddf408ceeeb", "261": "b4fbbd4b7a13369e", "262": "d64c6d160a7faed4", "263": "2d1c86501cdb42dd", "264": "e24cf60bcf607797", "265": "0650b6a561436852", "266": "bbcea5ec9d046ac0", "267": "fd158611e3227271", "268": "ecfb692b6f7a1014", "269": "88e82bb9fffbe642", "270": "ef2d2abc6e491968", "271": "a1e0a3465632c13a", "272": "e6273a4f9b65952b", "273": "38a03e32ab28113e", "274": "400d2883ce278be7", "275": "a13f9628796dc16a", "276": "6e3ce4714f76f2f9", "277": "de2233c73c628824", "278": "a144dcdc61af17a5", "279": "672ba0ee4d6993c2", "280": "daf108b14eb1d2d5", "281": "a618b7b467aa2c0c", "282": "60a2d42e0373376c", "283": "934bee98555c5f5b", "284": "3a30dd7bf2ececaa", "285": "23c1a365d72c9b86", "286": "3323cd7407922799", "287": "9050a3ebe80326e5", "288": "10d7c8f3898b68e5", "289": "2ce5bbc30db985b5", "290": "2a963843e9a8e153", "291": "28537a0c0fbd566f", "292": "3659ed0b62c213c5", "293": "912cf03978233ef7", "294": "324d8e36c3be5e01", "295": "60ce4fcea460e0a6", "296": "7a7f04630a11cc2b", "297": "69f2014dab3c4a93", "298": "9372bf2b2a6a0b97", "299": "5a4d1c1ef8bed9bb", "300": "b1d204e97a3c45dc", "301": "47fc05295105c312", "302": "1c69dcee9405ce47", "303": "5eb83040a203bd16", "304": "20a2080eac259e2b", "305": "19ac29575c50f599", "306": "c556ac339be4aba5", "307": "d2a7888a77082d4c", "308": "bcf417101439fd9e", "309": "768db8a3a299f590", "310": "321732baccae846b", "311": "0598c15fa2a12fad", "312": "05f1ad1f29e435ff", "313": "f9e342f69d6a5dae", "314": "6c1a09679076ea89", "315": "a0fdc688ac30f227", "316": "c24925d361d1eb6f", "317": "31eb2ccb16c5af0f", "318": "2491d05d8bb29ad7", "319": "bddcc43a56a2787b"} ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +{"0": "b0118f68a3e7f0ad", "1": "611a213aa9d86e45", "2": "f23e7a42f89bd101", "3": "0564ed149b929374", "4": "8072d6a62c3ca64c", "5": "f34c872571e8a774", "6": "81b67391b0b87cab", "7": "07bbef14bbd4b397", "8": "1bbbfacd50f53b85", "9": "2ef136da6eb5ea16", "10": "2b2a645c8e5423b3", "11": "7486b8792dd18a8e", "12": "0f987d4c17ae1a5e", "13": "85d482ba1c55c7df", "14": "f46975ee08471477", "15": "c503f61c132e0faa", "16": "bbaf7539ddd300b0", "17": "690dc63010f5642d", "18": "843aac8cb20a123a", "19": "dca8b2ecae53879f", "20": "b8abf3d4ac15fc65", "21": "f6f7917fd9ce356f", "22": "5522c095642f1cac", "23": "b64d81a71800bd4b", "24": "4eda46a5b0695ef6", "25": "90b79d6027d60d30", "26": "6bd6f2633370820c", "27": "7664e56213a29331", "28": "942c4f9928c60a45", "29": "0614b98d9013b5f5", "30": "53ff49b3d54f0fba", "31": "2153ddcd7477dfb7", "32": "dc63d750c4850d1a", "33": "8c213a62d97de6b1", "34": "e89579446dcd5c0b", "35": "836402a6cb97cbac", "36": "f150a52ef5061868", "37": "1c9a1f4c72613346", "38": "58fe18c423dae025", "39": "f38c905c9af9edc0", "40": "cf43e144340a5383", "41": "7abb5bc6a0e4f65f", "42": "cbaa20536db72d3e", "43": "7478d6755ca2248a", "44": "b4c82af1f2f566f7", "45": "7dd5c61562c827a8", "46": "4ece6985263357c4", "47": "65e41c1c22dcd058", "48": "bf83938692ed2636", "49": "2d0b40c9d441865b", "50": "6e280669736f661b", "51": "91d7f3d12813e4ff", "52": "73df605d6eec20d9", "53": "cb17af4eb831480f", "54": "fbdb74c5357de09c", "55": "93d836d575401c61", "56": "2a1dd74542bc4e00", "57": "0f62727f3b4907c0", "58": "533f2d32c60dd4b3", "59": "7369e85febb97f1a", "60": "e082fbf02b3f316c", "61": "9b0eb2e9b68ff17d", "62": "0b0de6846736eb6d", "63": "2b0ee366d6136717", "64": "3b9521f7d7986eaa", "65": "c35e392f1594d14e", "66": "9ec01105c2764708", "67": "10d4f0bfa19dd52f", "68": "5287bf63026e555d", "69": "31a5a53f1fe77e46", "70": "01d4f9d6d9f3b08a", "71": "bceede6b484c2462", "72": "69d0f8b228227690", "73": "22456307ff273d80", "74": "d9e74b032c5b8440", "75": "ca4d94b36734b0d0", "76": "9bc7b5e8ac4c9709", "77": "62430df45afa65b5", "78": "0273bbf045eb1528", "79": "ba7bc17581366c9a", "80": "0727bb53199085fc", "81": "91393683c97d1773", "82": "36d253e9d0d7547b", "83": "71d2ce6fb684bc0e", "84": "70497658d0e0cea6", "85": "de7061e1de62e0d9", "86": "e3d13e2060945d3f", "87": "f0f56796aaebb4f5", "88": "6cc089e9f052ba3f", "89": "656f816eb51f2ab1", "90": "7d7f828419954fca", "91": "25a6695f5783d2be", "92": "d3f2069ef5cc5878", "93": "b796283dc9729998", "94": "f7a706f5fcb260c3", "95": "3b8f30fa05a39967", "96": "3fef84a1b6832b0b", "97": "413e109cdaabdff5", "98": "5bbc8944b2ba2d8f", "99": "3c7478cc94918e63", "100": "3c1d9844d072bd2a", "101": "b3c5433df880f335", "102": "e036dbd1de0f8b38", "103": "ac7cb5ec7d5c0802", "104": "dbe2f8ccb8d5321a", "105": "622f83f2eb300a25", "106": "0e03a5b22c0f26de", "107": "6e67e4bc78994a71", "108": "e046fd4505d5dbd0", "109": "6d16ccde1291c9d4", "110": "d228746e85ead3af", "111": "b55ba9125ffb5729", "112": "5f50a360f18a880b", "113": "53d9915909e5cf9b", "114": "c6b57d78299a27b3", "115": "7ef836e15e8c1b76", "116": "db70db08c00162df", "117": "9a1080686fc7c39b", "118": "77fd76193df9f573", "119": "28355f848c862b6e", "120": "25f77f5455bdc96a", "121": "9141a0ede9461fd5", "122": "404126b9e834a3ab", "123": "c4acedd7472cf7cb", "124": "3ceda88239910d9a", "125": "9409b3b8a334f51d", "126": "ac95a9f152e3d1c4", "127": "a7299f20633c0236", "128": "c67d0f6b95947347", "129": "34581929891cefb2", "130": "7f405315686459b9", "131": "44c7924c829cc215", "132": "17ecb7325285cf7a", "133": "4487fd85ddc13c93", "134": "73382a9ef9d08673", "135": "c4abf0eb38ef740d", "136": "07d37aeefbe50e21", "137": "70b58e32c2890fdd", "138": "f2c7afb0c277c4b7", "139": "3ae63656c43c37a7", "140": "167643bcbbc26244", "141": "dcffd9ad7a1f7df6", "142": "f47469d48b3776b5", "143": "1b0ef1cf87b53de3", "144": "e195f425def606d0", "145": "d1392d8ad5d97af2", "146": "c7ddffce8605b65b", "147": "50a0a333a7d6add0", "148": "8a3667a0e1bf82c5", "149": "39d16c91943d85e4", "150": "5910eeefe2f97a20", "151": "ffc4dd8ce525f061", "152": "73080d10fefb6623", "153": "6cfdd09a6fdd9ff9", "154": "66efafa1e86d8081", "155": "562a328c3cebc9b1", "156": "4a8bdc6821207fa3", "157": "dd5f624dc488c627", "158": "4293dd827ea9245d", "159": "a2fe690317aef2ee", "160": "e30004421d79ffeb", "161": "cd66a5f43cd3407d", "162": "fa2d7dcf52348095", "163": "75efc6457f7fce22", "164": "8375a4fbf0573a52", "165": "edb079558c6f3d59", "166": "1d80b74f885d6716", "167": "3cd15de82f23093a", "168": "7a77349497fcdf37", "169": "85cd9ca1246dc437", "170": "3e93071fc4a80e95", "171": "6114ccb7b9036e33", "172": "f3d92800d756dd79", "173": "2aa85a497fd142d7", "174": "35d3a2679371e9a4", "175": "b8f35a499b36a57a", "176": "d13dd35a8c73fef2", "177": "8ffb30447853a689", "178": "4a0995c91344bedb", "179": "0d0ebb718ccbecb4", "180": "4ac5f9965007617d", "181": "cff999497d56b512", "182": "06b38ffa6f58195d", "183": "ee705c178d6958bb", "184": "b40f8d286e09fdf4", "185": "f6f85b389abb3f1e", "186": "867babdd40f0c3fc", "187": "298144d1548a7dee", "188": "00d275127a7e435e", "189": "2942a9d30dae4a29", "190": "3e21e2fb50e12670", "191": "be62daa7d5bc336a", "192": "47c3e1a9d4bb7e67", "193": "82ff39c105ae3090", "194": "6747ecf936cb0400", "195": "ebc0087e3400009c", "196": "51d4e15c7e10decf", "197": "8c439a265a9c4341", "198": "bee7620bf612dcfe", "199": "acfe5a84eaab81d7", "200": "162b36508e5879f3", "201": "6256958a9b817133", "202": "ab06e01c9caa9f90", "203": "204b3a83ef62f360", "204": "70e62553403661a3", "205": "67b5cef27d55952d", "206": "10b2996179aaaf2e", "207": "39031f751fb2d42f", "208": "54f53e5e0cc8c385", "209": "821696b1ff49347b", "210": "00739b5480732bdc", "211": "2434b1a28b16557f", "212": "cb3fe87c920b0cb3", "213": "ddb9c95db6575999", "214": "e2250667e3a77089", "215": "9069d5dda9013eee", "216": "0077975cffee54dc", "217": "e6fcd0aec85fac92", "218": "9590124db1601a96", "219": "e077f384ad6b18ad", "220": "dd8d62f9fb517bb5", "221": "6d0322fa3d03fa10", "222": "3be2a9ccdc6668cc", "223": "6ddbf62ac93920e1", "224": "c7de3fe21e2e53b4", "225": "703a4a9860d7ed16", "226": "85fd4a84b5393d0e", "227": "97ec841e4f367258", "228": "4654167fd211d027", "229": "8176a164778526f9", "230": "a74925b45b279d6f", "231": "d0fc47de7f8bcf41", "232": "b0b81cfb9e11502e", "233": "490b465cf48c7efa", "238": "fc778d7a22e550eb", "239": "4865e180c0694458", "240": "8d1aad761b4c839d", "241": "e66a941c60456b44", "242": "a7cf02106e992a23", "243": "88604333ff6aa860", "244": "8365b02889fa6cfc", "245": "6e7b82d0387bf16d", "246": "2eef246ebb269184", "247": "f5edd0761d024ff0", "248": "1e833ee596b5ca23", "249": "9fd8a4abf0eb00a3", "250": "e9728eefddbaed5b", "251": "fe8ad8aaa5b6f652", "252": "be78134816511eaf", "253": "4737624cd139d117", "254": "5fcab665dcd75a7d", "255": "33b1870821fb012a", "256": "f379c891e179d45a", "257": "cef806733796b489", "258": "76578e90353475ed", "259": "04d938f720c1db19", "260": "57931ddf408ceeeb", "261": "b4fbbd4b7a13369e", "262": "d64c6d160a7faed4", "263": "2d1c86501cdb42dd", "264": "e24cf60bcf607797", "265": "0650b6a561436852", "266": "bbcea5ec9d046ac0", "267": "fd158611e3227271", "268": "ecfb692b6f7a1014", "269": "88e82bb9fffbe642", "270": "ef2d2abc6e491968", "271": "a1e0a3465632c13a", "272": "e6273a4f9b65952b", "273": "38a03e32ab28113e", "274": "400d2883ce278be7", "275": "a13f9628796dc16a", "276": "6e3ce4714f76f2f9", "277": "de2233c73c628824", "278": "a144dcdc61af17a5", "279": "672ba0ee4d6993c2", "280": "daf108b14eb1d2d5", "281": "a618b7b467aa2c0c", "282": "60a2d42e0373376c", "283": "934bee98555c5f5b", "284": "3a30dd7bf2ececaa", "285": "23c1a365d72c9b86", "286": "3323cd7407922799", "287": "9050a3ebe80326e5", "288": "10d7c8f3898b68e5", "289": "2ce5bbc30db985b5", "290": "2a963843e9a8e153", "291": "28537a0c0fbd566f", "292": "3659ed0b62c213c5", "293": "912cf03978233ef7", "294": "324d8e36c3be5e01", "295": "60ce4fcea460e0a6", "297": "69f2014dab3c4a93", "298": "9372bf2b2a6a0b97", "299": "5a4d1c1ef8bed9bb", "300": "b1d204e97a3c45dc", "301": "47fc05295105c312", "302": "1c69dcee9405ce47", "303": "5eb83040a203bd16", "304": "20a2080eac259e2b", "305": "19ac29575c50f599", "308": "bcf417101439fd9e", "309": "768db8a3a299f590", "310": "321732baccae846b", "311": "0598c15fa2a12fad", "312": "05f1ad1f29e435ff", "313": "f9e342f69d6a5dae", "315": "a0fdc688ac30f227", "317": "31eb2ccb16c5af0f", "318": "2491d05d8bb29ad7", "319": "bddcc43a56a2787b"} \ No newline at end of file diff --git a/graphify-out/2026-08-26/.graphify_labels.json b/graphify-out/2026-08-26/.graphify_labels.json index a428b1b..5848cb7 100644 --- a/graphify-out/2026-08-26/.graphify_labels.json +++ b/graphify-out/2026-08-26/.graphify_labels.json @@ -3,25 +3,37 @@ "1": "app.module.ts", "2": "SmsService", "3": "ProductService", - "4": "SafeImage.tsx", + "4": "utils.ts", "5": "CmsController", "6": "tickets.controller.ts", - "7": "pets/pets.controller.ts", - "8": "admin.module.ts", + "7": "Button.tsx", + "8": "ReportsController", "9": "devDependencies", +<<<<<<< HEAD + "10": "ReviewsController", + "11": "MediaSelector.tsx", + "12": "index.ts", + "13": "app-audit-verification.e2e-spec.js", + "14": "useSettingsStore", +======= "10": "ReviewsService", - "11": "Spinner.tsx", + "11": "MediaSelector.tsx", "12": "PetProfile.tsx", "13": "app-audit-verification.e2e-spec.js", - "14": "lib/services/api.ts", + "14": "UserDashboard.tsx", +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "15": "src/services/api.ts", "16": "DoctorQueryDto", - "17": "schema.ts", + "17": "UserDashboard.tsx", "18": "JwtAuthGuard", - "19": "ProductsController", + "19": "ProductsService", "20": "CreateVideoDto", +<<<<<<< HEAD + "21": "Button.tsx", +======= "21": "ProductPage.tsx", - "22": "UserDashboard.tsx", +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 + "22": "lib/services/api.ts", "23": "MenuService", "24": "BE-001", "25": "FE-001", @@ -32,42 +44,62 @@ "30": "DEVOPS-001", "31": "DOC-001", "32": "adminRoutes.tsx", - "33": "WholesaleApplyDto", + "33": "WholesaleService", "34": "B2BService", - "35": "AuthController", + "35": "PetProfile.tsx", "36": "FaqService", "37": "راهنمای تست سیستم (Software Testing)", - "38": "Button.tsx", + "38": "Button", "39": "CategoriesController", "40": "MediaController", "41": "What You Must Do When Invoked", "42": "SslController", "43": "BannersService", - "44": "TestimonialsController", + "44": "TestimonialsService", "45": "What You Must Do When Invoked", - "46": "api", + "46": "HomeController", "47": "IngredientsService", - "48": "cartStore.ts", +<<<<<<< HEAD + "48": "useCartStore", +======= + "48": "auth.module.ts", +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "49": "devDependencies", "50": "devDependencies", "51": "BlogsController", - "52": "PrescriptionsController", - "53": "SmartAdvisorController", + "52": "PrescriptionsService", + "53": "SmartAdvisorService", +<<<<<<< HEAD "54": "UsersService", +======= + "54": "UsersController", +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "55": "UITexts.tsx", "56": "Orders.tsx", "57": "Role & Core Objective", "58": "ContactService", "59": "compilerOptions", - "60": "Blogs.tsx", - "61": "payment.controller.ts", - "62": "ProductsService", +<<<<<<< HEAD + "60": "PaymentService", + "61": "AdminTransactionFilterDto", + "62": "CreateReviewDto", + "63": "dependencies", + "64": "compilerOptions", + "65": "Media.tsx", + "66": "WikiController", + "67": "PetsController", + "68": "20260526145407_init/migration.sql", +======= + "60": "users.controller.ts", + "61": "payment.service.ts", + "62": "ProductDto", "63": "dependencies", "64": "compilerOptions", "65": "app.e2e-spec.js", - "66": "AdminQueryDto", - "67": "PetsController", - "68": "20260526145407_init/migration.sql", + "66": "ApiOperation", + "67": "admin.module.ts", + "68": "PaymentService", +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "69": "Required Review Group Closures", "70": "compilerOptions", "71": "getPageMetadata", @@ -75,7 +107,11 @@ "73": "Operational Rules & Boundaries", "74": "WikiController", "75": "PetsController", - "76": "shop/page.tsx", +<<<<<<< HEAD + "76": "CreateEBankCheckoutDto", +======= + "76": "AdminService", +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "77": "seo.module.ts", "78": "route.ts", "79": "🏢 AI Software Agency — Master Orchestration Protocol v3", @@ -87,16 +123,20 @@ "85": "eslint-config-prettier", "86": "zibal.service.ts", "87": "dependencies", - "88": "useSettingsStore", +<<<<<<< HEAD + "88": "ProductPage.tsx", +======= + "88": "toPersian", +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "89": "seed-products.ts", - "90": "HomeClient.tsx", + "90": "useSettingsStore", "91": "Reconciled Audit Roles & Assignments", "92": "OrdersService", "93": "@nestjs/schematics", "94": "Phase 3.1 — Human Review Preparation and Master Backlog Critique", - "95": "blog/[slug]/page.tsx", + "95": "schema.ts", "96": "compilerOptions", - "97": "prettier", + "97": "blog/[slug]/page.tsx", "98": "scripts", "99": "BlogsController", "100": "Deep Audit Summary Report", @@ -105,59 +145,78 @@ "103": "Comprehensive Change Log", "104": "Coupons.tsx", "105": "Operational Rules & Boundaries", - "106": "Reports.tsx", +<<<<<<< HEAD + "106": "blog/page.tsx", + "107": "layout.tsx", +======= + "106": "Media.tsx", "107": "@types/supertest", +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "108": "PrismaService", "109": "1. Summary of Integrity Repairs Performed", "110": "Operational Rules & Boundaries", "111": "Operational Rules & Boundaries", "112": "Operational Rules & Boundaries", - "113": "reviews.controller.ts", + "113": "CreateReviewDto", "114": "AppService", - "115": "@types/react-dom", + "115": "UsersService", "116": "Vazirmatn Changelog", "117": "Vazirmatn Font فونت وزیرمتن", "118": "Operational Rules & Boundaries", "119": "compilerOptions", "120": "compilerOptions", "121": "backend/README.md", - "122": "AuthService", +<<<<<<< HEAD + "122": "videos/page.tsx", "123": "BlogsService", +======= + "122": "Param", + "123": "CreateEBankCheckoutDto", +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "124": "Repository Map", "125": "validate_integrity.js", "126": "admin-panel/package.json", "127": "Sahel-Font", +<<<<<<< HEAD "128": "AdminService", - "129": "RouteErrorBoundary", + "129": "نقشه جامع پوشش تست‌های سرتاسری (E2E Test Coverage Map) — پروژه Canina", +======= + "128": "AdminController", + "129": "InitiatePaymentDto", +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "130": "Sahel-Font", "131": "Role & Core Objective", "132": "orchestrate.py", "133": "backend/package.json", - "134": "blog/page.tsx", + "134": "app.e2e-spec.js", "135": "graphify reference: extra exports and benchmark", "136": "Phase 2 Final Quality Gate Summary Report", "137": "Task Modifications Log", "138": "Install", - "139": "layout.tsx", + "139": "catalog/page.tsx", "140": "ErrorBoundary", "141": "application/package.json", "142": "start-dev.js", "143": "generate-openapi.js", "144": "@testing-library/react", - "145": "admin.service.ts", + "145": "@types/node", "146": "System Discovery", "147": "RevalidationService", - "148": "wiki/[slug]/page.tsx", + "148": "typescript", "149": "SmsSettingsPage.tsx", "150": "Product Requirement Document (PRD)", +<<<<<<< HEAD + "151": "admin.service.ts", + "152": "InitiatePaymentDto", +======= "151": "auth.service.ts", - "152": "trust-seals/page.tsx", + "152": ".createCoupon", +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "153": "exclude", "154": "Baseline Command Plan & Reconciled Command History", "155": "seo-backfill.ts", - "156": "@nestjs/swagger", + "156": "manual-test-scenarios.md", "157": "ErrorPages.tsx", - "158": "class-transformer", "159": "with-vpn.sh", "160": "Architecture Specification", "161": "Project Health Audit Report", @@ -175,16 +234,12 @@ "173": "Phase 3 Audit Traceability Matrix", "174": "rebuild_honest_ledger.js", "175": "validate_evidence_grade.js", - "176": "helmet", - "177": "js-yaml", - "178": "@nestjs/core", "179": "PaginationDto", "180": "API Contract Specification", "181": "⚙️ Backend Technical Review (05_dev_backend)", "182": "🎨 Frontend & Admin Panel Technical Review (06_dev_frontend)", "183": "🚀 SEO & Content Strategy Review (12_seo_content)", "184": "MetricsController", - "185": "@nestjs/jwt", "186": "seed-ui-texts.ts", "187": "seed-wiki.ts", "188": "update-blog.dto.ts", @@ -196,14 +251,11 @@ "194": "Raw Finding Verification & Disposition Report", "195": "React + TypeScript + Vite", "196": "Select.tsx", - "197": "@nestjs/throttler", - "198": "passport", "199": "auth.controller.ts", "200": "application/README.md", "201": "deploy.sh", "202": "🔒 Security & Performance Review (09_devops_security)", "203": "👁️ UX & Persona Interface Review (08_visual_qa)", - "204": "reflect-metadata", "205": "prisma/scientificTerms.ts", "206": "seed-blogs.ts", "207": "seed-custom.ts", @@ -222,7 +274,6 @@ "220": "Input.tsx", "221": "Textarea.tsx", "222": "admin-panel/tsconfig.json", - "223": "swagger-ui-express", "224": "jest", "225": "next.config.ts", "226": "Shabnam Font README", @@ -230,13 +281,16 @@ "228": "rules/graphify.md", "229": ".agents/workflows/graphify.md", "230": "instructions.md", - "231": "@eslint/eslintrc", "232": "@eslint/js", - "233": "eslint-plugin-prettier", +<<<<<<< HEAD "234": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", +======= + "233": "eslint-plugin-prettier", + "234": "WholesaleApplyDto", "235": "@nestjs/cli", "236": "@nestjs/testing", - "237": "eslint", + "237": "app/page.tsx", +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "238": "prisma", "239": "source-map-support", "240": "supertest", @@ -305,16 +359,19 @@ "303": "@types/express", "304": "@types/jest", "305": "@types/react", - "306": "globals", - "307": "@types/js-yaml", "308": "vitest", "309": "axios", "310": "tailwindcss", "311": "@types/multer", "312": "@types/passport-jwt", - "313": "MenuManager.tsx", + "313": "Modal.tsx", +<<<<<<< HEAD +======= "314": "typescript-eslint", +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "315": "typescript", + "316": "ts-jest", "317": "revalidate/route.ts", - "318": "MaskableField.tsx" + "318": "MaskableField.tsx", + "319": "eslint-config-next" } diff --git a/graphify-out/2026-08-26/GRAPH_REPORT.md b/graphify-out/2026-08-26/GRAPH_REPORT.md index 764fb64..9320842 100644 --- a/graphify-out/2026-08-26/GRAPH_REPORT.md +++ b/graphify-out/2026-08-26/GRAPH_REPORT.md @@ -1,16 +1,29 @@ -# Graph Report - canina (2026-08-25) +# Graph Report - caninairan (2026-08-26) ## Corpus Check -- 557 files · ~1,318,566 words +<<<<<<< HEAD +- 581 files · ~1,324,167 words - Verdict: corpus is large enough that graph structure adds value. ## Summary -- 4034 nodes · 7290 edges · 318 communities (201 shown, 117 thin omitted) +- 4107 nodes · 7379 edges · 301 communities (201 shown, 100 thin omitted) - Extraction: 96% EXTRACTED · 4% INFERRED · 0% AMBIGUOUS · INFERRED: 281 edges (avg confidence: 0.79) - Token cost: 0 input · 0 output ## Graph Freshness -- Built from commit: `fa69aa4c` +- Built from commit: `3c325c41` +======= +- 563 files · ~1,321,574 words +- Verdict: corpus is large enough that graph structure adds value. + +## Summary +- 4041 nodes · 7301 edges · 320 communities (202 shown, 118 thin omitted) +- Extraction: 96% EXTRACTED · 4% INFERRED · 0% AMBIGUOUS · INFERRED: 281 edges (avg confidence: 0.8) +- Token cost: 0 input · 0 output + +## Graph Freshness +- Built from commit: `7b89e141` +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - Run `git rev-parse HEAD` and compare to check if the graph is stale. - Run `graphify update .` after code changes (no API cost). @@ -19,25 +32,40 @@ - app.module.ts - SmsService - ProductService -- SafeImage.tsx +- utils.ts - CmsController - tickets.controller.ts -- pets/pets.controller.ts -- admin.module.ts +- Button.tsx +- ReportsController - devDependencies +<<<<<<< HEAD +- ReviewsController +- MediaSelector.tsx +- index.ts +- app-audit-verification.e2e-spec.js +- useSettingsStore +- src/services/api.ts +- DoctorQueryDto +- UserDashboard.tsx +- JwtAuthGuard +- ProductsService +- CreateVideoDto +- Button.tsx +======= - ReviewsService -- Spinner.tsx +- MediaSelector.tsx - PetProfile.tsx - app-audit-verification.e2e-spec.js -- lib/services/api.ts +- UserDashboard.tsx - src/services/api.ts - DoctorQueryDto - schema.ts - JwtAuthGuard -- ProductsController +- ProductsService - CreateVideoDto - ProductPage.tsx -- UserDashboard.tsx +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +- lib/services/api.ts - MenuService - BE-001 - FE-001 @@ -48,42 +76,62 @@ - DEVOPS-001 - DOC-001 - adminRoutes.tsx -- WholesaleApplyDto +- WholesaleService - B2BService -- AuthController +- PetProfile.tsx - FaqService - راهنمای تست سیستم (Software Testing) -- Button.tsx +- Button - CategoriesController - MediaController - What You Must Do When Invoked - SslController - BannersService -- TestimonialsController +- TestimonialsService - What You Must Do When Invoked -- api +- HomeController - IngredientsService -- cartStore.ts +<<<<<<< HEAD +- useCartStore +======= +- auth.module.ts +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - devDependencies - devDependencies - BlogsController -- PrescriptionsController -- SmartAdvisorController +- PrescriptionsService +- SmartAdvisorService +<<<<<<< HEAD - UsersService +======= +- UsersController +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - UITexts.tsx - Orders.tsx - Role & Core Objective - ContactService - compilerOptions -- Blogs.tsx -- payment.controller.ts -- ProductsService +<<<<<<< HEAD +- PaymentService +- AdminTransactionFilterDto +- CreateReviewDto +- dependencies +- compilerOptions +- Media.tsx +- WikiController +- PetsController +- 20260526145407_init/migration.sql +======= +- users.controller.ts +- payment.service.ts +- ProductDto - dependencies - compilerOptions - app.e2e-spec.js -- AdminQueryDto -- PetsController -- 20260526145407_init/migration.sql +- ApiOperation +- admin.module.ts +- PaymentService +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - Required Review Group Closures - compilerOptions - getPageMetadata @@ -91,7 +139,11 @@ - Operational Rules & Boundaries - WikiController - PetsController -- shop/page.tsx +<<<<<<< HEAD +- CreateEBankCheckoutDto +======= +- AdminService +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - seo.module.ts - route.ts - 🏢 AI Software Agency — Master Orchestration Protocol v3 @@ -103,16 +155,20 @@ - eslint-config-prettier - zibal.service.ts - dependencies -- useSettingsStore +<<<<<<< HEAD +- ProductPage.tsx +======= +- toPersian +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - seed-products.ts -- HomeClient.tsx +- useSettingsStore - Reconciled Audit Roles & Assignments - OrdersService - @nestjs/schematics - Phase 3.1 — Human Review Preparation and Master Backlog Critique -- blog/[slug]/page.tsx +- schema.ts - compilerOptions -- prettier +- blog/[slug]/page.tsx - scripts - BlogsController - Deep Audit Summary Report @@ -121,59 +177,77 @@ - Comprehensive Change Log - Coupons.tsx - Operational Rules & Boundaries -- Reports.tsx +<<<<<<< HEAD +- blog/page.tsx +- layout.tsx +======= +- Media.tsx - @types/supertest +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - PrismaService - 1. Summary of Integrity Repairs Performed - Operational Rules & Boundaries - Operational Rules & Boundaries - Operational Rules & Boundaries -- reviews.controller.ts +- CreateReviewDto - AppService -- @types/react-dom +- UsersService - Vazirmatn Changelog - Vazirmatn Font فونت وزیرمتن - Operational Rules & Boundaries - compilerOptions - compilerOptions - backend/README.md -- AuthService +<<<<<<< HEAD +- videos/page.tsx - BlogsService +======= +- Param +- CreateEBankCheckoutDto +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - Repository Map - validate_integrity.js - admin-panel/package.json - Sahel-Font +<<<<<<< HEAD - AdminService -- RouteErrorBoundary +- نقشه جامع پوشش تست‌های سرتاسری (E2E Test Coverage Map) — پروژه Canina +======= +- AdminController +- InitiatePaymentDto +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - Sahel-Font - Role & Core Objective - orchestrate.py - backend/package.json -- blog/page.tsx +- app.e2e-spec.js - graphify reference: extra exports and benchmark - Phase 2 Final Quality Gate Summary Report - Task Modifications Log - Install -- layout.tsx +- catalog/page.tsx - ErrorBoundary - application/package.json - start-dev.js - generate-openapi.js - @testing-library/react -- admin.service.ts +- @types/node - System Discovery - RevalidationService -- wiki/[slug]/page.tsx +- typescript - SmsSettingsPage.tsx - Product Requirement Document (PRD) +<<<<<<< HEAD +- admin.service.ts +- InitiatePaymentDto +======= - auth.service.ts -- trust-seals/page.tsx +- .createCoupon +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - exclude - Baseline Command Plan & Reconciled Command History - seo-backfill.ts -- @nestjs/swagger - ErrorPages.tsx -- class-transformer - with-vpn.sh - Architecture Specification - Project Health Audit Report @@ -191,16 +265,12 @@ - Phase 3 Audit Traceability Matrix - rebuild_honest_ledger.js - validate_evidence_grade.js -- helmet -- js-yaml -- @nestjs/core - PaginationDto - API Contract Specification - ⚙️ Backend Technical Review (05_dev_backend) - 🎨 Frontend & Admin Panel Technical Review (06_dev_frontend) - 🚀 SEO & Content Strategy Review (12_seo_content) - MetricsController -- @nestjs/jwt - seed-ui-texts.ts - seed-wiki.ts - update-blog.dto.ts @@ -212,14 +282,11 @@ - Raw Finding Verification & Disposition Report - React + TypeScript + Vite - Select.tsx -- @nestjs/throttler -- passport - auth.controller.ts - application/README.md - deploy.sh - 🔒 Security & Performance Review (09_devops_security) - 👁️ UX & Persona Interface Review (08_visual_qa) -- reflect-metadata - prisma/scientificTerms.ts - seed-blogs.ts - seed-custom.ts @@ -238,7 +305,6 @@ - Input.tsx - Textarea.tsx - admin-panel/tsconfig.json -- swagger-ui-express - jest - next.config.ts - Shabnam Font README @@ -246,13 +312,16 @@ - rules/graphify.md - .agents/workflows/graphify.md - instructions.md -- @eslint/eslintrc - @eslint/js -- eslint-plugin-prettier +<<<<<<< HEAD - 20260526160916_add_ui_texts_and_scientific_terms/migration.sql +======= +- eslint-plugin-prettier +- WholesaleApplyDto - @nestjs/cli - @nestjs/testing -- eslint +- app/page.tsx +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - prisma - source-map-support - supertest @@ -306,23 +375,26 @@ - @types/express - @types/jest - @types/react -- globals -- @types/js-yaml - vitest - @types/multer - @types/passport-jwt -- MenuManager.tsx +- Modal.tsx +<<<<<<< HEAD +======= - typescript-eslint +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - typescript +- ts-jest - revalidate/route.ts - MaskableField.tsx +- eslint-config-next ## God Nodes (most connected - your core abstractions) 1. `Roles()` - 106 edges 2. `PrismaService` - 87 edges 3. `useSettingsStore` - 55 edges 4. `api` - 44 edges -5. `SmsService` - 42 edges +5. `SmsService` - 43 edges 6. `PaginationDto` - 41 edges 7. `Button()` - 39 edges 8. `PaymentController` - 38 edges @@ -334,39 +406,60 @@ docs/02-user-guide.md → backend/uploads/1781288429353-508765350.jpg - `AuthController` --references--> `ApiResponse` [EXTRACTED] backend/src/auth/auth.controller.ts → frontend/admin-panel/src/types/admin.ts +- `BlogsController` --references--> `ApiResponse` [EXTRACTED] + backend/src/blogs/blogs.controller.ts → frontend/admin-panel/src/types/admin.ts +- `HomeController` --references--> `ApiResponse` [EXTRACTED] + backend/src/home/home.controller.ts → frontend/admin-panel/src/types/admin.ts - `OrdersController` --references--> `ApiResponse` [EXTRACTED] backend/src/orders/orders.controller.ts → frontend/admin-panel/src/types/admin.ts -- `PetsController` --references--> `ApiResponse` [EXTRACTED] - backend/src/pets/pets.controller.ts → frontend/admin-panel/src/types/admin.ts -- `ProductsController` --references--> `ApiResponse` [EXTRACTED] - backend/src/products/products.controller.ts → frontend/admin-panel/src/types/admin.ts ## Import Cycles -- 3-file cycle: `frontend/application/lib/services/api.ts -> frontend/application/lib/store/userStore.ts -> frontend/application/lib/services/authService.ts -> frontend/application/lib/services/api.ts` - 3-file cycle: `frontend/application/lib/services/api.ts -> frontend/application/lib/store/userStore.ts -> frontend/application/lib/store/cartStore.ts -> frontend/application/lib/services/api.ts` +- 3-file cycle: `frontend/application/lib/services/api.ts -> frontend/application/lib/store/userStore.ts -> frontend/application/lib/services/authService.ts -> frontend/application/lib/services/api.ts` - 4-file cycle: `frontend/application/lib/services/api.ts -> frontend/application/lib/store/userStore.ts -> frontend/application/lib/store/cartStore.ts -> frontend/application/lib/services/orderService.ts -> frontend/application/lib/services/api.ts` -## Communities (318 total, 117 thin omitted) +<<<<<<< HEAD +## Communities (301 total, 100 thin omitted) +======= +## Communities (320 total, 118 thin omitted) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 0 - "Roles" -Cohesion: 0.24 +Cohesion: 0.23 Nodes (13): Roles(), PaymentController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get (+5 more) ### Community 1 - "app.module.ts" +<<<<<<< HEAD Cohesion: 0.07 -Nodes (34): BannersModule, Module, CmsModule, Module, SmsModule, Global, Module, ContactModule (+26 more) +Nodes (34): B2BModule, Module, BannersModule, Module, CmsModule, Module, SmsModule, Global (+26 more) ### Community 2 - "SmsService" Cohesion: 0.06 -Nodes (27): SmsLogQuery, SmsService, Injectable, SmsLogQueryDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional (+19 more) +Nodes (26): SmsService, Injectable, SmsLogQueryDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString (+18 more) + +### Community 3 - "ProductService" +Cohesion: 0.07 +Nodes (30): dynamic, revalidate, DEFAULT_CATEGORIES, dynamic, revalidate, dynamic, revalidate, CatalogPageSpread() (+22 more) + +### Community 4 - "SafeImage.tsx" +Cohesion: 0.07 +Nodes (25): BlogCategory, BlogPostItem, BlogPostClientProps, BlogPost, BlogPreviewSection(), ProductDetailModalProps, OrderDetailsModalProps, PLAYBACK_RATES (+17 more) +======= +Cohesion: 0.08 +Nodes (34): B2BModule, Module, BannersModule, Module, CmsModule, Module, SmsModule, Global (+26 more) + +### Community 2 - "SmsService" +Cohesion: 0.05 +Nodes (27): SmsService, Injectable, SmsLogQueryDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString (+19 more) ### Community 3 - "ProductService" Cohesion: 0.06 -Nodes (34): generateMetadata(), dynamic, revalidate, DEFAULT_CATEGORIES, dynamic, revalidate, dynamic, revalidate (+26 more) +Nodes (34): dynamic, revalidate, DEFAULT_CATEGORIES, dynamic, revalidate, dynamic, revalidate, BlogCategory (+26 more) -### Community 4 - "SafeImage.tsx" -Cohesion: 0.09 -Nodes (21): BlogCategory, BlogPostItem, ProductDetailModalProps, OrderDetailsModalProps, PLAYBACK_RATES, PodcastInlinePlayerProps, PLAYBACK_RATES, PodcastPlayerModal() (+13 more) +### Community 4 - "utils.ts" +Cohesion: 0.08 +Nodes (22): BackButton(), BackButtonProps, BlogPost, BlogPreviewSection(), OrderDetailsModal(), OrderDetailsModalProps, PLAYBACK_RATES, PodcastPlayerModal() (+14 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 5 - "CmsController" Cohesion: 0.09 @@ -374,75 +467,123 @@ Nodes (24): CmsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controlle ### Community 6 - "tickets.controller.ts" Cohesion: 0.09 -Nodes (31): AdminUpdateTicketDto, CreateTicketDto, ReplyTicketDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString (+23 more) +Nodes (29): AdminUpdateTicketDto, CreateTicketDto, ReplyTicketDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString (+21 more) +<<<<<<< HEAD ### Community 7 - "pets/pets.controller.ts" -Cohesion: 0.11 +Cohesion: 0.13 Nodes (15): CreatePetDto, ApiProperty, ApiPropertyOptional, IsArray, IsNotEmpty, IsNumber, IsOptional, IsString (+7 more) ### Community 8 - "admin.module.ts" -Cohesion: 0.07 -Nodes (19): AdminModule, Module, MediaService, Injectable, ReportsController, ApiBearerAuth, ApiOperation, ApiTags (+11 more) +Cohesion: 0.08 +Nodes (17): AdminModule, Module, MediaService, Injectable, ReportsController, ApiBearerAuth, ApiOperation, ApiTags (+9 more) + +### Community 9 - "devDependencies" +Cohesion: 0.08 +Nodes (25): devDependencies, eslint, @eslint/eslintrc, eslint-plugin-prettier, globals, @nestjs/cli, @nestjs/testing, prettier (+17 more) + +### Community 10 - "ReviewsController" +Cohesion: 0.17 +Nodes (12): ReviewsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+4 more) +======= +### Community 7 - "Button.tsx" +Cohesion: 0.11 +Nodes (14): ButtonProps, ButtonSize, ButtonVariant, Spinner(), Doctor, FAQ, ProductReview, Reviews() (+6 more) + +### Community 8 - "ReportsController" +Cohesion: 0.14 +Nodes (11): ReportsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Controller, Get, Query (+3 more) ### Community 9 - "devDependencies" Cohesion: 0.22 -Nodes (9): devDependencies, ts-jest, @types/bcryptjs, @types/node, typescript, @types/node, typescript, ts-jest (+1 more) +Nodes (9): devDependencies, eslint, @types/bcryptjs, @types/node, typescript, eslint, @types/node, typescript (+1 more) ### Community 10 - "ReviewsService" -Cohesion: 0.13 -Nodes (16): ReviewsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+8 more) +Cohesion: 0.12 +Nodes (17): ReviewsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+9 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 -### Community 11 - "Spinner.tsx" -Cohesion: 0.09 -Nodes (30): ConfirmModal(), ConfirmModalProps, getFileType(), Media, MediaSelector(), MediaSelectorProps, maxWidthClasses, Modal() (+22 more) +### Community 11 - "MediaSelector.tsx" +Cohesion: 0.07 +Nodes (33): ConfirmModal(), ConfirmModalProps, getFileType(), Media, MediaSelector(), MediaSelectorProps, Pagination(), PaginationProps (+25 more) +<<<<<<< HEAD +### Community 12 - "index.ts" +Cohesion: 0.07 +Nodes (24): backend, frontend, playwright.config.ts, @playwright/test, tests/**/*.ts, authFile, test, compilerOptions (+16 more) +======= ### Community 12 - "PetProfile.tsx" -Cohesion: 0.13 -Nodes (13): FeaturedProducts(), OrderDetailsModal(), OrderRowSkeleton(), PetProfileSkeleton(), ProductCardSkeleton(), Skeleton(), SkeletonProps, mockProducts (+5 more) +Cohesion: 0.08 +Nodes (25): ClientLayout(), CheckoutPage(), FeaturedProducts(), ProductCard(), OrderSuccess(), SearchResultsPage(), OrderRowSkeleton(), PetProfileSkeleton() (+17 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 13 - "app-audit-verification.e2e-spec.js" -Cohesion: 0.07 -Nodes (22): AppModule, Module, CustomHttpExceptionFilter, Catch, PrismaExceptionFilter, Catch, DecimalInterceptor, Injectable (+14 more) +Cohesion: 0.06 +Nodes (28): AppModule, Module, EnvironmentVariables, IsNotEmpty, IsOptional, IsString, validateEnv(), CustomHttpExceptionFilter (+20 more) -### Community 14 - "lib/services/api.ts" -Cohesion: 0.09 -Nodes (21): BlogPost, ContactInfoItem, FAQItem, Testimonial, api, ApiErrorPayload, BASE_DOMAIN, baseURL (+13 more) +<<<<<<< HEAD +### Community 14 - "useSettingsStore" +Cohesion: 0.13 +Nodes (21): ClientLayout(), B2BLandingClient(), BrandLogo(), BrandLogoProps, EnamadBadge(), Footer(), MENU_ICONS, MaintenancePage() (+13 more) +======= +### Community 14 - "UserDashboard.tsx" +Cohesion: 0.15 +Nodes (18): AddressModal(), AddressModalProps, DeleteConfirmModal(), DeleteConfirmModalProps, HeaderButton(), HeaderButtonProps, PetProfile(), SearchableSelect() (+10 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 15 - "src/services/api.ts" -Cohesion: 0.09 -Nodes (25): ProtectedRoute(), Login(), B2BManager, SeoSettingsPage, SmartAdvisorManager, SystemSettingsPage, ApiErrorPayload, failedQueue (+17 more) +Cohesion: 0.08 +Nodes (32): Layout(), ProtectedRoute(), MenuGroup, Sidebar(), SidebarProps, SubMenuItem, LiveMonitoringSummary, SEARCHABLE_PAGES (+24 more) ### Community 16 - "DoctorQueryDto" Cohesion: 0.09 Nodes (24): DoctorsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+16 more) +<<<<<<< HEAD +### Community 17 - "UserDashboard.tsx" +Cohesion: 0.10 +Nodes (30): AuthModal, AddressModal(), AddressModalProps, AuthModal(), AuthModalProps, extractOtpFromText(), BackButton(), BackButtonProps (+22 more) +======= ### Community 17 - "schema.ts" -Cohesion: 0.14 -Nodes (18): B2BPage(), generateMetadata(), ContactPage(), generateMetadata(), generateMetadata(), getInitialVideos(), Videos(), ContactFormClient() (+10 more) +Cohesion: 0.13 +Nodes (19): B2BPage(), generateMetadata(), ContactPage(), generateMetadata(), generateMetadata(), getInitialVideos(), Videos(), B2BLandingClient() (+11 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 18 - "JwtAuthGuard" Cohesion: 0.19 Nodes (7): JwtAuthGuard, Injectable, ROLES_KEY, RequestWithUser, RolesGuard, Injectable, UserReqPayload -### Community 19 - "ProductsController" -Cohesion: 0.15 -Nodes (9): ProductsController, ApiOperation, ApiTags, Body, Controller, Get, Param, Patch (+1 more) +### Community 19 - "ProductsService" +Cohesion: 0.10 +Nodes (19): GetProductsDto, ApiPropertyOptional, IsEnum, IsOptional, IsString, ProductsController, ApiOperation, ApiTags (+11 more) ### Community 20 - "CreateVideoDto" -Cohesion: 0.09 -Nodes (24): CreateVideoDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNotEmpty, IsOptional, IsString, UpdateVideoDto (+16 more) +Cohesion: 0.07 +<<<<<<< HEAD +Nodes (32): CreateVideoDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNotEmpty, IsOptional, IsString, UpdateVideoDto (+24 more) + +### Community 21 - "Button.tsx" +Cohesion: 0.11 +Nodes (14): ButtonProps, ButtonSize, ButtonVariant, Spinner(), Doctor, FAQ, ProductReview, Reviews() (+6 more) + +### Community 22 - "lib/services/api.ts" +Cohesion: 0.08 +Nodes (21): B2BPortal, LoginModal, VerifyContent(), B2BPortal(), ContactInfoItem, LoginModal(), LoginModalProps, PrescriptionUploadModal() (+13 more) +======= +Nodes (31): CreateVideoDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNotEmpty, IsOptional, IsString, UpdateVideoDto (+23 more) ### Community 21 - "ProductPage.tsx" -Cohesion: 0.14 -Nodes (14): PodcastInlinePlayer(), CalculatorState, ICON_MAP, ProductPage(), ProductReviews, useCalculatorStore, ProductReviews(), ProductReviewsProps (+6 more) +Cohesion: 0.13 +Nodes (15): PLAYBACK_RATES, PodcastInlinePlayer(), PodcastInlinePlayerProps, CalculatorState, ICON_MAP, ProductPage(), ProductReviews, useCalculatorStore (+7 more) -### Community 22 - "UserDashboard.tsx" -Cohesion: 0.10 -Nodes (38): VerifyContent(), AddressModal(), AddressModalProps, ArchiveProductCard(), B2BPortal(), BackButton(), BackButtonProps, CheckoutPage() (+30 more) +### Community 22 - "lib/services/api.ts" +Cohesion: 0.08 +Nodes (29): VerifyContent(), B2BPortal(), CartDrawer(), ContactInfoItem, Header(), OrderTracking(), PrescriptionUploadModal(), PrescriptionUploadModalProps (+21 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 23 - "MenuService" -Cohesion: 0.12 -Nodes (16): MenuController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+8 more) +Cohesion: 0.11 +Nodes (18): MenuController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+10 more) ### Community 24 - "BE-001" Cohesion: 0.06 @@ -477,40 +618,46 @@ Cohesion: 0.06 Nodes (31): Acceptance Criteria, Affected Application, Affected Files, Alternative Direction, Category, Completion Statement, Confidence, Dependencies (+23 more) ### Community 32 - "adminRoutes.tsx" -Cohesion: 0.07 -Nodes (21): App(), CategoryDist, DashboardData, WholesaleRequest, AdminRouteConfig, BannersManager, Categories, Dashboard (+13 more) +Cohesion: 0.06 +Nodes (23): App(), Props, RouteErrorBoundary, State, HeroBanner, VetTestimonial, CategoryDist, DashboardData (+15 more) -### Community 33 - "WholesaleApplyDto" -Cohesion: 0.10 -Nodes (20): ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString, WholesaleApplyDto, ApiBearerAuth, ApiOperation (+12 more) +### Community 33 - "WholesaleService" +Cohesion: 0.14 +Nodes (14): ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param, Post (+6 more) ### Community 34 - "B2BService" Cohesion: 0.12 -Nodes (17): B2BController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+9 more) +Nodes (16): B2BController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+8 more) +<<<<<<< HEAD +### Community 35 - "PetProfile.tsx" +Cohesion: 0.11 +Nodes (17): ArchiveProductCard(), FeaturedProducts(), ProductCard(), PetProfile(), SearchResultsPage(), OrderRowSkeleton(), PetProfileSkeleton(), ProductCardSkeleton() (+9 more) +======= ### Community 35 - "AuthController" -Cohesion: 0.27 -Nodes (12): AuthController, ApiBadRequestResponse, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+4 more) +Cohesion: 0.25 +Nodes (13): AuthController, ApiBadRequestResponse, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+5 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 36 - "FaqService" -Cohesion: 0.12 -Nodes (16): FaqController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+8 more) +Cohesion: 0.14 +Nodes (14): FaqController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) ### Community 37 - "راهنمای تست سیستم (Software Testing)" Cohesion: 0.07 Nodes (25): اجرای بک‌اند, اجرای فرانت‌اند, اجرای پروژه در سرور با PM2, برای راه‌اندازی بک‌اند:, برای راه‌اندازی فرانت‌اند Next.js:, بیلد کردن پروژه (Building), ذخیره پروسه‌ها تا پس از ری‌استارت سرور قطع نشوند:, راه‌اندازی و انتشار سیستم (Setup & Deployment) (+17 more) -### Community 38 - "Button.tsx" -Cohesion: 0.07 -Nodes (26): TransactionReceiptData, TransactionReceiptModal(), TransactionReceiptModalProps, Button(), ButtonProps, ButtonSize, ButtonVariant, ThSort() (+18 more) +### Community 38 - "Button" +Cohesion: 0.16 +Nodes (13): TransactionReceiptData, TransactionReceiptModal(), TransactionReceiptModalProps, Button(), ThSort(), ThSortProps, GatewayHealth, Stats (+5 more) ### Community 39 - "CategoriesController" -Cohesion: 0.09 -Nodes (17): CategoriesController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+9 more) +Cohesion: 0.10 +Nodes (16): CategoriesController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+8 more) ### Community 40 - "MediaController" Cohesion: 0.11 -Nodes (14): MediaController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) +Nodes (16): MediaController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+8 more) ### Community 41 - "What You Must Do When Invoked" Cohesion: 0.07 @@ -524,25 +671,31 @@ Nodes (14): SslController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controlle Cohesion: 0.13 Nodes (15): BannersController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+7 more) -### Community 44 - "TestimonialsController" +### Community 44 - "TestimonialsService" Cohesion: 0.13 -Nodes (12): TestimonialsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+4 more) +Nodes (14): TestimonialsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) ### Community 45 - "What You Must Do When Invoked" Cohesion: 0.07 Nodes (26): For /graphify add and --watch, For /graphify query, For the commit hook and native CLAUDE.md integration, For --update and --cluster-only, /graphify, Honesty Rules, Interpreter guard for subcommands, Part A - Structural extraction for code files (+18 more) -### Community 46 - "api" -Cohesion: 0.13 -Nodes (13): Layout(), MenuGroup, Sidebar(), SidebarProps, SubMenuItem, LiveMonitoringSummary, SEARCHABLE_PAGES, Topbar() (+5 more) +### Community 46 - "HomeController" +Cohesion: 0.16 +Nodes (10): HomeController, ApiOkResponse, ApiOperation, ApiTags, Controller, Get, HomeModule, Module (+2 more) ### Community 47 - "IngredientsService" Cohesion: 0.13 Nodes (14): IngredientsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) -### Community 48 - "cartStore.ts" -Cohesion: 0.13 -Nodes (6): OrderSuccess(), OrderTracking(), OrderService, CartItem, CartStore, Order +<<<<<<< HEAD +### Community 48 - "useCartStore" +Cohesion: 0.10 +Nodes (15): CartDrawer, CartDrawer(), Header(), OrderSuccess(), OrderTracking(), mockProduct, ApiErr, Order (+7 more) +======= +### Community 48 - "auth.module.ts" +Cohesion: 0.17 +Nodes (10): DEFAULT_JWT_REFRESH_SECRET, DEFAULT_JWT_SECRET, getJwtSecret(), AuthModule, Module, JwtPayload, JwtStrategy, Injectable (+2 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 49 - "devDependencies" Cohesion: 0.11 @@ -550,27 +703,40 @@ Nodes (19): autoprefixer, devDependencies, autoprefixer, eslint, @eslint/js, glo ### Community 50 - "devDependencies" Cohesion: 0.13 -Nodes (15): eslint-config-next, devDependencies, eslint, eslint-config-next, jsdom, tailwindcss, @tailwindcss/postcss, @types/node (+7 more) +Nodes (15): devDependencies, eslint, jsdom, tailwindcss, @tailwindcss/postcss, @types/node, @types/react-dom, @vitejs/plugin-react (+7 more) ### Community 51 - "BlogsController" +Cohesion: 0.07 +Nodes (18): BlogsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+10 more) + +### Community 52 - "PrescriptionsService" Cohesion: 0.14 -Nodes (16): BlogsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+8 more) +Nodes (14): PrescriptionsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+6 more) -### Community 52 - "PrescriptionsController" -Cohesion: 0.15 -Nodes (12): PrescriptionsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+4 more) - -### Community 53 - "SmartAdvisorController" +<<<<<<< HEAD +### Community 52 - "PrescriptionsService" Cohesion: 0.14 -Nodes (12): SmartAdvisorController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+4 more) +Nodes (14): PrescriptionsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+6 more) +======= +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +### Community 53 - "SmartAdvisorService" +Cohesion: 0.13 +Nodes (14): SmartAdvisorController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) + +<<<<<<< HEAD ### Community 54 - "UsersService" Cohesion: 0.06 -Nodes (42): DEFAULT_JWT_REFRESH_SECRET, DEFAULT_JWT_SECRET, getJwtSecret(), AuthModule, Module, JwtPayload, JwtStrategy, Injectable (+34 more) +Nodes (41): DEFAULT_JWT_REFRESH_SECRET, DEFAULT_JWT_SECRET, getJwtSecret(), AuthModule, Module, JwtPayload, JwtStrategy, Injectable (+33 more) +======= +### Community 54 - "UsersController" +Cohesion: 0.19 +Nodes (16): ApiBadRequestResponse, ApiBearerAuth, ApiCreatedResponse, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+8 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 55 - "UITexts.tsx" Cohesion: 0.09 -Nodes (19): ICON_REGISTRY, IconPickerModal(), IconPickerModalProps, ImagePreviewModal(), ImagePreviewModalProps, ToggleSwitch(), ToggleSwitchProps, ProductItem (+11 more) +Nodes (20): ICON_REGISTRY, IconPickerModal(), IconPickerModalProps, ActiveStates, PRESET_BG_COLORS, PRESET_COLORS, RichTextEditor(), RichTextEditorProps (+12 more) ### Community 56 - "Orders.tsx" Cohesion: 0.09 @@ -582,47 +748,67 @@ Nodes (22): CREATE MODE — Normal Operation, Expected JSON Output Schema, File ### Community 58 - "ContactService" Cohesion: 0.13 -Nodes (11): ContactController, Body, Controller, Get, Param, Post, Put, Query (+3 more) +Nodes (12): ContactController, Body, Controller, Get, Param, Post, Put, Query (+4 more) ### Community 59 - "compilerOptions" Cohesion: 0.06 Nodes (30): compilerOptions, allowSyntheticDefaultImports, baseUrl, declaration, emitDecoratorMetadata, esModuleInterop, experimentalDecorators, forceConsistentCasingInFileNames (+22 more) -### Community 60 - "Blogs.tsx" -Cohesion: 0.15 -Nodes (11): ActiveStates, PRESET_BG_COLORS, PRESET_COLORS, RichTextEditor(), RichTextEditorProps, AuthorUser, BlogCategory, BlogPost (+3 more) +<<<<<<< HEAD +### Community 61 - "AdminTransactionFilterDto" +Cohesion: 0.22 +Nodes (7): AdminTransactionFilterDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString, Type -### Community 61 - "payment.controller.ts" -Cohesion: 0.10 -Nodes (22): AdminTransactionFilterDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString, Type, CreateEBankCheckoutDto (+14 more) +### Community 62 - "CreateReviewDto" +Cohesion: 0.17 +Nodes (11): CreateReviewDto, ApiProperty, IsInt, IsNotEmpty, IsOptional, IsString, Min, Post (+3 more) +======= +### Community 60 - "users.controller.ts" +Cohesion: 0.14 +Nodes (13): AddressDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNotEmpty, IsOptional, IsString, ApiPropertyOptional (+5 more) -### Community 62 - "ProductsService" -Cohesion: 0.18 -Nodes (10): GetProductsDto, ApiPropertyOptional, IsEnum, IsOptional, IsString, Query, ProductsModule, Module (+2 more) +### Community 61 - "payment.service.ts" +Cohesion: 0.20 +Nodes (8): AdminTransactionFilterDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString, Type, ClientMetadata + +### Community 62 - "ProductDto" +Cohesion: 0.17 +Nodes (7): ProductDto, ApiPropertyOptional, IsArray, IsBoolean, IsNumber, IsOptional, IsString +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 63 - "dependencies" -Cohesion: 0.09 -Nodes (23): dependencies, bcrypt, bcryptjs, class-validator, compression, ioredis, @nestjs/common, @nestjs/passport (+15 more) +Cohesion: 0.05 +Nodes (43): dependencies, bcrypt, bcryptjs, class-transformer, class-validator, compression, helmet, ioredis (+35 more) ### Community 64 - "compilerOptions" Cohesion: 0.10 Nodes (20): compilerOptions, allowImportingTsExtensions, erasableSyntaxOnly, lib, module, moduleDetection, moduleResolution, noEmit (+12 more) -### Community 65 - "app.e2e-spec.js" -Cohesion: 0.50 -Nodes (3): app_module_1, supertest_1, testing_1 +### Community 65 - "Media.tsx" +Cohesion: 0.19 +Nodes (9): ImagePreviewModal(), ImagePreviewModalProps, getFileType(), Media, MediaManager(), ProductItem, Media, PrescriptionsManager (+1 more) -### Community 66 - "AdminQueryDto" -Cohesion: 0.18 -Nodes (7): ApiQuery, Get, Query, AdminQueryDto, ApiPropertyOptional, IsOptional, IsString +<<<<<<< HEAD +### Community 66 - "WikiController" +Cohesion: 0.13 +Nodes (13): ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags, Controller, Get, Param, Query (+5 more) ### Community 67 - "PetsController" -Cohesion: 0.11 -Nodes (13): PetsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Controller, Delete, Get (+5 more) +Cohesion: 0.10 +Nodes (14): PetsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Controller, Delete, Get (+6 more) ### Community 68 - "20260526145407_init/migration.sql" Cohesion: 0.27 Nodes (14): "coupons", "health_logs", "order_items", "orders", "pet_medical_conditions", "pets", "product_ingredients", "product_symptoms" (+6 more) +======= +### Community 66 - "ApiOperation" +Cohesion: 0.22 +Nodes (8): ApiOperation, ApiQuery, Get, Query, AdminQueryDto, ApiPropertyOptional, IsOptional, IsString + +### Community 67 - "admin.module.ts" +Cohesion: 0.06 +Nodes (23): AdminModule, Module, PetsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Controller (+15 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 69 - "Required Review Group Closures" Cohesion: 0.10 @@ -633,8 +819,12 @@ Cohesion: 0.08 Nodes (23): compilerOptions, allowImportingTsExtensions, erasableSyntaxOnly, jsx, lib, module, moduleDetection, moduleResolution (+15 more) ### Community 71 - "getPageMetadata" -Cohesion: 0.09 -Nodes (16): generateMetadata(), CatalogClient(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), getHomeData(), Home() (+8 more) +Cohesion: 0.08 +<<<<<<< HEAD +Nodes (16): generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata() (+8 more) +======= +Nodes (17): generateMetadata(), CatalogClient(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata() (+9 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 72 - "Operational Rules & Boundaries" Cohesion: 0.11 @@ -649,8 +839,12 @@ Cohesion: 0.13 Nodes (14): ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete, Get (+6 more) ### Community 75 - "PetsController" -Cohesion: 0.08 -Nodes (32): CreateHealthLogDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString, CreateReminderDto, ApiProperty (+24 more) +Cohesion: 0.05 +Nodes (47): CreateHealthLogDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString, CreatePetDto, ApiProperty (+39 more) + +### Community 76 - "CreateEBankCheckoutDto" +Cohesion: 0.22 +Nodes (8): CreateEBankCheckoutDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsNumber, IsOptional, IsString, Min ### Community 77 - "seo.module.ts" Cohesion: 0.16 @@ -673,8 +867,8 @@ Cohesion: 0.11 Nodes (17): 1. Always Read Tech Stack First, 2. Sub-step Execution (Token Resume Support), 3. Mandatory Test Authoring, 4. Code Quality Standards, 5. File Scope Boundary, 6. Forbidden Actions, Expected JSON Output Schema, IMPLEMENT MODE — Normal Operation (+9 more) ### Community 82 - "scripts" -Cohesion: 0.11 -Nodes (17): concurrently, devDependencies, concurrently, name, private, scripts, build, build:admin (+9 more) +Cohesion: 0.08 +Nodes (24): concurrently, dotenv, devDependencies, concurrently, dotenv, @playwright/test, name, private (+16 more) ### Community 83 - "dependencies" Cohesion: 0.10 @@ -692,45 +886,66 @@ Nodes (9): GatewayHealthResult, IPaymentGateway, PaymentInquiryResult, PaymentRe Cohesion: 0.12 Nodes (17): dependencies, axios, lucide-react, motion, next, react, react-dom, sonner (+9 more) -### Community 88 - "useSettingsStore" -Cohesion: 0.11 -Nodes (24): AuthModal, B2BPortal, CartDrawer, ClientLayout(), LoginModal, AuthModal(), AuthModalProps, extractOtpFromText() (+16 more) +<<<<<<< HEAD +### Community 88 - "ProductPage.tsx" +Cohesion: 0.10 +Nodes (17): revalidate, PLAYBACK_RATES, PodcastInlinePlayer(), PodcastInlinePlayerProps, CalculatorState, ICON_MAP, ProductPage(), ProductReviews (+9 more) +======= +### Community 88 - "toPersian" +Cohesion: 0.10 +Nodes (15): AuthModal, B2BPortal, CartDrawer, LoginModal, AuthModal(), AuthModalProps, extractOtpFromText(), LoginModal() (+7 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 89 - "seed-products.ts" Cohesion: 0.17 Nodes (12): prisma, main(), prisma, determineSuitableFor(), findOrCreateCategory(), getProductImageUrl(), main(), parseSize() (+4 more) +<<<<<<< HEAD ### Community 90 - "HomeClient.tsx" -Cohesion: 0.10 -Nodes (20): HomeClient(), HomeClientProps, CATEGORY_MAP, ICON_MAP, BannerPlacement(), BannerPlacementProps, BlogPreviewSection(), FAQSection() (+12 more) +Cohesion: 0.11 +Nodes (20): HomeClient(), HomeClientProps, getHomeData(), Home(), CATEGORY_MAP, ICON_MAP, BannerPlacement(), BannerPlacementProps (+12 more) +======= +### Community 90 - "useSettingsStore" +Cohesion: 0.08 +Nodes (34): HomeClient(), HomeClientProps, ArchiveProductCard(), CATEGORY_MAP, ICON_MAP, BannerPlacement(), BannerPlacementProps, BrandLogo() (+26 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 91 - "Reconciled Audit Roles & Assignments" Cohesion: 0.12 Nodes (15): 10. Documentation Engineer, 1. Lead Architect / Orchestrator, 2. React / Vite Storefront Auditor, 3. NestJS Backend Auditor, 4. Admin Features Auditor, 5. Database & Data Integrity Auditor, 6. Security Auditor, 7. TypeScript & Code Quality Auditor (+7 more) ### Community 92 - "OrdersService" -Cohesion: 0.07 +Cohesion: 0.08 Nodes (29): CreateOrderDto, OrderItemDto, ApiProperty, ApiPropertyOptional, IsArray, IsNotEmpty, IsNumber, IsOptional (+21 more) ### Community 94 - "Phase 3.1 — Human Review Preparation and Master Backlog Critique" Cohesion: 0.13 Nodes (14): 10. Dependency & Wave Adjustments, 11. Acceptance Criteria Refinements, 12. Business and Product Decision Classification, 13. Final Recommended Backlog Summary, 1. Executive Assessment, 2. Findings That Require No Change, 3. Findings Requiring Task Refinements, 4. Tasks Requiring Splitting (+6 more) -### Community 95 - "blog/[slug]/page.tsx" -Cohesion: 0.23 -Nodes (12): BlogPostPage(), generateMetadata(), getBlog(), revalidate, safeIso(), safeLocalDate(), generateMetadata(), revalidate (+4 more) +### Community 95 - "schema.ts" +Cohesion: 0.15 +Nodes (18): B2BPage(), generateMetadata(), ContactPage(), generateMetadata(), generateMetadata(), getRelatedProducts(), getWikiTerm(), WikiTermPage() (+10 more) ### Community 96 - "compilerOptions" Cohesion: 0.06 Nodes (32): compilerOptions, allowJs, esModuleInterop, incremental, isolatedModules, jsx, lib, module (+24 more) +### Community 97 - "blog/[slug]/page.tsx" +Cohesion: 0.35 +Nodes (10): BlogPostPage(), generateMetadata(), getBlog(), revalidate, safeIso(), safeLocalDate(), generateMetadata(), BlogPostClient() (+2 more) + ### Community 98 - "scripts" Cohesion: 0.13 Nodes (15): scripts, build, build:nest, docs:generate, lint, seo:backfill, start, start:debug (+7 more) ### Community 99 - "BlogsController" -Cohesion: 0.06 -Nodes (34): BlogsController, ApiBearerAuth, ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+26 more) +<<<<<<< HEAD +Cohesion: 0.15 +Nodes (15): BlogsController, ApiBearerAuth, ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+7 more) +======= +Cohesion: 0.08 +Nodes (19): BlogsController, ApiBearerAuth, ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+11 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 100 - "Deep Audit Summary Report" Cohesion: 0.14 @@ -749,20 +964,34 @@ Cohesion: 0.15 Nodes (12): 10. `TASK-VERIFY-001`, 1. `TASK-SEC-001`, 2. `TASK-SEC-002`, 3. `TASK-SEC-003`, 4. `TASK-FIN-001`, 5. `TASK-BUILD-001`, 6. `TASK-AUTH-001`, 7. `TASK-FE-001` (+4 more) ### Community 104 - "Coupons.tsx" -Cohesion: 0.13 -Nodes (12): formatPriceWithCommas(), PriceInput(), PriceInputProps, toEnglishDigits(), Coupon, CouponFormData, CouponModalProps, CouponTarget (+4 more) +Cohesion: 0.15 +Nodes (11): formatPriceWithCommas(), PriceInput(), PriceInputProps, toEnglishDigits(), Coupon, CouponFormData, CouponModalProps, CouponTarget (+3 more) ### Community 105 - "Operational Rules & Boundaries" Cohesion: 0.17 Nodes (11): 1. Detect Test Runner from Tech Stack, 2. Execution Output Capture (Mandatory), 3. Acceptance Criteria Verification, 4. Failure Routing Protocol, 5. Success Routing Protocol, 6. Forbidden Actions, Expected JSON Output Schema, Operational Rules & Boundaries (+3 more) -### Community 106 - "Reports.tsx" -Cohesion: 0.20 -Nodes (7): BestSellerItem, CategoryDistItem, COLORS, CustomTooltipProps, ReportData, TopCouponItem, Reports +<<<<<<< HEAD +### Community 106 - "blog/page.tsx" +Cohesion: 0.38 +Nodes (6): Blog(), generateMetadata(), getBlogs(), getCategories(), revalidate, BlogPage() + +### Community 107 - "layout.tsx" +Cohesion: 0.43 +Nodes (5): generateMetadata(), RootLayout(), lalezar, vazirmatn, generateOrganizationSchema() ### Community 108 - "PrismaService" -Cohesion: 0.06 -Nodes (26): PetQuery, WikiQuery, MeliPayamakPattern, MeliPayamakResponse, SendPatternSmsOptions, SmsConfig, CreateContactSubmissionDto, UpdateContactInfoItemDto (+18 more) +Cohesion: 0.07 +Nodes (20): CategoryQuery, MeliPayamakPattern, MeliPayamakResponse, SendPatternSmsOptions, SmsConfig, SmsLogQuery, CreateContactSubmissionDto, UpdateContactInfoItemDto (+12 more) +======= +### Community 106 - "Media.tsx" +Cohesion: 0.19 +Nodes (9): ImagePreviewModal(), ImagePreviewModalProps, getFileType(), Media, MediaManager(), ProductItem, Media, PrescriptionsManager (+1 more) + +### Community 108 - "PrismaService" +Cohesion: 0.08 +Nodes (18): CategoryQuery, MeliPayamakPattern, MeliPayamakResponse, SendPatternSmsOptions, SmsConfig, SmsLogQuery, CreateContactSubmissionDto, UpdateContactInfoItemDto (+10 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 109 - "1. Summary of Integrity Repairs Performed" Cohesion: 0.17 @@ -780,9 +1009,15 @@ Nodes (10): 1. Mark Active Task as Complete, 2. Documentation Updates, 3. Dynami Cohesion: 0.18 Nodes (10): 1. Pre-Deployment Checklist, 2. Build Verification, 3. Deployment Strategy (Based on Target), 4. Post-Deployment Health Check, 5. Forbidden Actions, Expected JSON Output Schema, Operational Rules & Boundaries, Required Output Artifacts (What files to write/update) (+2 more) +<<<<<<< HEAD ### Community 113 - "reviews.controller.ts" -Cohesion: 0.15 +Cohesion: 0.22 +Nodes (9): ApiProperty, IsIn, IsOptional, IsString, UpdateReviewDto, ReviewsModule, Module, ReviewsService (+1 more) +======= +### Community 113 - "CreateReviewDto" +Cohesion: 0.14 Nodes (13): CreateReviewDto, ApiProperty, IsInt, IsNotEmpty, IsOptional, IsString, Min, ApiProperty (+5 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 114 - "AppService" Cohesion: 0.29 @@ -812,6 +1047,16 @@ Nodes (9): compilerOptions, esModuleInterop, module, moduleResolution, skipLibCh Cohesion: 0.20 Nodes (9): Compile and run the project, Deployment, Description, License, Project setup, Resources, Run tests, Stay in touch (+1 more) +<<<<<<< HEAD +### Community 122 - "videos/page.tsx" +Cohesion: 0.47 +Nodes (5): generateMetadata(), getInitialVideos(), Videos(), VideosPage(), generateVideoObjectSchema() +======= +### Community 123 - "CreateEBankCheckoutDto" +Cohesion: 0.22 +Nodes (8): CreateEBankCheckoutDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsNumber, IsOptional, IsString, Min +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 + ### Community 124 - "Repository Map" Cohesion: 0.20 Nodes (9): 1. Active Customer Storefront: React 19 + Vite Application, 2. Active Backend Service: NestJS Application, 3. Excluded Placeholder / Non-Auditable Directories, Active Applications & Non-Auditable Scopes, Documentation Governance, Important Configuration & Infrastructure Files, Mandatory Global Audit Exclusions, Repository Map (+1 more) @@ -828,13 +1073,23 @@ Nodes (9): name, private, scripts, build, dev, lint, preview, type (+1 more) Cohesion: 0.20 Nodes (9): Arch Linux, Contributors, Install, Known problems for variable version, License, Sahel-Font, To Do (variable), طریقه استفاده از نسخه متغیر variable (+1 more) +<<<<<<< HEAD ### Community 128 - "AdminService" -Cohesion: 0.09 -Nodes (13): AdminController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Param (+5 more) +Cohesion: 0.05 +Nodes (38): AdminController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+30 more) -### Community 129 - "RouteErrorBoundary" -Cohesion: 0.22 -Nodes (3): Props, RouteErrorBoundary, State +### Community 129 - "نقشه جامع پوشش تست‌های سرتاسری (E2E Test Coverage Map) — پروژه Canina" +Cohesion: 0.40 +Nodes (4): نقشه جامع پوشش تست‌های سرتاسری (E2E Test Coverage Map) — پروژه Canina, ۱. معماری و نقش‌های کاربری (User Roles), ۲. ماتریس جریان‌ها و قابلیت‌های کاربرمحور (Feature & Flow Matrix), ۳. برنامه تکمیل و توسعه تست‌های مفقود (Action Plan) +======= +### Community 128 - "AdminController" +Cohesion: 0.14 +Nodes (7): AdminController, ApiBearerAuth, ApiTags, Body, Controller, Put, UseGuards + +### Community 129 - "InitiatePaymentDto" +Cohesion: 0.43 +Nodes (7): InitiatePaymentDto, InitiateWalletTopupDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 130 - "Sahel-Font" Cohesion: 0.20 @@ -852,9 +1107,9 @@ Nodes (8): cmd_next_task(), cmd_progress(), cmd_reset(), cmd_status(), cmd_unblo Cohesion: 0.22 Nodes (8): author, description, license, name, prisma, seed, private, version -### Community 134 - "blog/page.tsx" -Cohesion: 0.38 -Nodes (6): Blog(), generateMetadata(), getBlogs(), getCategories(), revalidate, BlogPage() +### Community 134 - "app.e2e-spec.js" +Cohesion: 0.50 +Nodes (3): app_module_1, supertest_1, testing_1 ### Community 135 - "graphify reference: extra exports and benchmark" Cohesion: 0.22 @@ -872,10 +1127,6 @@ Nodes (8): 1. `TASK-AUTH-001`, 2. `TASK-FIN-001`, 3. `DECISION-002`, 4. `TASK-VE Cohesion: 0.22 Nodes (8): Arch Linux, bower, Install, npm, Shabnam Font, yarn, طریقه استفاده در صفحات وب:, نمونه متن Sample: -### Community 139 - "layout.tsx" -Cohesion: 0.43 -Nodes (5): generateMetadata(), RootLayout(), lalezar, vazirmatn, generateOrganizationSchema() - ### Community 140 - "ErrorBoundary" Cohesion: 0.22 Nodes (3): ErrorBoundary, Props, State @@ -892,22 +1143,28 @@ Nodes (7): backend, distMainPath, fs, http, path, { spawn, execSync }, waitForBa Cohesion: 0.25 Nodes (6): app_module_1, core_1, fs, path, swagger_1, yaml +<<<<<<< HEAD +======= ### Community 145 - "admin.service.ts" -Cohesion: 0.13 -Nodes (20): CouponInput, CouponTargetInput, PaginationQuery, ProductDto, ApiPropertyOptional, IsArray, IsBoolean, IsNumber (+12 more) +Cohesion: 0.17 +Nodes (14): CouponInput, CouponTargetInput, PaginationQuery, CreateUserDto, ApiProperty, ApiPropertyOptional, IsEmail, IsNotEmpty (+6 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 146 - "System Discovery" Cohesion: 0.25 Nodes (7): Active Core Applications, Current Architecture, Evidence-Based Status Matrix, Excluded / Non-Auditable Artifacts, Major Business Domains Discovered, System Discovery, Technical Architecture Summary +<<<<<<< HEAD +======= ### Community 147 - "RevalidationService" -Cohesion: 0.17 -Nodes (5): RevalidationModule, Global, Module, RevalidationService, Injectable +Cohesion: 0.11 +Nodes (7): RevalidationModule, Global, Module, RevalidationService, Injectable, RedisService, Injectable ### Community 148 - "wiki/[slug]/page.tsx" Cohesion: 0.60 Nodes (5): generateMetadata(), getRelatedProducts(), getWikiTerm(), WikiTermPage(), generateMedicalWebPageSchema() +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 149 - "SmsSettingsPage.tsx" Cohesion: 0.29 Nodes (7): PatternItem, SmsConfigState, SmsLogItem, SmsLogStats, SmsSettingsPage(), toPersianDigits(), SmsSettingsPage @@ -916,9 +1173,19 @@ Nodes (7): PatternItem, SmsConfigState, SmsLogItem, SmsLogStats, SmsSettingsPage Cohesion: 0.29 Nodes (6): 1. Executive Vision, 2. Target Audience, 3. Functional Requirements, 4. Non-Functional Requirements (Performance, Security), 5. Epic / Feature Breakdown, Product Requirement Document (PRD) +<<<<<<< HEAD +### Community 151 - "admin.service.ts" +Cohesion: 0.07 +Nodes (16): CouponTargetInput, PaginationQuery, AdminLoginInput, AuthService, LoginInput, RegisterInput, Injectable, RevalidationModule (+8 more) + +### Community 152 - "InitiatePaymentDto" +Cohesion: 0.43 +Nodes (7): InitiatePaymentDto, InitiateWalletTopupDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString +======= ### Community 151 - "auth.service.ts" -Cohesion: 0.08 -Nodes (13): AdminLoginInput, AuthService, LoginInput, RegisterInput, Injectable, SendOtpDto, ApiProperty, IsNotEmpty (+5 more) +Cohesion: 0.09 +Nodes (17): AdminLoginInput, AuthService, LoginInput, RegisterInput, Injectable, SendOtpDto, ApiProperty, IsNotEmpty (+9 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 153 - "exclude" Cohesion: 0.22 @@ -1001,8 +1268,12 @@ Cohesion: 0.40 Nodes (4): activeFiles, errors, validationOutput, warnings ### Community 179 - "PaginationDto" -Cohesion: 0.05 -Nodes (29): BlogsModule, Module, BlogFilterDto, BlogsService, Injectable, PaginationDto, SortOrder, ApiPropertyOptional (+21 more) +Cohesion: 0.07 +<<<<<<< HEAD +Nodes (20): BlogsModule, Module, BlogFilterDto, BlogsService, Injectable, PaginationDto, SortOrder, ApiPropertyOptional (+12 more) +======= +Nodes (29): BlogFilterDto, PaginationDto, SortOrder, ApiPropertyOptional, IsEnum, IsInt, IsOptional, IsString (+21 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 180 - "API Contract Specification" Cohesion: 0.50 @@ -1021,7 +1292,7 @@ Cohesion: 0.50 Nodes (3): Overview & Content Foundation, SEO & Content Requirements, 🚀 SEO & Content Strategy Review (12_seo_content) ### Community 184 - "MetricsController" -Cohesion: 0.29 +Cohesion: 0.20 Nodes (5): ApiExcludeController, MetricsController, Controller, Get, Res ### Community 191 - "graphify reference: add a URL and watch a folder" @@ -1049,8 +1320,13 @@ Cohesion: 0.50 Nodes (3): Select, SelectOption, SelectProps ### Community 199 - "auth.controller.ts" -Cohesion: 0.08 -Nodes (25): AdminLoginDto, ApiProperty, IsEmail, IsNotEmpty, IsString, MinLength, LoginDto, ApiProperty (+17 more) +<<<<<<< HEAD +Cohesion: 0.06 +Nodes (43): AuthController, ApiBadRequestResponse, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+35 more) +======= +Cohesion: 0.10 +Nodes (19): AdminLoginDto, ApiProperty, IsEmail, IsNotEmpty, IsString, MinLength, LoginDto, ApiProperty (+11 more) +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 200 - "application/README.md" Cohesion: 0.50 @@ -1068,41 +1344,67 @@ Nodes (3): ADR-AUTH-001: Admin Panel Authentication Architecture & Token Managem Cohesion: 0.67 Nodes (3): Shabnam Font README, Shabnam Font Sample, Vazir Font -### Community 294 - "ZibalService" -Cohesion: 0.09 -Nodes (4): PaymentService, Injectable, Injectable, ZibalService +<<<<<<< HEAD +======= +### Community 234 - "WholesaleApplyDto" +Cohesion: 0.29 +Nodes (6): ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString, WholesaleApplyDto +### Community 237 - "app/page.tsx" +Cohesion: 0.67 +Nodes (3): generateMetadata(), getHomeData(), Home() + +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 298 - ".initiateOrderPayment" Cohesion: 0.20 Nodes (10): ApiPropertyOptional, IsOptional, IsString, ZibalCallbackQueryDto, ApiBadRequestResponse, ApiOkResponse, Req, Res (+2 more) -### Community 313 - "MenuManager.tsx" -Cohesion: 0.33 -Nodes (4): MENU_TABS, MenuItem, MenuType, MenuManager +### Community 313 - "Modal.tsx" +Cohesion: 0.08 +Nodes (17): maxWidthClasses, Modal(), ModalProps, ContactInfoItem, ContactSubmission, MENU_TABS, MenuItem, MenuType (+9 more) ### Community 317 - "revalidate/route.ts" Cohesion: 0.83 Nodes (3): GET(), handleRevalidate(), POST() ## Knowledge Gaps -- **1307 isolated node(s):** `$schema`, `collection`, `sourceRoot`, `deleteOutDir`, `name` (+1302 more) +- **1332 isolated node(s):** `$schema`, `collection`, `sourceRoot`, `deleteOutDir`, `name` (+1327 more) These have ≤1 connection - possible missing edges or undocumented components. -- **117 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. +<<<<<<< HEAD +- **100 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. +======= +- **118 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ## Suggested Questions _Questions this graph is uniquely positioned to answer:_ -- **Why does `ApiResponse` connect `BlogsController` to `AuthController`, `PetsController`, `src/services/api.ts`, `ProductsController`, `UsersService`, `OrdersService`?** - _High betweenness centrality (0.069) - this node is a cross-community bridge._ -- **Why does `Roles()` connect `Roles` to `SmsService`, `CmsController`, `tickets.controller.ts`, `ReviewsService`, `JwtAuthGuard`, `ProductsController`, `MenuService`, `WholesaleApplyDto`, `B2BService`, `FaqService`, `SslController`, `BannersService`, `TestimonialsController`, `IngredientsService`, `PrescriptionsController`, `SmartAdvisorController`, `ContactService`, `payment.controller.ts`, `ProductsService`, `reviews.controller.ts`?** - _High betweenness centrality (0.059) - this node is a cross-community bridge._ -- **Why does `JwtAuthGuard` connect `JwtAuthGuard` to `B2BService`, `PetsController`, `FaqService`, `CmsController`, `tickets.controller.ts`, `CategoriesController`, `admin.module.ts`, `auth.controller.ts`, `pets/pets.controller.ts`, `DoctorQueryDto`, `admin.service.ts`, `reviews.controller.ts`, `PaginationDto`, `UsersService`, `payment.controller.ts`, `ProductsService`?** - _High betweenness centrality (0.030) - this node is a cross-community bridge._ +<<<<<<< HEAD +- **Why does `ApiResponse` connect `src/services/api.ts` to `WikiController`, `BlogsController`, `auth.controller.ts`, `PetsController`, `HomeController`, `ProductsService`, `UsersService`, `OrdersService`?** + _High betweenness centrality (0.081) - this node is a cross-community bridge._ +- **Why does `Roles()` connect `Roles` to `WholesaleApplyDto`, `B2BService`, `SmsService`, `FaqService`, `CmsController`, `tickets.controller.ts`, `SslController`, `BannersService`, `ReviewsController`, `TestimonialsService`, `IngredientsService`, `reviews.controller.ts`, `JwtAuthGuard`, `ProductsService`, `PrescriptionsService`, `SmartAdvisorService`, `MenuService`, `ContactService`?** + _High betweenness centrality (0.064) - this node is a cross-community bridge._ +- **Why does `JwtAuthGuard` connect `JwtAuthGuard` to `AdminService`, `PetsController`, `CmsController`, `tickets.controller.ts`, `auth.controller.ts`, `admin.module.ts`, `pets/pets.controller.ts`, `DoctorQueryDto`, `reviews.controller.ts`, `PaginationDto`, `ProductsService`, `CreateVideoDto`, `UsersService`?** + _High betweenness centrality (0.035) - this node is a cross-community bridge._ +======= +- **Why does `ApiResponse` connect `src/services/api.ts` to `BlogsController`, `AuthController`, `PetsController`, `HomeController`, `ProductsService`, `PaginationDto`, `UsersController`, `OrdersService`?** + _High betweenness centrality (0.070) - this node is a cross-community bridge._ +- **Why does `Roles()` connect `Roles` to `WholesaleService`, `B2BService`, `SmsService`, `FaqService`, `CmsController`, `tickets.controller.ts`, `SslController`, `BannersService`, `ReviewsService`, `TestimonialsService`, `IngredientsService`, `JwtAuthGuard`, `ProductsService`, `PrescriptionsService`, `SmartAdvisorService`, `MenuService`, `ContactService`?** + _High betweenness centrality (0.062) - this node is a cross-community bridge._ +- **Why does `PrismaService` connect `PrismaService` to `app.module.ts`, `SmsService`, `CmsController`, `tickets.controller.ts`, `ReportsController`, `DoctorQueryDto`, `admin.service.ts`, `RevalidationService`, `ProductsService`, `CreateVideoDto`, `auth.service.ts`, `MenuService`, `WholesaleService`, `B2BService`, `FaqService`, `ZibalService`, `CategoriesController`, `MediaController`, `ZibalEBankService`, `BannersService`, `TestimonialsService`, `HomeController`, `IngredientsService`, `PaginationDto`, `PrescriptionsService`, `SmartAdvisorService`, `MetricsController`, `ContactService`, `payment.service.ts`, `admin.module.ts`, `PetsController`, `seo.module.ts`, `zibal.service.ts`, `OrdersService`, `BlogsController`, `CreateReviewDto`, `UsersService`?** + _High betweenness centrality (0.031) - this node is a cross-community bridge._ +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - **What connects `$schema`, `collection`, `sourceRoot` to the rest of the system?** - _1307 weakly-connected nodes found - possible documentation gaps or missing edges._ + _1332 weakly-connected nodes found - possible documentation gaps or missing edges._ - **Should `app.module.ts` be split into smaller, more focused modules?** - _Cohesion score 0.07215686274509804 - nodes in this community are weakly interconnected._ + _Cohesion score 0.07529411764705882 - nodes in this community are weakly interconnected._ - **Should `SmsService` be split into smaller, more focused modules?** - _Cohesion score 0.055040197897340756 - nodes in this community are weakly interconnected._ +<<<<<<< HEAD + _Cohesion score 0.055964653902798235 - nodes in this community are weakly interconnected._ - **Should `ProductService` be split into smaller, more focused modules?** - _Cohesion score 0.060814383923849816 - nodes in this community are weakly interconnected._ \ No newline at end of file + _Cohesion score 0.07127882599580712 - nodes in this community are weakly interconnected._ +======= + _Cohesion score 0.052028732284993204 - nodes in this community are weakly interconnected._ +- **Should `ProductService` be split into smaller, more focused modules?** + _Cohesion score 0.06229508196721312 - nodes in this community are weakly interconnected._ +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 diff --git a/graphify-out/2026-08-26/graph.json b/graphify-out/2026-08-26/graph.json index 2287c90..999e779 100644 --- a/graphify-out/2026-08-26/graph.json +++ b/graphify-out/2026-08-26/graph.json @@ -11,3208 +11,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller", "community": 0, "community_name": "Roles", - "norm_label": "paymentcontroller" - }, - { - "label": "BannersModule", - "file_type": "code", - "source_file": "backend/src/banners/banners.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_banners_banners_module_bannersmodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "bannersmodule" - }, - { - "label": "CmsModule", - "file_type": "code", - "source_file": "backend/src/cms/cms.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_cms_cms_module_cmsmodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "cmsmodule" - }, - { - "label": "SmsModule", - "file_type": "code", - "source_file": "backend/src/common/sms.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_sms_module_smsmodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "smsmodule" - }, - { - "label": "ContactModule", - "file_type": "code", - "source_file": "backend/src/contact/contact.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_contact_contact_module_contactmodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "contactmodule" - }, - { - "label": "DoctorsModule", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_doctors_doctors_module_doctorsmodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "doctorsmodule" - }, - { - "label": "IngredientsModule", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_module_ingredientsmodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "ingredientsmodule" - }, - { - "label": "MenuModule", - "file_type": "code", - "source_file": "backend/src/menu/menu.module.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_menu_menu_module_menumodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "menumodule" - }, - { - "label": "PaymentModule", - "file_type": "code", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_payment_module_paymentmodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "paymentmodule" - }, - { - "label": "PrescriptionsModule", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.module.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "prescriptionsmodule" - }, - { - "label": "PrismaModule", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_prisma_prisma_module_prismamodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "prismamodule" - }, - { - "label": "ReviewsModule", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_module_reviewsmodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "reviewsmodule" - }, - { - "label": "SettingsModule", - "file_type": "code", - "source_file": "backend/src/settings/settings.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_settings_settings_module_settingsmodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "settingsmodule" - }, - { - "label": "SmartAdvisorModule", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "smartadvisormodule" - }, - { - "label": "TestimonialsModule", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_module_testimonialsmodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "testimonialsmodule" - }, - { - "label": "VideosModule", - "file_type": "code", - "source_file": "backend/src/videos/videos.module.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_videos_videos_module_videosmodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "videosmodule" - }, - { - "label": "WholesaleModule", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_module_wholesalemodule", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "wholesalemodule" - }, - { - "label": "ReviewsController", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller", - "community": 10, - "community_name": "ReviewsService", - "norm_label": "reviewscontroller" - }, - { - "label": "ReviewsService", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice", - "community": 10, - "community_name": "ReviewsService", - "norm_label": "reviewsservice" - }, - { - "label": "PriceInputProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_priceinput_priceinputprops", - "community": 104, - "community_name": "Coupons.tsx", - "norm_label": "priceinputprops" - }, - { - "label": "Coupon", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_coupon", - "community": 104, - "community_name": "Coupons.tsx", - "norm_label": "coupon" - }, - { - "label": "CouponFormData", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_couponformdata", - "community": 104, - "community_name": "Coupons.tsx", - "norm_label": "couponformdata" - }, - { - "label": "CouponModalProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L308", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_couponmodalprops", - "community": 104, - "community_name": "Coupons.tsx", - "norm_label": "couponmodalprops" - }, - { - "label": "CouponTarget", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_coupontarget", - "community": 104, - "community_name": "Coupons.tsx", - "norm_label": "coupontarget" - }, - { - "label": "FinancialSettings", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L190", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_financialsettings", - "community": 104, - "community_name": "Coupons.tsx", - "norm_label": "financialsettings" - }, - { - "label": "BestSellerItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L39", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_bestselleritem", - "community": 106, - "community_name": "Reports.tsx", - "norm_label": "bestselleritem" - }, - { - "label": "CategoryDistItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_categorydistitem", - "community": 106, - "community_name": "Reports.tsx", - "norm_label": "categorydistitem" - }, - { - "label": "CustomTooltipProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_customtooltipprops", - "community": 106, - "community_name": "Reports.tsx", - "norm_label": "customtooltipprops" - }, - { - "label": "ReportData", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L50", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_reportdata", - "community": 106, - "community_name": "Reports.tsx", - "norm_label": "reportdata" - }, - { - "label": "TopCouponItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L44", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_topcouponitem", - "community": 106, - "community_name": "Reports.tsx", - "norm_label": "topcouponitem" - }, - { - "label": "PetQuery", - "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_pets_service_petquery", - "community": 108, - "community_name": "PrismaService", - "norm_label": "petquery" - }, - { - "label": "WikiQuery", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_service_wikiquery", - "community": 108, - "community_name": "PrismaService", - "norm_label": "wikiquery" - }, - { - "label": "MeliPayamakPattern", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_melipayamakpattern", - "community": 108, - "community_name": "PrismaService", - "norm_label": "melipayamakpattern" - }, - { - "label": "MeliPayamakResponse", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L44", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_melipayamakresponse", - "community": 108, - "community_name": "PrismaService", - "norm_label": "melipayamakresponse" - }, - { - "label": "SendPatternSmsOptions", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_sendpatternsmsoptions", - "community": 108, - "community_name": "PrismaService", - "norm_label": "sendpatternsmsoptions" - }, - { - "label": "SmsConfig", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsconfig", - "community": 108, - "community_name": "PrismaService", - "norm_label": "smsconfig" - }, - { - "label": "CreateContactSubmissionDto", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_createcontactsubmissiondto", - "community": 108, - "community_name": "PrismaService", - "norm_label": "createcontactsubmissiondto" - }, - { - "label": "UpdateContactInfoItemDto", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_updatecontactinfoitemdto", - "community": 108, - "community_name": "PrismaService", - "norm_label": "updatecontactinfoitemdto" - }, - { - "label": "MenuType", - "file_type": "code", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_menu_menu_service_menutype", - "community": 108, - "community_name": "PrismaService", - "norm_label": "menutype" - }, - { - "label": "ClientMetadata", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_clientmetadata", - "community": 108, - "community_name": "PrismaService", - "norm_label": "clientmetadata" - }, - { - "label": "EBankCheckoutListFilter", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_ebankcheckoutlistfilter", - "community": 108, - "community_name": "PrismaService", - "norm_label": "ebankcheckoutlistfilter" - }, - { - "label": "EBankCheckoutOptions", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_ebankcheckoutoptions", - "community": 108, - "community_name": "PrismaService", - "norm_label": "ebankcheckoutoptions" - }, - { - "label": "EBankIdentifiedPaymentFilter", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_ebankidentifiedpaymentfilter", - "community": 108, - "community_name": "PrismaService", - "norm_label": "ebankidentifiedpaymentfilter" - }, - { - "label": "EBankStatementFilter", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_ebankstatementfilter", - "community": 108, - "community_name": "PrismaService", - "norm_label": "ebankstatementfilter" - }, - { - "label": "PrescriptionsService", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "community": 108, - "community_name": "PrismaService", - "norm_label": "prescriptionsservice" - }, - { - "label": "PrismaService", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_prisma_prisma_service_prismaservice", - "community": 108, - "community_name": "PrismaService", - "norm_label": "prismaservice" - }, - { - "label": "ScientificTermData", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_scientifictermdata", - "community": 108, - "community_name": "PrismaService", - "norm_label": "scientifictermdata" - }, - { - "label": "SmartAdvisorService", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "community": 108, - "community_name": "PrismaService", - "norm_label": "smartadvisorservice" - }, - { - "label": "TestimonialsService", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_service_testimonialsservice", - "community": 108, - "community_name": "PrismaService", - "norm_label": "testimonialsservice" - }, - { - "label": "VideoQuery", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_videos_videos_service_videoquery", - "community": 108, - "community_name": "PrismaService", - "norm_label": "videoquery" - }, - { - "label": "ConfirmModalProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "confirmmodalprops" - }, - { - "label": "Media", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_mediaselector_media", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "media" - }, - { - "label": "MediaSelectorProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "mediaselectorprops" - }, - { - "label": "ModalProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_modal_modalprops", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "modalprops" - }, - { - "label": "PaginationProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_pagination_paginationprops", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "paginationprops" - }, - { - "label": "Category", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_categories_category", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "category" - }, - { - "label": "Doctor", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_doctorsmanager_doctor", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "doctor" - }, - { - "label": "FAQ", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_faqmanager_faq", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "faq" - }, - { - "label": "Media", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_media_media", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "media" - }, - { - "label": "Pet", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_pets_pet", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "pet" - }, - { - "label": "Category", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_products_category", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "category" - }, - { - "label": "Product", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_products_product", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "product" - }, - { - "label": "SslStatus", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_sslsettingspage_sslstatus", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "sslstatus" - }, - { - "label": "DoctorOption", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L31", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_videos_doctoroption", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "doctoroption" - }, - { - "label": "Video", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_videos_video", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "video" - }, - { - "label": "ProductItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wiki_productitem", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "productitem" - }, - { - "label": "WikiTerm", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wiki_wikiterm", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "wikiterm" - }, - { - "label": "CreateReviewDto", - "file_type": "code", - "source_file": "backend/src/reviews/dto/create-review.dto.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": "createreviewdto" - }, - { - "label": "UpdateReviewDto", - "file_type": "code", - "source_file": "backend/src/reviews/dto/update-review.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": "updatereviewdto" - }, - { - "label": "AppController", - "file_type": "code", - "source_file": "backend/src/app.controller.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_app_controller_appcontroller", - "community": 114, - "community_name": "AppService", - "norm_label": "appcontroller" - }, - { - "label": "AppService", - "file_type": "code", - "source_file": "backend/src/app.service.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_app_service_appservice", - "community": 114, - "community_name": "AppService", - "norm_label": "appservice" - }, - { - "label": "SkeletonProps", - "file_type": "code", - "source_file": "frontend/application/components/Skeleton.tsx", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_skeleton_skeletonprops", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "skeletonprops" - }, - { - "label": "HealthLog", - "file_type": "code", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_usepetstore_healthlog", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "healthlog" - }, - { - "label": "PetConsumption", - "file_type": "code", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_usepetstore_petconsumption", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "petconsumption" - }, - { - "label": "PetProfile", - "file_type": "code", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L32", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_usepetstore_petprofile", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "petprofile" - }, - { - "label": "PetStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L50", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_usepetstore_petstore", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "petstore" - }, - { - "label": "Reminder", - "file_type": "code", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_usepetstore_reminder", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "reminder" - }, - { - "label": "AuthService", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L38", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice", - "community": 122, - "community_name": "AuthService", - "norm_label": "authservice" - }, - { - "label": "BlogsService", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice", - "community": 123, - "community_name": "BlogsService", - "norm_label": "blogsservice" - }, - { - "label": "AdminController", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L29", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller", - "community": 128, - "community_name": "AdminService", - "norm_label": "admincontroller" - }, - { - "label": "AdminService", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L51", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice", - "community": 128, - "community_name": "AdminService", - "norm_label": "adminservice" - }, - { - "label": "Props", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary_props", - "community": 129, - "community_name": "RouteErrorBoundary", - "norm_label": "props" - }, - { - "label": "RouteErrorBoundary", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", - "community": 129, - "community_name": "RouteErrorBoundary", - "norm_label": "routeerrorboundary" - }, - { - "label": "State", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary_state", - "community": 129, - "community_name": "RouteErrorBoundary", - "norm_label": "state" - }, - { - "label": "AppModule", - "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L89", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_app_module_appmodule", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "appmodule" - }, - { - "label": "CustomHttpExceptionFilter", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "customhttpexceptionfilter" - }, - { - "label": "PrismaExceptionFilter", - "file_type": "code", - "source_file": "backend/src/common/filters/prisma-exception.filter.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "prismaexceptionfilter" - }, - { - "label": "DecimalInterceptor", - "file_type": "code", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "decimalinterceptor" - }, - { - "label": "ApiErrorResponse", - "file_type": "code", - "source_file": "backend/src/common/schemas/error-response.schema.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_schemas_error_response_schema_apierrorresponse", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "apierrorresponse" - }, - { - "label": "ErrorDetailField", - "file_type": "code", - "source_file": "backend/src/common/schemas/error-response.schema.ts", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_schemas_error_response_schema_errordetailfield", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "errordetailfield" - }, - { - "label": "BlogPost", - "file_type": "code", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_blogpreviewsection_blogpost", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "blogpost" - }, - { - "label": "ContactInfoItem", - "file_type": "code", - "source_file": "frontend/application/components/ContactFormClient.tsx", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_contactformclient_contactinfoitem", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "contactinfoitem" - }, - { - "label": "FAQItem", - "file_type": "code", - "source_file": "frontend/application/components/FAQSection.tsx", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_faqsection_faqitem", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "faqitem" - }, - { - "label": "Testimonial", - "file_type": "code", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_testimonialssection_testimonial", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "testimonial" - }, - { - "label": "ApiErrorPayload", - "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_api_apierrorpayload", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "apierrorpayload" - }, - { - "label": "ApiErr", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L29", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_apierr", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "apierr" - }, - { - "label": "AuthResponse", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L21", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authresponse", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "authresponse" - }, - { - "label": "User", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_user", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "user" - }, - { - "label": "ApiErr", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_orderservice_apierr", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "apierr" - }, - { - "label": "Order", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_orderservice_order", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "order" - }, - { - "label": "OrderItem", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_orderservice_orderitem", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "orderitem" - }, - { - "label": "CreateTicketPayload", - "file_type": "code", - "source_file": "frontend/application/lib/services/ticketService.ts", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_ticketservice_createticketpayload", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "createticketpayload" - }, - { - "label": "Ticket", - "file_type": "code", - "source_file": "frontend/application/lib/services/ticketService.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_ticketservice_ticket", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "ticket" - }, - { - "label": "TicketMessage", - "file_type": "code", - "source_file": "frontend/application/lib/services/ticketService.ts", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_ticketservice_ticketmessage", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "ticketmessage" - }, - { - "label": "ScientificTerm", - "file_type": "code", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_settingsstore_scientificterm", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "scientificterm" - }, - { - "label": "SettingsStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_settingsstore_settingsstore", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "settingsstore" - }, - { - "label": "ErrorBoundary", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_errorboundary_errorboundary", - "community": 140, - "community_name": "ErrorBoundary", - "norm_label": "errorboundary" - }, - { - "label": "Props", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_errorboundary_props", - "community": 140, - "community_name": "ErrorBoundary", - "norm_label": "props" - }, - { - "label": "State", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_errorboundary_state", - "community": 140, - "community_name": "ErrorBoundary", - "norm_label": "state" - }, - { - "label": "CouponInput", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L38", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_couponinput", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "couponinput" - }, - { - "label": "CouponTargetInput", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L31", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_coupontargetinput", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "coupontargetinput" - }, - { - "label": "PaginationQuery", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_paginationquery", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "paginationquery" - }, - { - "label": "ProductDto", - "file_type": "code", - "source_file": "backend/src/admin/dto/product.dto.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_dto_product_dto_productdto", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "productdto" - }, - { - "label": "CreateUserDto", - "file_type": "code", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_createuserdto", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "createuserdto" - }, - { - "label": "UpdateUserDto", - "file_type": "code", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L52", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_updateuserdto", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "updateuserdto" - }, - { - "label": "RevalidationModule", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_module_revalidationmodule", - "community": 147, - "community_name": "RevalidationService", - "norm_label": "revalidationmodule" - }, - { - "label": "RevalidationService", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "community": 147, - "community_name": "RevalidationService", - "norm_label": "revalidationservice" - }, - { - "label": "PatternItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L58", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage_patternitem", - "community": 149, - "community_name": "SmsSettingsPage.tsx", - "norm_label": "patternitem" - }, - { - "label": "SmsConfigState", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L46", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate", - "community": 149, - "community_name": "SmsSettingsPage.tsx", - "norm_label": "smsconfigstate" - }, - { - "label": "SmsLogItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L67", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage_smslogitem", - "community": 149, - "community_name": "SmsSettingsPage.tsx", - "norm_label": "smslogitem" - }, - { - "label": "SmsLogStats", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L80", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage_smslogstats", - "community": 149, - "community_name": "SmsSettingsPage.tsx", - "norm_label": "smslogstats" - }, - { - "label": "ApiErrorPayload", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_services_api_apierrorpayload", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "apierrorpayload" - }, - { - "label": "AdminLoginPayload", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L31", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_adminloginpayload", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "adminloginpayload" - }, - { - "label": "AdminUser", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_adminuser", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "adminuser" - }, - { - "label": "AuthResponseData", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L36", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_authresponsedata", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "authresponsedata" - }, - { - "label": "AuthState", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_authstate", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "authstate" - }, - { - "label": "B2BInquiry", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L151", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_b2binquiry", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "b2binquiry" - }, - { - "label": "Banner", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L70", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_banner", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "banner" - }, - { - "label": "Ingredient", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L111", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_ingredient", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "ingredient" - }, - { - "label": "PartnerAccount", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L166", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_partneraccount", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "partneraccount" - }, - { - "label": "Prescription", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L124", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_prescription", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "prescription" - }, - { - "label": "Product", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L206", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_product", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "product" - }, - { - "label": "SendOtpPayload", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_sendotppayload", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "sendotppayload" - }, - { - "label": "SeoSettings", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L178", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_seosettings", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "seosettings" - }, - { - "label": "SmartAdvisorRule", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L83", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_smartadvisorrule", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "smartadvisorrule" - }, - { - "label": "SystemSettings", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L198", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_systemsettings", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "systemsettings" - }, - { - "label": "Testimonial", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L97", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_testimonial", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "testimonial" - }, - { - "label": "VerifyOtpPayload", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_verifyotppayload", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "verifyotppayload" - }, - { - "label": "AdminLoginInput", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_adminlogininput", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "adminlogininput" - }, - { - "label": "AuthService", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L37", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "authservice" - }, - { - "label": "LoginInput", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_logininput", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "logininput" - }, - { - "label": "RegisterInput", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_registerinput", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "registerinput" - }, - { - "label": "SendOtpDto", - "file_type": "code", - "source_file": "backend/src/auth/dto/send-otp.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "sendotpdto" - }, - { - "label": "RedisService", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "redisservice" - }, - { - "label": "DoctorsController", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_doctorscontroller", - "community": 16, - "community_name": "DoctorQueryDto", - "norm_label": "doctorscontroller" - }, - { - "label": "DoctorsService", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_doctors_doctors_service_doctorsservice", - "community": 16, - "community_name": "DoctorQueryDto", - "norm_label": "doctorsservice" - }, - { - "label": "DoctorQueryDto", - "file_type": "code", - "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", - "community": 16, - "community_name": "DoctorQueryDto", - "norm_label": "doctorquerydto" - }, - { - "label": "PaginatedResponse", - "file_type": "code", - "source_file": "backend/src/common/schemas/paginated-response.schema.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_schemas_paginated_response_schema_paginatedresponse", - "community": 169, - "community_name": "paginated-response.schema.ts", - "norm_label": "paginatedresponse" - }, - { - "label": "PaginationMeta", - "file_type": "code", - "source_file": "backend/src/common/schemas/paginated-response.schema.ts", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_schemas_paginated_response_schema_paginationmeta", - "community": 169, - "community_name": "paginated-response.schema.ts", - "norm_label": "paginationmeta" - }, - { - "label": "B2BServiceSchemaOptions", - "file_type": "code", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L114", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_schema_b2bserviceschemaoptions", - "community": 17, - "community_name": "schema.ts", - "norm_label": "b2bserviceschemaoptions" - }, - { - "label": "BreadcrumbItem", - "file_type": "code", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L217", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_schema_breadcrumbitem", - "community": 17, - "community_name": "schema.ts", - "norm_label": "breadcrumbitem" - }, - { - "label": "MedicalWebPageSchemaOptions", - "file_type": "code", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L149", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_schema_medicalwebpageschemaoptions", - "community": 17, - "community_name": "schema.ts", - "norm_label": "medicalwebpageschemaoptions" - }, - { - "label": "OrganizationSchemaOptions", - "file_type": "code", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_schema_organizationschemaoptions", - "community": 17, - "community_name": "schema.ts", - "norm_label": "organizationschemaoptions" - }, - { - "label": "VideoObjectSchemaOptions", - "file_type": "code", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L185", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_schema_videoobjectschemaoptions", - "community": 17, - "community_name": "schema.ts", - "norm_label": "videoobjectschemaoptions" - }, - { - "label": "BlogsModule", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_module_blogsmodule", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "blogsmodule" - }, - { - "label": "BlogFilterDto", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogfilterdto", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "blogfilterdto" - }, - { - "label": "BlogsService", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "blogsservice" - }, - { - "label": "PaginationDto", - "file_type": "code", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_paginationdto", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "paginationdto" - }, - { - "label": "SortOrder", - "file_type": "code", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_sortorder", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "sortorder" - }, - { - "label": "ValidateCouponDto", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L29", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_orders_orders_controller_validatecoupondto", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "validatecoupondto" - }, - { - "label": "OrdersModule", - "file_type": "code", - "source_file": "backend/src/orders/orders.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_orders_orders_module_ordersmodule", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "ordersmodule" - }, - { - "label": "GetVideosQueryDto", - "file_type": "code", - "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "getvideosquerydto" - }, - { - "label": "WikiModule", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_module_wikimodule", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "wikimodule" - }, - { - "label": "WikiService", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_service_wikiservice", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "wikiservice" - }, - { - "label": "JwtAuthGuard", - "file_type": "code", - "source_file": "backend/src/auth/jwt-auth.guard.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "community": 18, - "community_name": "JwtAuthGuard", - "norm_label": "jwtauthguard" - }, - { - "label": "RequestWithUser", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_guards_roles_guard_requestwithuser", - "community": 18, - "community_name": "JwtAuthGuard", - "norm_label": "requestwithuser" - }, - { - "label": "RolesGuard", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_guards_roles_guard_rolesguard", - "community": 18, - "community_name": "JwtAuthGuard", - "norm_label": "rolesguard" - }, - { - "label": "UserReqPayload", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_userreqpayload", - "community": 18, - "community_name": "JwtAuthGuard", - "norm_label": "userreqpayload" - }, - { - "label": "MetricsController", - "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_metrics_controller_metricscontroller", - "community": 184, - "community_name": "MetricsController", - "norm_label": "metricscontroller" - }, - { - "label": "CreateBlogDto", - "file_type": "code", - "source_file": "backend/src/blogs/dto/create-blog.dto.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_blogs_dto_create_blog_dto_createblogdto", - "community": 188, - "community_name": "update-blog.dto.ts", - "norm_label": "createblogdto" - }, - { - "label": "UpdateBlogDto", - "file_type": "code", - "source_file": "backend/src/blogs/dto/update-blog.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_blogs_dto_update_blog_dto_updateblogdto", - "community": 188, - "community_name": "update-blog.dto.ts", - "norm_label": "updateblogdto" - }, - { - "label": "CreateHomeDto", - "file_type": "code", - "source_file": "backend/src/home/dto/create-home.dto.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_home_dto_create_home_dto_createhomedto", - "community": 189, - "community_name": "update-home.dto.ts", - "norm_label": "createhomedto" - }, - { - "label": "UpdateHomeDto", - "file_type": "code", - "source_file": "backend/src/home/dto/update-home.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_home_dto_update_home_dto_updatehomedto", - "community": 189, - "community_name": "update-home.dto.ts", - "norm_label": "updatehomedto" - }, - { - "label": "ProductsController", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_products_products_controller_productscontroller", - "community": 19, - "community_name": "ProductsController", - "norm_label": "productscontroller" - }, - { - "label": "CreateWikiDto", - "file_type": "code", - "source_file": "backend/src/wiki/dto/create-wiki.dto.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wiki_dto_create_wiki_dto_createwikidto", - "community": 190, - "community_name": "update-wiki.dto.ts", - "norm_label": "createwikidto" - }, - { - "label": "UpdateWikiDto", - "file_type": "code", - "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wiki_dto_update_wiki_dto_updatewikidto", - "community": 190, - "community_name": "update-wiki.dto.ts", - "norm_label": "updatewikidto" - }, - { - "label": "SelectOption", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_select_selectoption", - "community": 196, - "community_name": "Select.tsx", - "norm_label": "selectoption" - }, - { - "label": "SelectProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_select_selectprops", - "community": 196, - "community_name": "Select.tsx", - "norm_label": "selectprops" - }, - { - "label": "AdminLoginDto", - "file_type": "code", - "source_file": "backend/src/auth/dto/admin-login.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "adminlogindto" - }, - { - "label": "LoginDto", - "file_type": "code", - "source_file": "backend/src/auth/dto/login.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_dto_login_dto_logindto", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "logindto" - }, - { - "label": "RegisterDto", - "file_type": "code", - "source_file": "backend/src/auth/dto/register.dto.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_dto_register_dto_registerdto", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "registerdto" - }, - { - "label": "VerifyOtpDto", - "file_type": "code", - "source_file": "backend/src/auth/dto/verify-otp.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "verifyotpdto" - }, - { - "label": "SmsLogQuery", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smslogquery", - "community": 2, - "community_name": "SmsService", - "norm_label": "smslogquery" - }, - { - "label": "SmsService", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L51", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice", - "community": 2, - "community_name": "SmsService", - "norm_label": "smsservice" - }, - { - "label": "SmsLogQueryDto", - "file_type": "code", - "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "community": 2, - "community_name": "SmsService", - "norm_label": "smslogquerydto" - }, - { - "label": "SettingsController", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller", - "community": 2, - "community_name": "SmsService", - "norm_label": "settingscontroller" - }, - { - "label": "SettingsService", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L145", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice", - "community": 2, - "community_name": "SmsService", - "norm_label": "settingsservice" - }, - { - "label": "CreateVideoDto", - "file_type": "code", - "source_file": "backend/src/videos/dto/create-video.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto_createvideodto", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "createvideodto" - }, - { - "label": "UpdateVideoDto", - "file_type": "code", - "source_file": "backend/src/videos/dto/create-video.dto.ts", - "source_location": "L63", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto_updatevideodto", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "updatevideodto" - }, - { - "label": "VideosController", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_videos_videos_controller_videoscontroller", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "videoscontroller" - }, - { - "label": "VideosService", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_videos_videos_service_videosservice", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "videosservice" - }, - { - "label": "ScientificTerm", - "file_type": "code", - "source_file": "backend/prisma/scientificTerms.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_prisma_scientificterms_scientificterm", - "community": 205, - "community_name": "prisma/scientificTerms.ts", - "norm_label": "scientificterm" - }, - { - "label": "CalculatorState", - "file_type": "code", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L54", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_productpage_calculatorstate", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "calculatorstate" - }, - { - "label": "ProductReviewsProps", - "file_type": "code", - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_productreviews_productreviewsprops", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "productreviewsprops" - }, - { - "label": "ReviewItem", - "file_type": "code", - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_productreviews_reviewitem", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "reviewitem" - }, - { - "label": "TooltipProps", - "file_type": "code", - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_tooltip_tooltipprops", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "tooltipprops" - }, - { - "label": "ScientificTerm", - "file_type": "code", - "source_file": "frontend/application/lib/data/scientificTerms.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_data_scientificterms_scientificterm", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "scientificterm" - }, - { - "label": "DosageConfig", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L94", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_dosageconfig", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "dosageconfig" - }, - { - "label": "FormFieldProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/FormField.tsx", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_formfield_formfieldprops", - "community": 219, - "community_name": "FormField.tsx", - "norm_label": "formfieldprops" - }, - { - "label": "AddressModalProps", - "file_type": "code", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_addressmodal_addressmodalprops", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "addressmodalprops" - }, - { - "label": "BackButtonProps", - "file_type": "code", - "source_file": "frontend/application/components/BackButton.tsx", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_backbutton_backbuttonprops", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "backbuttonprops" - }, - { - "label": "DeleteConfirmModalProps", - "file_type": "code", - "source_file": "frontend/application/components/DeleteConfirmModal.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "deleteconfirmmodalprops" - }, - { - "label": "HeaderButtonProps", - "file_type": "code", - "source_file": "frontend/application/components/HeaderButton.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_headerbutton_headerbuttonprops", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "headerbuttonprops" - }, - { - "label": "LoginModalProps", - "file_type": "code", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_loginmodal_loginmodalprops", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "loginmodalprops" - }, - { - "label": "PrescriptionUploadModalProps", - "file_type": "code", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "prescriptionuploadmodalprops" - }, - { - "label": "SearchableSelectProps", - "file_type": "code", - "source_file": "frontend/application/components/SearchableSelect.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_searchableselect_searchableselectprops", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "searchableselectprops" - }, - { - "label": "TopUpModalProps", - "file_type": "code", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_topupmodal_topupmodalprops", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "topupmodalprops" - }, - { - "label": "Address", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_address", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "address" - }, - { - "label": "Transaction", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_transaction", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "transaction" - }, - { - "label": "UserProfile", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L33", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_userprofile", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "userprofile" - }, - { - "label": "UserRole", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_userrole", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "userrole" - }, - { - "label": "UserStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L45", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_userstore_userstore", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "userstore" - }, - { - "label": "InputProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Input.tsx", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_input_inputprops", - "community": 220, - "community_name": "Input.tsx", - "norm_label": "inputprops" - }, - { - "label": "TextareaProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Textarea.tsx", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_textarea_textareaprops", - "community": 221, - "community_name": "Textarea.tsx", - "norm_label": "textareaprops" - }, - { - "label": "MenuController", - "file_type": "code", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_menu_menu_controller_menucontroller", - "community": 23, - "community_name": "MenuService", - "norm_label": "menucontroller" - }, - { - "label": "MenuService", - "file_type": "code", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_menu_menu_service_menuservice", - "community": 23, - "community_name": "MenuService", - "norm_label": "menuservice" - }, - { - "label": "Blog", - "file_type": "code", - "source_file": "backend/src/blogs/entities/blog.entity.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_blogs_entities_blog_entity_blog", - "community": 241, - "community_name": "blog.entity.ts", - "norm_label": "blog" - }, - { - "label": "Home", - "file_type": "code", - "source_file": "backend/src/home/entities/home.entity.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_home_entities_home_entity_home", - "community": 242, - "community_name": "home.entity.ts", - "norm_label": "home" - }, - { - "label": "Wiki", - "file_type": "code", - "source_file": "backend/src/wiki/entities/wiki.entity.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wiki_entities_wiki_entity_wiki", - "community": 243, - "community_name": "wiki.entity.ts", - "norm_label": "wiki" - }, - { - "label": "MockIntersectionObserver", - "file_type": "code", - "source_file": "frontend/application/vitest.setup.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_vitest_setup_mockintersectionobserver", - "community": 256, - "community_name": "vitest.setup.ts", - "norm_label": "mockintersectionobserver" - }, - { - "label": "PaymentService", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice", - "community": 294, - "community_name": "ZibalService", - "norm_label": "paymentservice" - }, - { - "label": "ZibalService", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L43", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice", - "community": 294, - "community_name": "ZibalService", - "norm_label": "zibalservice" - }, - { - "label": "ZibalEBankService", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L44", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "community": 297, - "community_name": "ZibalEBankService", - "norm_label": "zibalebankservice" - }, - { - "label": "ZibalCallbackQueryDto", - "file_type": "code", - "source_file": "backend/src/payment/dto/verify-payment.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", - "community": 298, - "community_name": ".initiateOrderPayment", - "norm_label": "zibalcallbackquerydto" - }, - { - "label": "CatalogPageSpreadProps", - "file_type": "code", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L36", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops", - "community": 3, - "community_name": "ProductService", - "norm_label": "catalogpagespreadprops" - }, - { - "label": "CategoryMeta", - "file_type": "code", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_catalog_catalogpagespread_categorymeta", - "community": 3, - "community_name": "ProductService", - "norm_label": "categorymeta" - }, - { - "label": "FlipbookCatalogProps", - "file_type": "code", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops", - "community": 3, - "community_name": "ProductService", - "norm_label": "flipbookcatalogprops" - }, - { - "label": "SmartAdvisorProps", - "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_smartadvisor_smartadvisorprops", - "community": 3, - "community_name": "ProductService", - "norm_label": "smartadvisorprops" - }, - { - "label": "DosageResult", - "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_data_products_dosageresult", - "community": 3, - "community_name": "ProductService", - "norm_label": "dosageresult" - }, - { - "label": "FAQ", - "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_data_products_faq", - "community": 3, - "community_name": "ProductService", - "norm_label": "faq" - }, - { - "label": "IngredientInfo", - "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_data_products_ingredientinfo", - "community": 3, - "community_name": "ProductService", - "norm_label": "ingredientinfo" - }, - { - "label": "Product", - "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_data_products_product", - "community": 3, - "community_name": "ProductService", - "norm_label": "product" - }, - { - "label": "Specialist", - "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_data_products_specialist", - "community": 3, - "community_name": "ProductService", - "norm_label": "specialist" - }, - { - "label": "BackendProduct", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_backendproduct", - "community": 3, - "community_name": "ProductService", - "norm_label": "backendproduct" - }, - { - "label": "ProductService", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L71", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice", - "community": 3, - "community_name": "ProductService", - "norm_label": "productservice" - }, - { - "label": "Ingredient", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L42", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_ingredient", - "community": 3, - "community_name": "ProductService", - "norm_label": "ingredient" - }, - { - "label": "MenuItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_menumanager_menuitem", - "community": 313, - "community_name": "MenuManager.tsx", - "norm_label": "menuitem" - }, - { - "label": "MenuType", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L29", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_menumanager_menutype", - "community": 313, - "community_name": "MenuManager.tsx", - "norm_label": "menutype" - }, - { - "label": "MaskableFieldProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_maskablefield_maskablefieldprops", - "community": 318, - "community_name": "MaskableField.tsx", - "norm_label": "maskablefieldprops" - }, - { - "label": "CategoryDist", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_dashboard_categorydist", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "categorydist" - }, - { - "label": "DashboardData", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_dashboard_dashboarddata", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "dashboarddata" - }, - { - "label": "WholesaleRequest", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "wholesalerequest" - }, - { - "label": "AdminRouteConfig", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L50", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "adminrouteconfig" - }, - { - "label": "WholesaleApplyDto", - "file_type": "code", - "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "wholesaleapplydto" - }, - { - "label": "WholesaleController", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "wholesalecontroller" - }, - { - "label": "WholesaleService", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "wholesaleservice" - }, - { - "label": "B2BController", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_b2bcontroller", - "community": 34, - "community_name": "B2BService", - "norm_label": "b2bcontroller" + "norm_label": "paymentcontroller", + "id": "backend_src_payment_payment_controller_paymentcontroller" }, { "label": "B2BModule", @@ -3222,62 +24,75 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_b2b_b2b_module_b2bmodule", - "community": 34, - "community_name": "B2BService", - "norm_label": "b2bmodule" + "community": 1, + "community_name": "app.module.ts", + "norm_label": "b2bmodule", + "id": "backend_src_b2b_b2b_module_b2bmodule" }, { - "label": "B2BService", + "label": "BannersModule", "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L14", + "source_file": "backend/src/banners/banners.module.ts", + "source_location": "L12", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bservice", - "community": 34, - "community_name": "B2BService", - "norm_label": "b2bservice" + "community": 1, + "community_name": "app.module.ts", + "norm_label": "bannersmodule", + "id": "backend_src_banners_banners_module_bannersmodule" }, { - "label": "B2BWholesaleOrderItem", + "label": "CmsModule", "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L8", + "source_file": "backend/src/cms/cms.module.ts", + "source_location": "L12", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", - "community": 34, - "community_name": "B2BService", - "norm_label": "b2bwholesaleorderitem" + "community": 1, + "community_name": "app.module.ts", + "norm_label": "cmsmodule", + "id": "backend_src_cms_cms_module_cmsmodule" }, { - "label": "AuthController", + "label": "SmsModule", "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L41", + "source_file": "backend/src/common/sms.module.ts", + "source_location": "L9", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller", - "community": 35, - "community_name": "AuthController", - "norm_label": "authcontroller" + "community": 1, + "community_name": "app.module.ts", + "norm_label": "smsmodule", + "id": "backend_src_common_sms_module_smsmodule" }, { - "label": "FaqController", + "label": "ContactModule", "file_type": "code", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L19", + "source_file": "backend/src/contact/contact.module.ts", + "source_location": "L12", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_faq_faq_controller_faqcontroller", - "community": 36, - "community_name": "FaqService", - "norm_label": "faqcontroller" + "community": 1, + "community_name": "app.module.ts", + "norm_label": "contactmodule", + "id": "backend_src_contact_contact_module_contactmodule" + }, + { + "label": "DoctorsModule", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "doctorsmodule", + "id": "backend_src_doctors_doctors_module_doctorsmodule" }, { "label": "FaqModule", @@ -3287,244 +102,218 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_faq_faq_module_faqmodule", "community": 36, "community_name": "FaqService", - "norm_label": "faqmodule" + "norm_label": "faqmodule", + "id": "backend_src_faq_faq_module_faqmodule" }, { - "label": "FaqService", + "label": "IngredientsModule", "file_type": "code", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_faq_faq_service_faqservice", - "community": 36, - "community_name": "FaqService", - "norm_label": "faqservice" - }, - { - "label": "TransactionReceiptData", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptdata", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "transactionreceiptdata" - }, - { - "label": "TransactionReceiptModalProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodalprops", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "transactionreceiptmodalprops" - }, - { - "label": "ButtonProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_button_buttonprops", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "buttonprops" - }, - { - "label": "ButtonSize", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_button_buttonsize", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "buttonsize" - }, - { - "label": "ButtonVariant", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_button_buttonvariant", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "buttonvariant" - }, - { - "label": "ThSortProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ThSort.tsx", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_thsort_thsortprops", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "thsortprops" - }, - { - "label": "ContactInfoItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L21", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "contactinfoitem" - }, - { - "label": "ContactSubmission", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "contactsubmission" - }, - { - "label": "ProductReview", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reviews_productreview", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "productreview" - }, - { - "label": "Ticket", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L36", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_tickets_ticket", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "ticket" - }, - { - "label": "TicketMessage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_tickets_ticketmessage", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "ticketmessage" - }, - { - "label": "GatewayHealth", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L80", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions_gatewayhealth", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "gatewayhealth" - }, - { - "label": "Stats", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L70", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions_stats", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "stats" - }, - { - "label": "Transaction", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L32", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions_transaction", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "transaction" - }, - { - "label": "UseTableParamsOptions", - "file_type": "code", - "source_file": "frontend/admin-panel/src/utils/useTableParams.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_utils_usetableparams_usetableparamsoptions", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "usetableparamsoptions" - }, - { - "label": "CategoriesController", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_categories_controller_categoriescontroller", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "categoriescontroller" - }, - { - "label": "CategoriesService", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", + "source_file": "backend/src/ingredients/ingredients.module.ts", "source_location": "L12", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_admin_categories_service_categoriesservice", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "categoriesservice" + "community": 1, + "community_name": "app.module.ts", + "norm_label": "ingredientsmodule", + "id": "backend_src_ingredients_ingredients_module_ingredientsmodule" + }, + { + "label": "MenuModule", + "file_type": "code", + "source_file": "backend/src/menu/menu.module.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": "menumodule", + "id": "backend_src_menu_menu_module_menumodule" + }, + { + "label": "PaymentModule", + "file_type": "code", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "paymentmodule", + "id": "backend_src_payment_payment_module_paymentmodule" + }, + { + "label": "PrescriptionsModule", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.module.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "prescriptionsmodule", + "id": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule" + }, + { + "label": "PrismaModule", + "file_type": "code", + "source_file": "backend/src/prisma/prisma.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "prismamodule", + "id": "backend_src_prisma_prisma_module_prismamodule" + }, + { + "label": "SettingsModule", + "file_type": "code", + "source_file": "backend/src/settings/settings.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "settingsmodule", + "id": "backend_src_settings_settings_module_settingsmodule" + }, + { + "label": "SmartAdvisorModule", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "smartadvisormodule", + "id": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule" + }, + { + "label": "TestimonialsModule", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "testimonialsmodule", + "id": "backend_src_testimonials_testimonials_module_testimonialsmodule" + }, + { + "label": "WholesaleModule", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "wholesalemodule", + "id": "backend_src_wholesale_wholesale_module_wholesalemodule" + }, + { + "label": "ReviewsController", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 10, + "community_name": "ReviewsService", + "norm_label": "reviewscontroller", + "id": "backend_src_reviews_reviews_controller_reviewscontroller" + }, + { + "label": "PriceInputProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 104, + "community_name": "Coupons.tsx", + "norm_label": "priceinputprops", + "id": "frontend_admin_panel_src_components_ui_priceinput_priceinputprops" + }, + { + "label": "Coupon", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 104, + "community_name": "Coupons.tsx", + "norm_label": "coupon", + "id": "frontend_admin_panel_src_pages_coupons_coupon" + }, + { + "label": "CouponFormData", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 104, + "community_name": "Coupons.tsx", + "norm_label": "couponformdata", + "id": "frontend_admin_panel_src_pages_coupons_couponformdata" + }, + { + "label": "CouponModalProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L308", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 104, + "community_name": "Coupons.tsx", + "norm_label": "couponmodalprops", + "id": "frontend_admin_panel_src_pages_coupons_couponmodalprops" + }, + { + "label": "CouponTarget", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 104, + "community_name": "Coupons.tsx", + "norm_label": "coupontarget", + "id": "frontend_admin_panel_src_pages_coupons_coupontarget" + }, + { + "label": "FinancialSettings", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L190", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 104, + "community_name": "Coupons.tsx", + "norm_label": "financialsettings", + "id": "frontend_admin_panel_src_types_admin_financialsettings" }, { "label": "CategoryQuery", @@ -3534,595 +323,205 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_admin_categories_service_categoryquery", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "categoryquery" + "community": 108, + "community_name": "PrismaService", + "norm_label": "categoryquery", + "id": "backend_src_admin_categories_service_categoryquery" }, { - "label": "BlogCategory", + "label": "MeliPayamakPattern", "file_type": "code", - "source_file": "frontend/application/components/BlogPage.tsx", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_blogpage_blogcategory", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "blogcategory" - }, - { - "label": "BlogPostItem", - "file_type": "code", - "source_file": "frontend/application/components/BlogPage.tsx", - "source_location": "L34", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_blogpage_blogpostitem", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "blogpostitem" - }, - { - "label": "ProductDetailModalProps", - "file_type": "code", - "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "productdetailmodalprops" - }, - { - "label": "OrderDetailsModalProps", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "orderdetailsmodalprops" - }, - { - "label": "PodcastInlinePlayerProps", - "file_type": "code", - "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", - "source_location": "L19", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayerprops", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "podcastinlineplayerprops" - }, - { - "label": "PodcastPlayerModalProps", - "file_type": "code", - "source_file": "frontend/application/components/PodcastPlayerModal.tsx", - "source_location": "L21", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_podcastplayermodal_podcastplayermodalprops", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "podcastplayermodalprops" - }, - { - "label": "SafeImageProps", - "file_type": "code", - "source_file": "frontend/application/components/SafeImage.tsx", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_safeimage_safeimageprops", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "safeimageprops" - }, - { - "label": "DisplayVideoItem", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L58", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_vetgallery_displayvideoitem", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "displayvideoitem" - }, - { - "label": "TestimonialItem", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L11", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_vetgallery_testimonialitem", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "testimonialitem" - }, - { - "label": "VideoModalPlayerProps", - "file_type": "code", - "source_file": "frontend/application/components/VideoModalPlayer.tsx", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_videomodalplayer_videomodalplayerprops", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "videomodalplayerprops" - }, - { - "label": "Video", - "file_type": "code", - "source_file": "frontend/application/lib/services/videoService.ts", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_videoservice_video", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "video" - }, - { - "label": "MediaController", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller", - "community": 40, - "community_name": "MediaController", - "norm_label": "mediacontroller" - }, - { - "label": "SslController", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_sslcontroller", - "community": 42, - "community_name": "SslController", - "norm_label": "sslcontroller" - }, - { - "label": "SslService", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L23", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice", - "community": 42, - "community_name": "SslController", - "norm_label": "sslservice" - }, - { - "label": "BannersController", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L21", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_banners_banners_controller_bannerscontroller", - "community": 43, - "community_name": "BannersService", - "norm_label": "bannerscontroller" - }, - { - "label": "BannersService", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_banners_banners_service_bannersservice", - "community": 43, - "community_name": "BannersService", - "norm_label": "bannersservice" - }, - { - "label": "TestimonialsController", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": "testimonialscontroller" - }, - { - "label": "MenuGroup", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L49", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar_menugroup", - "community": 46, - "community_name": "api", - "norm_label": "menugroup" - }, - { - "label": "SidebarProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L56", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar_sidebarprops", - "community": 46, - "community_name": "api", - "norm_label": "sidebarprops" - }, - { - "label": "SubMenuItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L42", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar_submenuitem", - "community": 46, - "community_name": "api", - "norm_label": "submenuitem" - }, - { - "label": "LiveMonitoringSummary", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L47", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_topbar_livemonitoringsummary", - "community": 46, - "community_name": "api", - "norm_label": "livemonitoringsummary" - }, - { - "label": "TopbarProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_topbar_topbarprops", - "community": 46, - "community_name": "api", - "norm_label": "topbarprops" - }, - { - "label": "HeroBanner", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L8", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_cms_herobanner", - "community": 46, - "community_name": "api", - "norm_label": "herobanner" - }, - { - "label": "VetTestimonial", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_cms_vettestimonial", - "community": 46, - "community_name": "api", - "norm_label": "vettestimonial" - }, - { - "label": "IngredientsController", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "community": 47, - "community_name": "IngredientsService", - "norm_label": "ingredientscontroller" - }, - { - "label": "IngredientsService", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L6", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice", - "community": 47, - "community_name": "IngredientsService", - "norm_label": "ingredientsservice" - }, - { - "label": "OrderService", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L31", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_services_orderservice_orderservice", - "community": 48, - "community_name": "cartStore.ts", - "norm_label": "orderservice" - }, - { - "label": "CartItem", - "file_type": "code", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_cartstore_cartitem", - "community": 48, - "community_name": "cartStore.ts", - "norm_label": "cartitem" - }, - { - "label": "CartStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L32", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_cartstore_cartstore", - "community": 48, - "community_name": "cartStore.ts", - "norm_label": "cartstore" - }, - { - "label": "Order", - "file_type": "code", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_store_cartstore_order", - "community": 48, - "community_name": "cartStore.ts", - "norm_label": "order" - }, - { - "label": "CmsController", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller", - "community": 5, - "community_name": "CmsController", - "norm_label": "cmscontroller" - }, - { - "label": "CmsService", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice", - "community": 5, - "community_name": "CmsController", - "norm_label": "cmsservice" - }, - { - "label": "CreateHeroBannerDto", - "file_type": "code", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_createherobannerdto", - "community": 5, - "community_name": "CmsController", - "norm_label": "createherobannerdto" - }, - { - "label": "CreateSmartAdvisorRuleDto", - "file_type": "code", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L80", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "community": 5, - "community_name": "CmsController", - "norm_label": "createsmartadvisorruledto" - }, - { - "label": "CreateVetTestimonialDto", - "file_type": "code", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L45", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "community": 5, - "community_name": "CmsController", - "norm_label": "createvettestimonialdto" - }, - { - "label": "BlogsController", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L29", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller", - "community": 51, - "community_name": "BlogsController", - "norm_label": "blogscontroller" - }, - { - "label": "PrescriptionsController", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L27", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": "prescriptionscontroller" - }, - { - "label": "SmartAdvisorController", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": "smartadvisorcontroller" - }, - { - "label": "AuthModule", - "file_type": "code", - "source_file": "backend/src/auth/auth.module.ts", + "source_file": "backend/src/common/services/sms.service.ts", "source_location": "L25", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_auth_auth_module_authmodule", - "community": 54, - "community_name": "UsersService", - "norm_label": "authmodule" + "community": 108, + "community_name": "PrismaService", + "norm_label": "melipayamakpattern", + "id": "backend_src_common_services_sms_service_melipayamakpattern" }, { - "label": "JwtPayload", + "label": "MeliPayamakResponse", "file_type": "code", - "source_file": "backend/src/auth/jwt.strategy.ts", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "melipayamakresponse", + "id": "backend_src_common_services_sms_service_melipayamakresponse" + }, + { + "label": "SendPatternSmsOptions", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "sendpatternsmsoptions", + "id": "backend_src_common_services_sms_service_sendpatternsmsoptions" + }, + { + "label": "SmsConfig", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "smsconfig", + "id": "backend_src_common_services_sms_service_smsconfig" + }, + { + "label": "SmsLogQuery", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "smslogquery", + "id": "backend_src_common_services_sms_service_smslogquery" + }, + { + "label": "CreateContactSubmissionDto", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "createcontactsubmissiondto", + "id": "backend_src_contact_contact_service_createcontactsubmissiondto" + }, + { + "label": "UpdateContactInfoItemDto", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "updatecontactinfoitemdto", + "id": "backend_src_contact_contact_service_updatecontactinfoitemdto" + }, + { + "label": "MenuType", + "file_type": "code", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "menutype", + "id": "backend_src_menu_menu_service_menutype" + }, + { + "label": "ClientMetadata", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 61, + "community_name": "payment.service.ts", + "norm_label": "clientmetadata", + "id": "backend_src_payment_payment_service_clientmetadata" + }, + { + "label": "EBankCheckoutListFilter", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "ebankcheckoutlistfilter", + "id": "backend_src_payment_zibal_ebank_service_ebankcheckoutlistfilter" + }, + { + "label": "EBankCheckoutOptions", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "ebankcheckoutoptions", + "id": "backend_src_payment_zibal_ebank_service_ebankcheckoutoptions" + }, + { + "label": "EBankIdentifiedPaymentFilter", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "ebankidentifiedpaymentfilter", + "id": "backend_src_payment_zibal_ebank_service_ebankidentifiedpaymentfilter" + }, + { + "label": "EBankStatementFilter", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "ebankstatementfilter", + "id": "backend_src_payment_zibal_ebank_service_ebankstatementfilter" + }, + { + "label": "PrismaService", + "file_type": "code", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "prismaservice", + "id": "backend_src_prisma_prisma_service_prismaservice" + }, + { + "label": "ScientificTermData", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", "source_location": "L7", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_auth_jwt_strategy_jwtpayload", - "community": 54, - "community_name": "UsersService", - "norm_label": "jwtpayload" - }, - { - "label": "JwtStrategy", - "file_type": "code", - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L15", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_auth_jwt_strategy_jwtstrategy", - "community": 54, - "community_name": "UsersService", - "norm_label": "jwtstrategy" - }, - { - "label": "AddressDto", - "file_type": "code", - "source_file": "backend/src/users/dto/address.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_users_dto_address_dto_addressdto", - "community": 54, - "community_name": "UsersService", - "norm_label": "addressdto" - }, - { - "label": "UpdateProfileDto", - "file_type": "code", - "source_file": "backend/src/users/dto/update-profile.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "community": 54, - "community_name": "UsersService", - "norm_label": "updateprofiledto" - }, - { - "label": "UsersController", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L43", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller", - "community": 54, - "community_name": "UsersService", - "norm_label": "userscontroller" - }, - { - "label": "UsersModule", - "file_type": "code", - "source_file": "backend/src/users/users.module.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_users_users_module_usersmodule", - "community": 54, - "community_name": "UsersService", - "norm_label": "usersmodule" + "community": 2, + "community_name": "SmsService", + "norm_label": "scientifictermdata", + "id": "backend_src_settings_settings_service_scientifictermdata" }, { "label": "UserAddressInput", @@ -4132,374 +531,62 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_users_users_service_useraddressinput", - "community": 54, - "community_name": "UsersService", - "norm_label": "useraddressinput" + "community": 108, + "community_name": "PrismaService", + "norm_label": "useraddressinput", + "id": "backend_src_users_users_service_useraddressinput" }, { - "label": "UsersService", + "label": "ConfirmModalProps", "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice", - "community": 54, - "community_name": "UsersService", - "norm_label": "usersservice" - }, - { - "label": "IconPickerModalProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", - "source_location": "L44", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_iconpickermodal_iconpickermodalprops", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "iconpickermodalprops" - }, - { - "label": "ImagePreviewModalProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodalprops", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "imagepreviewmodalprops" - }, - { - "label": "ToggleSwitchProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx", + "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", "source_location": "L3", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitchprops", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "toggleswitchprops" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "confirmmodalprops", + "id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops" }, { - "label": "ProductItem", + "label": "Media", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L13", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_prescriptionsmanager_productitem", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "productitem" - }, - { - "label": "AppSitePage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L227", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_appsitepage", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "appsitepage" - }, - { - "label": "PageSection", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L219", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_pagesection", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "pagesection" - }, - { - "label": "SectionField", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L211", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_sectionfield", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "sectionfield" - }, - { - "label": "BadgeProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_badge_badgeprops", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "badgeprops" - }, - { - "label": "BadgeVariant", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", - "source_location": "L3", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_badge_badgevariant", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "badgevariant" - }, - { - "label": "MonitoringStats", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_monitoringpage_monitoringstats", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "monitoringstats" - }, - { - "label": "Order", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L67", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_order", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "order" - }, - { - "label": "OrderItem", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L38", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_orderitem", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "orderitem" - }, - { - "label": "PaymentTx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L54", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_paymenttx", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "paymenttx" - }, - { - "label": "UserRecord", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L26", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_users_userrecord", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "userrecord" - }, - { - "label": "PetSummary", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L61", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_petsummary", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "petsummary" - }, - { - "label": "UserAddress", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L49", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_useraddress", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "useraddress" - }, - { - "label": "ContactController", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L17", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_contact_contact_controller_contactcontroller", - "community": 58, - "community_name": "ContactService", - "norm_label": "contactcontroller" - }, - { - "label": "ContactService", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L22", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice", - "community": 58, - "community_name": "ContactService", - "norm_label": "contactservice" - }, - { - "label": "AdminUpdateTicketDto", - "file_type": "code", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L82", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "adminupdateticketdto" - }, - { - "label": "CreateTicketDto", - "file_type": "code", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", "source_location": "L10", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "createticketdto" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "media", + "id": "frontend_admin_panel_src_components_ui_mediaselector_media" }, { - "label": "ReplyTicketDto", + "label": "MediaSelectorProps", "file_type": "code", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L59", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "replyticketdto" - }, - { - "label": "TicketQueryDto", - "file_type": "code", - "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "ticketquerydto" - }, - { - "label": "TicketsController", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L33", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "ticketscontroller" - }, - { - "label": "TicketsModule", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_module_ticketsmodule", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "ticketsmodule" - }, - { - "label": "TicketsService", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", "source_location": "L18", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "ticketsservice" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "mediaselectorprops", + "id": "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops" }, { - "label": "ActiveStates", + "label": "PaginationProps", "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", - "source_location": "L61", + "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", + "source_location": "L4", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_richtexteditor_activestates", - "community": 60, - "community_name": "Blogs.tsx", - "norm_label": "activestates" - }, - { - "label": "RichTextEditorProps", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", - "source_location": "L33", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditorprops", - "community": 60, - "community_name": "Blogs.tsx", - "norm_label": "richtexteditorprops" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "paginationprops", + "id": "frontend_admin_panel_src_components_ui_pagination_paginationprops" }, { "label": "AuthorUser", @@ -4509,10 +596,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_blogs_authoruser", - "community": 60, - "community_name": "Blogs.tsx", - "norm_label": "authoruser" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "authoruser", + "id": "frontend_admin_panel_src_pages_blogs_authoruser" }, { "label": "BlogCategory", @@ -4522,10 +609,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_blogs_blogcategory", - "community": 60, - "community_name": "Blogs.tsx", - "norm_label": "blogcategory" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "blogcategory", + "id": "frontend_admin_panel_src_pages_blogs_blogcategory" }, { "label": "BlogPost", @@ -4535,10 +622,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_blogs_blogpost", - "community": 60, - "community_name": "Blogs.tsx", - "norm_label": "blogpost" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "blogpost", + "id": "frontend_admin_panel_src_pages_blogs_blogpost" }, { "label": "BlogTag", @@ -4548,10 +635,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_blogs_blogtag", - "community": 60, - "community_name": "Blogs.tsx", - "norm_label": "blogtag" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "blogtag", + "id": "frontend_admin_panel_src_pages_blogs_blogtag" }, { "label": "ProductSimple", @@ -4561,101 +648,257 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_blogs_productsimple", - "community": 60, - "community_name": "Blogs.tsx", - "norm_label": "productsimple" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "productsimple", + "id": "frontend_admin_panel_src_pages_blogs_productsimple" }, { - "label": "AdminTransactionFilterDto", + "label": "Category", "file_type": "code", - "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "admintransactionfilterdto" - }, - { - "label": "CreateEBankCheckoutDto", - "file_type": "code", - "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", - "source_location": "L10", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "createebankcheckoutdto" - }, - { - "label": "InitiatePaymentDto", - "file_type": "code", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "initiatepaymentdto" - }, - { - "label": "InitiateWalletTopupDto", - "file_type": "code", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", "source_location": "L16", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "initiatewallettopupdto" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "category", + "id": "frontend_admin_panel_src_pages_categories_category" }, { - "label": "GetProductsDto", + "label": "Pet", "file_type": "code", - "source_file": "backend/src/products/dto/get-products.dto.ts", - "source_location": "L5", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L12", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_products_dto_get_products_dto_getproductsdto", - "community": 62, - "community_name": "ProductsService", - "norm_label": "getproductsdto" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "pet", + "id": "frontend_admin_panel_src_pages_pets_pet" }, { - "label": "ProductsModule", + "label": "Category", "file_type": "code", - "source_file": "backend/src/products/products.module.ts", - "source_location": "L9", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L15", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_products_products_module_productsmodule", - "community": 62, - "community_name": "ProductsService", - "norm_label": "productsmodule" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "category", + "id": "frontend_admin_panel_src_pages_products_category" }, { - "label": "ProductsService", + "label": "Product", "file_type": "code", - "source_file": "backend/src/products/products.service.ts", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "product", + "id": "frontend_admin_panel_src_pages_products_product" + }, + { + "label": "DoctorOption", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "doctoroption", + "id": "frontend_admin_panel_src_pages_videos_doctoroption" + }, + { + "label": "Video", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "video", + "id": "frontend_admin_panel_src_pages_videos_video" + }, + { + "label": "WholesaleRequest", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", "source_location": "L8", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_products_products_service_productsservice", - "community": 62, - "community_name": "ProductsService", - "norm_label": "productsservice" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "wholesalerequest", + "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest" + }, + { + "label": "Banner", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "banner", + "id": "frontend_admin_panel_src_types_admin_banner" + }, + { + "label": "Ingredient", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L111", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "ingredient", + "id": "frontend_admin_panel_src_types_admin_ingredient" + }, + { + "label": "Testimonial", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L97", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "testimonial", + "id": "frontend_admin_panel_src_types_admin_testimonial" + }, + { + "label": "UpdateReviewDto", + "file_type": "code", + "source_file": "backend/src/reviews/dto/update-review.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 113, + "community_name": "CreateReviewDto", + "norm_label": "updatereviewdto", + "id": "backend_src_reviews_dto_update_review_dto_updatereviewdto" + }, + { + "label": "ReviewsModule", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "reviewsmodule", + "id": "backend_src_reviews_reviews_module_reviewsmodule" + }, + { + "label": "ReviewsService", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 10, + "community_name": "ReviewsService", + "norm_label": "reviewsservice", + "id": "backend_src_reviews_reviews_service_reviewsservice" + }, + { + "label": "AppController", + "file_type": "code", + "source_file": "backend/src/app.controller.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 114, + "community_name": "AppService", + "norm_label": "appcontroller", + "id": "backend_src_app_controller_appcontroller" + }, + { + "label": "AppService", + "file_type": "code", + "source_file": "backend/src/app.service.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 114, + "community_name": "AppService", + "norm_label": "appservice", + "id": "backend_src_app_service_appservice" + }, + { + "label": "BlogsService", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": "blogsservice", + "id": "backend_src_admin_blogs_service_blogsservice" + }, + { + "label": "AdminController", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": "admincontroller", + "id": "backend_src_admin_admin_controller_admincontroller" + }, + { + "label": "AdminService", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 76, + "community_name": "AdminService", + "norm_label": "adminservice", + "id": "backend_src_admin_admin_service_adminservice" + }, + { + "label": "CouponInput", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "couponinput", + "id": "backend_src_admin_admin_service_couponinput" }, { "label": "AdminQueryDto", @@ -4665,452 +908,140 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_admin_dto_admin_query_dto_adminquerydto", "community": 66, - "community_name": "AdminQueryDto", - "norm_label": "adminquerydto" + "community_name": "ApiOperation", + "norm_label": "adminquerydto", + "id": "backend_src_admin_dto_admin_query_dto_adminquerydto" }, { - "label": "PetsController", + "label": "ProductDto", "file_type": "code", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_pets_controller_petscontroller", - "community": 67, - "community_name": "PetsController", - "norm_label": "petscontroller" - }, - { - "label": "PetsService", - "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_pets_service_petsservice", - "community": 67, - "community_name": "PetsController", - "norm_label": "petsservice" - }, - { - "label": "CreatePetDto", - "file_type": "code", - "source_file": "backend/src/pets/dto/create-pet.dto.ts", + "source_file": "backend/src/admin/dto/product.dto.ts", "source_location": "L10", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto_createpetdto", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "createpetdto" + "community": 62, + "community_name": "ProductDto", + "norm_label": "productdto", + "id": "backend_src_admin_dto_product_dto_productdto" }, { - "label": "UpdatePetDto", + "label": "CreateUserDto", "file_type": "code", - "source_file": "backend/src/pets/dto/update-pet.dto.ts", - "source_location": "L4", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L11", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_pets_dto_update_pet_dto_updatepetdto", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "updatepetdto" + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "createuserdto", + "id": "backend_src_admin_dto_user_dto_createuserdto" }, { - "label": "PetsModule", + "label": "UpdateUserDto", "file_type": "code", - "source_file": "backend/src/pets/pets.module.ts", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L52", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "updateuserdto", + "id": "backend_src_admin_dto_user_dto_updateuserdto" + }, + { + "label": "AppModule", + "file_type": "code", + "source_file": "backend/src/app.module.ts", + "source_location": "L89", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "appmodule", + "id": "backend_src_app_module_appmodule" + }, + { + "label": "EnvironmentVariables", + "file_type": "code", + "source_file": "backend/src/common/env.validation.ts", "source_location": "L9", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_pets_pets_module_petsmodule", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "petsmodule" + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "environmentvariables", + "id": "backend_src_common_env_validation_environmentvariables" }, { - "label": "HealthLogInput", + "label": "CustomHttpExceptionFilter", "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L15", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L13", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_pets_pets_service_healthloginput", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "healthloginput" + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "customhttpexceptionfilter", + "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter" }, { - "label": "PetsService", + "label": "PrismaExceptionFilter", "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L23", + "source_file": "backend/src/common/filters/prisma-exception.filter.ts", + "source_location": "L12", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "petsservice" + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "prismaexceptionfilter", + "id": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter" }, { - "label": "ReminderInput", + "label": "DecimalInterceptor", "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L8", + "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", + "source_location": "L12", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "backend_src_pets_pets_service_reminderinput", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "reminderinput" + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "decimalinterceptor", + "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor" }, { - "label": "PageMetadataOptions", + "label": "ApiErrorResponse", "file_type": "code", - "source_file": "frontend/application/lib/seo.ts", - "source_location": "L160", + "source_file": "backend/src/common/schemas/error-response.schema.ts", + "source_location": "L14", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_seo_pagemetadataoptions", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "pagemetadataoptions" + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "apierrorresponse", + "id": "backend_src_common_schemas_error_response_schema_apierrorresponse" }, { - "label": "SeoConfig", + "label": "ErrorDetailField", "file_type": "code", - "source_file": "frontend/application/lib/seo.ts", + "source_file": "backend/src/common/schemas/error-response.schema.ts", "source_location": "L3", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_seo_seoconfig", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "seoconfig" - }, - { - "label": "WikiController", - "file_type": "code", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_wikicontroller", - "community": 74, - "community_name": "WikiController", - "norm_label": "wikicontroller" - }, - { - "label": "CreateHealthLogDto", - "file_type": "code", - "source_file": "backend/src/pets/dto/create-health-log.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "community": 75, - "community_name": "PetsController", - "norm_label": "createhealthlogdto" - }, - { - "label": "CreateReminderDto", - "file_type": "code", - "source_file": "backend/src/pets/dto/create-reminder.dto.ts", - "source_location": "L4", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "community": 75, - "community_name": "PetsController", - "norm_label": "createreminderdto" - }, - { - "label": "PetsController", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L55", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller", - "community": 75, - "community_name": "PetsController", - "norm_label": "petscontroller" - }, - { - "label": "SeoController", - "file_type": "code", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_seo_seo_controller_seocontroller", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": "seocontroller" - }, - { - "label": "SeoModule", - "file_type": "code", - "source_file": "backend/src/seo/seo.module.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_seo_seo_module_seomodule", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": "seomodule" - }, - { - "label": "SeoService", - "file_type": "code", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_seo_seo_service_seoservice", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": "seoservice" - }, - { - "label": "AdminModule", - "file_type": "code", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L44", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_admin_module_adminmodule", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "adminmodule" - }, - { - "label": "MediaService", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "mediaservice" - }, - { - "label": "ReportsController", - "file_type": "code", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_reports_controller_reportscontroller", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "reportscontroller" - }, - { - "label": "ReportsService", - "file_type": "code", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_reports_service_reportsservice", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "reportsservice" - }, - { - "label": "SslCertInfo", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L7", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslcertinfo", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "sslcertinfo" - }, - { - "label": "WikiService", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_service_wikiservice", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "wikiservice" - }, - { - "label": "RedisModule", - "file_type": "code", - "source_file": "backend/src/redis/redis.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_redis_redis_module_redismodule", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "redismodule" - }, - { - "label": "GatewayHealthResult", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L35", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", - "community": 86, - "community_name": "zibal.service.ts", - "norm_label": "gatewayhealthresult" - }, - { - "label": "IPaymentGateway", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L48", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "community": 86, - "community_name": "zibal.service.ts", - "norm_label": "ipaymentgateway" - }, - { - "label": "PaymentInquiryResult", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", - "community": 86, - "community_name": "zibal.service.ts", - "norm_label": "paymentinquiryresult" - }, - { - "label": "PaymentRequestOptions", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L1", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", - "community": 86, - "community_name": "zibal.service.ts", - "norm_label": "paymentrequestoptions" - }, - { - "label": "PaymentRequestResult", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", - "community": 86, - "community_name": "zibal.service.ts", - "norm_label": "paymentrequestresult" - }, - { - "label": "PaymentVerifyResult", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", - "community": 86, - "community_name": "zibal.service.ts", - "norm_label": "paymentverifyresult" - }, - { - "label": "ZibalInquiryResponse", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalinquiryresponse", - "community": 86, - "community_name": "zibal.service.ts", - "norm_label": "zibalinquiryresponse" - }, - { - "label": "ZibalRequestResponse", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalrequestresponse", - "community": 86, - "community_name": "zibal.service.ts", - "norm_label": "zibalrequestresponse" - }, - { - "label": "ZibalVerifyResponse", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalverifyresponse", - "community": 86, - "community_name": "zibal.service.ts", - "norm_label": "zibalverifyresponse" - }, - { - "label": "AuthModalProps", - "file_type": "code", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L25", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_authmodal_authmodalprops", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "authmodalprops" + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "errordetailfield", + "id": "backend_src_common_schemas_error_response_schema_errordetailfield" }, { "label": "BrandLogoProps", @@ -5120,10 +1051,49 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_components_brandlogo_brandlogoprops", - "community": 88, + "community": 90, "community_name": "useSettingsStore", - "norm_label": "brandlogoprops" + "norm_label": "brandlogoprops", + "id": "frontend_application_components_brandlogo_brandlogoprops" + }, + { + "label": "SmartAdvisorProps", + "file_type": "code", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "smartadvisorprops", + "id": "frontend_application_components_smartadvisor_smartadvisorprops" + }, + { + "label": "ScientificTerm", + "file_type": "code", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "scientificterm", + "id": "frontend_application_lib_store_settingsstore_scientificterm" + }, + { + "label": "SettingsStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "settingsstore", + "id": "frontend_application_lib_store_settingsstore_settingsstore" }, { "label": "UIState", @@ -5133,10 +1103,10 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_store_uistore_uistate", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "uistate" + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "uistate", + "id": "frontend_application_lib_store_uistore_uistate" }, { "label": "NavigationTarget", @@ -5146,283 +1116,218 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_types_navigationtarget", - "community": 88, + "community": 90, "community_name": "useSettingsStore", - "norm_label": "navigationtarget" + "norm_label": "navigationtarget", + "id": "frontend_application_lib_types_navigationtarget" }, { - "label": "HomeClientProps", + "label": "ErrorBoundary", "file_type": "code", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L20", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L15", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_app_homeclient_homeclientprops", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "homeclientprops" + "community": 140, + "community_name": "ErrorBoundary", + "norm_label": "errorboundary", + "id": "frontend_application_components_errorboundary_errorboundary" }, { - "label": "BannerPlacementProps", + "label": "Props", "file_type": "code", - "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_file": "frontend/application/components/ErrorBoundary.tsx", "source_location": "L6", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_components_bannerplacement_bannerplacementprops", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "bannerplacementprops" + "community": 140, + "community_name": "ErrorBoundary", + "norm_label": "props", + "id": "frontend_application_components_errorboundary_props" }, { - "label": "PetType", + "label": "State", "file_type": "code", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L8", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L10", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_data_products_pettype", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "pettype" + "community": 140, + "community_name": "ErrorBoundary", + "norm_label": "state", + "id": "frontend_application_components_errorboundary_state" }, { - "label": "B2BInquiry", + "label": "RevalidationService", "file_type": "code", - "source_file": "frontend/application/lib/types.ts", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": "revalidationservice", + "id": "backend_src_common_revalidation_revalidation_service_revalidationservice" + }, + { + "label": "PatternItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 149, + "community_name": "SmsSettingsPage.tsx", + "norm_label": "patternitem", + "id": "frontend_admin_panel_src_pages_smssettingspage_patternitem" + }, + { + "label": "SmsConfigState", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L46", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 149, + "community_name": "SmsSettingsPage.tsx", + "norm_label": "smsconfigstate", + "id": "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate" + }, + { + "label": "SmsLogItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", "source_location": "L67", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_types_b2binquiry", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "b2binquiry" + "community": 149, + "community_name": "SmsSettingsPage.tsx", + "norm_label": "smslogitem", + "id": "frontend_admin_panel_src_pages_smssettingspage_smslogitem" }, { - "label": "Banner", + "label": "SmsLogStats", "file_type": "code", - "source_file": "frontend/application/lib/types.ts", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 149, + "community_name": "SmsSettingsPage.tsx", + "norm_label": "smslogstats", + "id": "frontend_admin_panel_src_pages_smssettingspage_smslogstats" + }, + { + "label": "MenuGroup", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "menugroup", + "id": "frontend_admin_panel_src_components_sidebar_menugroup" + }, + { + "label": "SidebarProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L56", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "sidebarprops", + "id": "frontend_admin_panel_src_components_sidebar_sidebarprops" + }, + { + "label": "SubMenuItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "submenuitem", + "id": "frontend_admin_panel_src_components_sidebar_submenuitem" + }, + { + "label": "LiveMonitoringSummary", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L47", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "livemonitoringsummary", + "id": "frontend_admin_panel_src_components_topbar_livemonitoringsummary" + }, + { + "label": "TopbarProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "topbarprops", + "id": "frontend_admin_panel_src_components_topbar_topbarprops" + }, + { + "label": "ApiErrorPayload", + "file_type": "code", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "apierrorpayload", + "id": "frontend_admin_panel_src_services_api_apierrorpayload" + }, + { + "label": "AdminLoginPayload", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "adminloginpayload", + "id": "frontend_admin_panel_src_types_admin_adminloginpayload" + }, + { + "label": "AdminUser", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", "source_location": "L1", "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_application_lib_types_banner", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "banner" - }, - { - "label": "HomeApiResponse", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L102", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_homeapiresponse", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "homeapiresponse" - }, - { - "label": "NavigationHandler", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L111", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_navigationhandler", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "navigationhandler" - }, - { - "label": "PartnerAccount", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L82", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_partneraccount", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "partneraccount" - }, - { - "label": "Prescription", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L55", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_prescription", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "prescription" - }, - { - "label": "SmartAdvisorRule", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_smartadvisorrule", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "smartadvisorrule" - }, - { - "label": "Testimonial", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L28", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_lib_types_testimonial", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "testimonial" - }, - { - "label": "CreateOrderDto", - "file_type": "code", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L24", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_createorderdto", - "community": 92, - "community_name": "OrdersService", - "norm_label": "createorderdto" - }, - { - "label": "OrderItemDto", - "file_type": "code", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L12", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_orderitemdto", - "community": 92, - "community_name": "OrdersService", - "norm_label": "orderitemdto" - }, - { - "label": "OrdersController", - "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L54", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller", - "community": 92, - "community_name": "OrdersService", - "norm_label": "orderscontroller" - }, - { - "label": "OrdersService", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L14", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice", - "community": 92, - "community_name": "OrdersService", - "norm_label": "ordersservice" - }, - { - "label": "BlogPostClientProps", - "file_type": "code", - "source_file": "frontend/application/components/BlogPostClient.tsx", - "source_location": "L20", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "frontend_application_components_blogpostclient_blogpostclientprops", - "community": 95, - "community_name": "blog/[slug]/page.tsx", - "norm_label": "blogpostclientprops" - }, - { - "label": "BlogsController", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L30", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_blogscontroller", - "community": 99, - "community_name": "BlogsController", - "norm_label": "blogscontroller" - }, - { - "label": "HomeController", - "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L16", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_home_home_controller_homecontroller", - "community": 99, - "community_name": "BlogsController", - "norm_label": "homecontroller" - }, - { - "label": "HomeModule", - "file_type": "code", - "source_file": "backend/src/home/home.module.ts", - "source_location": "L9", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_home_home_module_homemodule", - "community": 99, - "community_name": "BlogsController", - "norm_label": "homemodule" - }, - { - "label": "HomeService", - "file_type": "code", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L5", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_home_home_service_homeservice", - "community": 99, - "community_name": "BlogsController", - "norm_label": "homeservice" - }, - { - "label": "WikiController", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L18", - "_callable": true, - "_callable_class": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_wikicontroller", - "community": 99, - "community_name": "BlogsController", - "norm_label": "wikicontroller" + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "adminuser", + "id": "frontend_admin_panel_src_types_admin_adminuser" }, { "label": "ApiResponse", @@ -5432,10 +1337,4118 @@ "_callable": true, "_callable_class": true, "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin_apiresponse", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "apiresponse", + "id": "frontend_admin_panel_src_types_admin_apiresponse" + }, + { + "label": "AuthResponseData", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "authresponsedata", + "id": "frontend_admin_panel_src_types_admin_authresponsedata" + }, + { + "label": "AuthState", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "authstate", + "id": "frontend_admin_panel_src_types_admin_authstate" + }, + { + "label": "B2BInquiry", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L151", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "b2binquiry", + "id": "frontend_admin_panel_src_types_admin_b2binquiry" + }, + { + "label": "PartnerAccount", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L166", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "partneraccount", + "id": "frontend_admin_panel_src_types_admin_partneraccount" + }, + { + "label": "Product", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L206", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "product", + "id": "frontend_admin_panel_src_types_admin_product" + }, + { + "label": "SendOtpPayload", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "sendotppayload", + "id": "frontend_admin_panel_src_types_admin_sendotppayload" + }, + { + "label": "SeoSettings", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L178", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "seosettings", + "id": "frontend_admin_panel_src_types_admin_seosettings" + }, + { + "label": "SmartAdvisorRule", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L83", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "smartadvisorrule", + "id": "frontend_admin_panel_src_types_admin_smartadvisorrule" + }, + { + "label": "SystemSettings", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L198", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "systemsettings", + "id": "frontend_admin_panel_src_types_admin_systemsettings" + }, + { + "label": "VerifyOtpPayload", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "verifyotppayload", + "id": "frontend_admin_panel_src_types_admin_verifyotppayload" + }, + { + "label": "CouponTargetInput", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "coupontargetinput", + "id": "backend_src_admin_admin_service_coupontargetinput" + }, + { + "label": "PaginationQuery", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "paginationquery", + "id": "backend_src_admin_admin_service_paginationquery" + }, + { + "label": "AdminLoginInput", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "adminlogininput", + "id": "backend_src_auth_auth_service_adminlogininput" + }, + { + "label": "AuthService", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L37", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "authservice", + "id": "backend_src_auth_auth_service_authservice" + }, + { + "label": "LoginInput", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "logininput", + "id": "backend_src_auth_auth_service_logininput" + }, + { + "label": "RegisterInput", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "registerinput", + "id": "backend_src_auth_auth_service_registerinput" + }, + { + "label": "RevalidationModule", + "file_type": "code", + "source_file": "backend/src/common/revalidation/revalidation.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": "revalidationmodule", + "id": "backend_src_common_revalidation_revalidation_module_revalidationmodule" + }, + { + "label": "RedisModule", + "file_type": "code", + "source_file": "backend/src/redis/redis.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "redismodule", + "id": "backend_src_redis_redis_module_redismodule" + }, + { + "label": "RedisService", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": "redisservice", + "id": "backend_src_redis_redis_service_redisservice" + }, + { + "label": "InitiatePaymentDto", + "file_type": "code", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 129, + "community_name": "InitiatePaymentDto", + "norm_label": "initiatepaymentdto", + "id": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto" + }, + { + "label": "InitiateWalletTopupDto", + "file_type": "code", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 129, + "community_name": "InitiatePaymentDto", + "norm_label": "initiatewallettopupdto", + "id": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto" + }, + { + "label": "DoctorsController", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 16, + "community_name": "DoctorQueryDto", + "norm_label": "doctorscontroller", + "id": "backend_src_doctors_doctors_controller_doctorscontroller" + }, + { + "label": "DoctorsService", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 16, + "community_name": "DoctorQueryDto", + "norm_label": "doctorsservice", + "id": "backend_src_doctors_doctors_service_doctorsservice" + }, + { + "label": "DoctorQueryDto", + "file_type": "code", + "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 16, + "community_name": "DoctorQueryDto", + "norm_label": "doctorquerydto", + "id": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto" + }, + { + "label": "PaginatedResponse", + "file_type": "code", + "source_file": "backend/src/common/schemas/paginated-response.schema.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 169, + "community_name": "paginated-response.schema.ts", + "norm_label": "paginatedresponse", + "id": "backend_src_common_schemas_paginated_response_schema_paginatedresponse" + }, + { + "label": "PaginationMeta", + "file_type": "code", + "source_file": "backend/src/common/schemas/paginated-response.schema.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 169, + "community_name": "paginated-response.schema.ts", + "norm_label": "paginationmeta", + "id": "backend_src_common_schemas_paginated_response_schema_paginationmeta" + }, + { + "label": "AddressModalProps", + "file_type": "code", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "addressmodalprops", + "id": "frontend_application_components_addressmodal_addressmodalprops" + }, + { + "label": "AuthModalProps", + "file_type": "code", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": "authmodalprops", + "id": "frontend_application_components_authmodal_authmodalprops" + }, + { + "label": "BackButtonProps", + "file_type": "code", + "source_file": "frontend/application/components/BackButton.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "backbuttonprops", + "id": "frontend_application_components_backbutton_backbuttonprops" + }, + { + "label": "DeleteConfirmModalProps", + "file_type": "code", + "source_file": "frontend/application/components/DeleteConfirmModal.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "deleteconfirmmodalprops", + "id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops" + }, + { + "label": "HeaderButtonProps", + "file_type": "code", + "source_file": "frontend/application/components/HeaderButton.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "headerbuttonprops", + "id": "frontend_application_components_headerbutton_headerbuttonprops" + }, + { + "label": "SearchableSelectProps", + "file_type": "code", + "source_file": "frontend/application/components/SearchableSelect.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "searchableselectprops", + "id": "frontend_application_components_searchableselect_searchableselectprops" + }, + { + "label": "TopUpModalProps", + "file_type": "code", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "topupmodalprops", + "id": "frontend_application_components_topupmodal_topupmodalprops" + }, + { + "label": "CreateTicketPayload", + "file_type": "code", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "createticketpayload", + "id": "frontend_application_lib_services_ticketservice_createticketpayload" + }, + { + "label": "Ticket", + "file_type": "code", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "ticket", + "id": "frontend_application_lib_services_ticketservice_ticket" + }, + { + "label": "TicketMessage", + "file_type": "code", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "ticketmessage", + "id": "frontend_application_lib_services_ticketservice_ticketmessage" + }, + { + "label": "Address", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "address", + "id": "frontend_application_lib_store_userstore_address" + }, + { + "label": "BlogsModule", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", "community": 99, "community_name": "BlogsController", - "norm_label": "apiresponse" + "norm_label": "blogsmodule", + "id": "backend_src_blogs_blogs_module_blogsmodule" + }, + { + "label": "BlogFilterDto", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "blogfilterdto", + "id": "backend_src_blogs_blogs_service_blogfilterdto" + }, + { + "label": "BlogsService", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": "blogsservice", + "id": "backend_src_blogs_blogs_service_blogsservice" + }, + { + "label": "PaginationDto", + "file_type": "code", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "paginationdto", + "id": "backend_src_common_dto_pagination_dto_paginationdto" + }, + { + "label": "SortOrder", + "file_type": "code", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "sortorder", + "id": "backend_src_common_dto_pagination_dto_sortorder" + }, + { + "label": "ValidateCouponDto", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "validatecoupondto", + "id": "backend_src_orders_orders_controller_validatecoupondto" + }, + { + "label": "OrdersModule", + "file_type": "code", + "source_file": "backend/src/orders/orders.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "ordersmodule", + "id": "backend_src_orders_orders_module_ordersmodule" + }, + { + "label": "JwtAuthGuard", + "file_type": "code", + "source_file": "backend/src/auth/jwt-auth.guard.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 18, + "community_name": "JwtAuthGuard", + "norm_label": "jwtauthguard", + "id": "backend_src_auth_jwt_auth_guard_jwtauthguard" + }, + { + "label": "RequestWithUser", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 18, + "community_name": "JwtAuthGuard", + "norm_label": "requestwithuser", + "id": "backend_src_common_guards_roles_guard_requestwithuser" + }, + { + "label": "RolesGuard", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 18, + "community_name": "JwtAuthGuard", + "norm_label": "rolesguard", + "id": "backend_src_common_guards_roles_guard_rolesguard" + }, + { + "label": "UserReqPayload", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 18, + "community_name": "JwtAuthGuard", + "norm_label": "userreqpayload", + "id": "backend_src_prescriptions_prescriptions_controller_userreqpayload" + }, + { + "label": "MetricsController", + "file_type": "code", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 184, + "community_name": "MetricsController", + "norm_label": "metricscontroller", + "id": "backend_src_common_metrics_controller_metricscontroller" + }, + { + "label": "CreateBlogDto", + "file_type": "code", + "source_file": "backend/src/blogs/dto/create-blog.dto.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 188, + "community_name": "update-blog.dto.ts", + "norm_label": "createblogdto", + "id": "backend_src_blogs_dto_create_blog_dto_createblogdto" + }, + { + "label": "UpdateBlogDto", + "file_type": "code", + "source_file": "backend/src/blogs/dto/update-blog.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 188, + "community_name": "update-blog.dto.ts", + "norm_label": "updateblogdto", + "id": "backend_src_blogs_dto_update_blog_dto_updateblogdto" + }, + { + "label": "CreateHomeDto", + "file_type": "code", + "source_file": "backend/src/home/dto/create-home.dto.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 189, + "community_name": "update-home.dto.ts", + "norm_label": "createhomedto", + "id": "backend_src_home_dto_create_home_dto_createhomedto" + }, + { + "label": "UpdateHomeDto", + "file_type": "code", + "source_file": "backend/src/home/dto/update-home.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 189, + "community_name": "update-home.dto.ts", + "norm_label": "updatehomedto", + "id": "backend_src_home_dto_update_home_dto_updatehomedto" + }, + { + "label": "GetProductsDto", + "file_type": "code", + "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": "getproductsdto", + "id": "backend_src_products_dto_get_products_dto_getproductsdto" + }, + { + "label": "ProductsController", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": "productscontroller", + "id": "backend_src_products_products_controller_productscontroller" + }, + { + "label": "ProductsModule", + "file_type": "code", + "source_file": "backend/src/products/products.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": "productsmodule", + "id": "backend_src_products_products_module_productsmodule" + }, + { + "label": "ProductsService", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": "productsservice", + "id": "backend_src_products_products_service_productsservice" + }, + { + "label": "CreateWikiDto", + "file_type": "code", + "source_file": "backend/src/wiki/dto/create-wiki.dto.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 190, + "community_name": "update-wiki.dto.ts", + "norm_label": "createwikidto", + "id": "backend_src_wiki_dto_create_wiki_dto_createwikidto" + }, + { + "label": "UpdateWikiDto", + "file_type": "code", + "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 190, + "community_name": "update-wiki.dto.ts", + "norm_label": "updatewikidto", + "id": "backend_src_wiki_dto_update_wiki_dto_updatewikidto" + }, + { + "label": "SelectOption", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 196, + "community_name": "Select.tsx", + "norm_label": "selectoption", + "id": "frontend_admin_panel_src_components_ui_select_selectoption" + }, + { + "label": "SelectProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 196, + "community_name": "Select.tsx", + "norm_label": "selectprops", + "id": "frontend_admin_panel_src_components_ui_select_selectprops" + }, + { + "label": "AuthController", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 35, + "community_name": "AuthController", + "norm_label": "authcontroller", + "id": "backend_src_auth_auth_controller_authcontroller" + }, + { + "label": "AdminLoginDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/admin-login.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "adminlogindto", + "id": "backend_src_auth_dto_admin_login_dto_adminlogindto" + }, + { + "label": "LoginDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/login.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "logindto", + "id": "backend_src_auth_dto_login_dto_logindto" + }, + { + "label": "RegisterDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/register.dto.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "registerdto", + "id": "backend_src_auth_dto_register_dto_registerdto" + }, + { + "label": "SendOtpDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/send-otp.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "sendotpdto", + "id": "backend_src_auth_dto_send_otp_dto_sendotpdto" + }, + { + "label": "VerifyOtpDto", + "file_type": "code", + "source_file": "backend/src/auth/dto/verify-otp.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "verifyotpdto", + "id": "backend_src_auth_dto_verify_otp_dto_verifyotpdto" + }, + { + "label": "SmsService", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L51", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "smsservice", + "id": "backend_src_common_services_sms_service_smsservice" + }, + { + "label": "SmsLogQueryDto", + "file_type": "code", + "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "smslogquerydto", + "id": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto" + }, + { + "label": "SettingsController", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "settingscontroller", + "id": "backend_src_settings_settings_controller_settingscontroller" + }, + { + "label": "SettingsService", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L145", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "settingsservice", + "id": "backend_src_settings_settings_service_settingsservice" + }, + { + "label": "CreateVideoDto", + "file_type": "code", + "source_file": "backend/src/videos/dto/create-video.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "createvideodto", + "id": "backend_src_videos_dto_create_video_dto_createvideodto" + }, + { + "label": "UpdateVideoDto", + "file_type": "code", + "source_file": "backend/src/videos/dto/create-video.dto.ts", + "source_location": "L63", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "updatevideodto", + "id": "backend_src_videos_dto_create_video_dto_updatevideodto" + }, + { + "label": "GetVideosQueryDto", + "file_type": "code", + "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "getvideosquerydto", + "id": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto" + }, + { + "label": "VideosController", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "videoscontroller", + "id": "backend_src_videos_videos_controller_videoscontroller" + }, + { + "label": "VideosModule", + "file_type": "code", + "source_file": "backend/src/videos/videos.module.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "videosmodule", + "id": "backend_src_videos_videos_module_videosmodule" + }, + { + "label": "VideoQuery", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "videoquery", + "id": "backend_src_videos_videos_service_videoquery" + }, + { + "label": "VideosService", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "videosservice", + "id": "backend_src_videos_videos_service_videosservice" + }, + { + "label": "ScientificTerm", + "file_type": "code", + "source_file": "backend/prisma/scientificTerms.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 205, + "community_name": "prisma/scientificTerms.ts", + "norm_label": "scientificterm", + "id": "backend_prisma_scientificterms_scientificterm" + }, + { + "label": "ButtonProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "buttonprops", + "id": "frontend_admin_panel_src_components_ui_button_buttonprops" + }, + { + "label": "ButtonSize", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "buttonsize", + "id": "frontend_admin_panel_src_components_ui_button_buttonsize" + }, + { + "label": "ButtonVariant", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "buttonvariant", + "id": "frontend_admin_panel_src_components_ui_button_buttonvariant" + }, + { + "label": "Doctor", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "doctor", + "id": "frontend_admin_panel_src_pages_doctorsmanager_doctor" + }, + { + "label": "FAQ", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "faq", + "id": "frontend_admin_panel_src_pages_faqmanager_faq" + }, + { + "label": "ProductReview", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "productreview", + "id": "frontend_admin_panel_src_pages_reviews_productreview" + }, + { + "label": "SslStatus", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "sslstatus", + "id": "frontend_admin_panel_src_pages_sslsettingspage_sslstatus" + }, + { + "label": "FormFieldProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/FormField.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 219, + "community_name": "FormField.tsx", + "norm_label": "formfieldprops", + "id": "frontend_admin_panel_src_components_ui_formfield_formfieldprops" + }, + { + "label": "ContactInfoItem", + "file_type": "code", + "source_file": "frontend/application/components/ContactFormClient.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "contactinfoitem", + "id": "frontend_application_components_contactformclient_contactinfoitem" + }, + { + "label": "LoginModalProps", + "file_type": "code", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": "loginmodalprops", + "id": "frontend_application_components_loginmodal_loginmodalprops" + }, + { + "label": "PrescriptionUploadModalProps", + "file_type": "code", + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "prescriptionuploadmodalprops", + "id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops" + }, + { + "label": "ApiErrorPayload", + "file_type": "code", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "apierrorpayload", + "id": "frontend_application_lib_services_api_apierrorpayload" + }, + { + "label": "ApiErr", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "apierr", + "id": "frontend_application_lib_services_authservice_apierr" + }, + { + "label": "AuthResponse", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "authresponse", + "id": "frontend_application_lib_services_authservice_authresponse" + }, + { + "label": "AuthService", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": "authservice", + "id": "frontend_application_lib_services_authservice_authservice" + }, + { + "label": "User", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "user", + "id": "frontend_application_lib_services_authservice_user" + }, + { + "label": "Transaction", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "transaction", + "id": "frontend_application_lib_store_userstore_transaction" + }, + { + "label": "UserProfile", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "userprofile", + "id": "frontend_application_lib_store_userstore_userprofile" + }, + { + "label": "UserRole", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "userrole", + "id": "frontend_application_lib_store_userstore_userrole" + }, + { + "label": "UserStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "userstore", + "id": "frontend_application_lib_store_userstore_userstore" + }, + { + "label": "InputProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Input.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 220, + "community_name": "Input.tsx", + "norm_label": "inputprops", + "id": "frontend_admin_panel_src_components_ui_input_inputprops" + }, + { + "label": "TextareaProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Textarea.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 221, + "community_name": "Textarea.tsx", + "norm_label": "textareaprops", + "id": "frontend_admin_panel_src_components_ui_textarea_textareaprops" + }, + { + "label": "MenuController", + "file_type": "code", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": "menucontroller", + "id": "backend_src_menu_menu_controller_menucontroller" + }, + { + "label": "MenuService", + "file_type": "code", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": "menuservice", + "id": "backend_src_menu_menu_service_menuservice" + }, + { + "label": "Blog", + "file_type": "code", + "source_file": "backend/src/blogs/entities/blog.entity.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 241, + "community_name": "blog.entity.ts", + "norm_label": "blog", + "id": "backend_src_blogs_entities_blog_entity_blog" + }, + { + "label": "Home", + "file_type": "code", + "source_file": "backend/src/home/entities/home.entity.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 242, + "community_name": "home.entity.ts", + "norm_label": "home", + "id": "backend_src_home_entities_home_entity_home" + }, + { + "label": "Wiki", + "file_type": "code", + "source_file": "backend/src/wiki/entities/wiki.entity.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 243, + "community_name": "wiki.entity.ts", + "norm_label": "wiki", + "id": "backend_src_wiki_entities_wiki_entity_wiki" + }, + { + "label": "MockIntersectionObserver", + "file_type": "code", + "source_file": "frontend/application/vitest.setup.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 256, + "community_name": "vitest.setup.ts", + "norm_label": "mockintersectionobserver", + "id": "frontend_application_vitest_setup_mockintersectionobserver" + }, + { + "label": "ZibalService", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": "zibalservice", + "id": "backend_src_payment_zibal_service_zibalservice" + }, + { + "label": "ZibalEBankService", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 297, + "community_name": "ZibalEBankService", + "norm_label": "zibalebankservice", + "id": "backend_src_payment_zibal_ebank_service_zibalebankservice" + }, + { + "label": "ZibalCallbackQueryDto", + "file_type": "code", + "source_file": "backend/src/payment/dto/verify-payment.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 298, + "community_name": ".initiateOrderPayment", + "norm_label": "zibalcallbackquerydto", + "id": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto" + }, + { + "label": "CatalogPageSpreadProps", + "file_type": "code", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "catalogpagespreadprops", + "id": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops" + }, + { + "label": "CategoryMeta", + "file_type": "code", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "categorymeta", + "id": "frontend_application_components_catalog_catalogpagespread_categorymeta" + }, + { + "label": "FlipbookCatalogProps", + "file_type": "code", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "flipbookcatalogprops", + "id": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops" + }, + { + "label": "DosageResult", + "file_type": "code", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "dosageresult", + "id": "frontend_application_lib_data_products_dosageresult" + }, + { + "label": "FAQ", + "file_type": "code", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "faq", + "id": "frontend_application_lib_data_products_faq" + }, + { + "label": "IngredientInfo", + "file_type": "code", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "ingredientinfo", + "id": "frontend_application_lib_data_products_ingredientinfo" + }, + { + "label": "PetType", + "file_type": "code", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "pettype", + "id": "frontend_application_lib_data_products_pettype" + }, + { + "label": "Product", + "file_type": "code", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "product", + "id": "frontend_application_lib_data_products_product" + }, + { + "label": "Specialist", + "file_type": "code", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "specialist", + "id": "frontend_application_lib_data_products_specialist" + }, + { + "label": "BackendProduct", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "backendproduct", + "id": "frontend_application_lib_services_productservice_backendproduct" + }, + { + "label": "ProductService", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L71", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "productservice", + "id": "frontend_application_lib_services_productservice_productservice" + }, + { + "label": "Ingredient", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L42", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "ingredient", + "id": "frontend_application_lib_types_ingredient" + }, + { + "label": "ModalProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "modalprops", + "id": "frontend_admin_panel_src_components_ui_modal_modalprops" + }, + { + "label": "ContactInfoItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "contactinfoitem", + "id": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem" + }, + { + "label": "ContactSubmission", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "contactsubmission", + "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission" + }, + { + "label": "MenuItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "menuitem", + "id": "frontend_admin_panel_src_pages_menumanager_menuitem" + }, + { + "label": "MenuType", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "menutype", + "id": "frontend_admin_panel_src_pages_menumanager_menutype" + }, + { + "label": "Ticket", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L36", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "ticket", + "id": "frontend_admin_panel_src_pages_tickets_ticket" + }, + { + "label": "TicketMessage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "ticketmessage", + "id": "frontend_admin_panel_src_pages_tickets_ticketmessage" + }, + { + "label": "ProductItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "productitem", + "id": "frontend_admin_panel_src_pages_wiki_productitem" + }, + { + "label": "WikiTerm", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "wikiterm", + "id": "frontend_admin_panel_src_pages_wiki_wikiterm" + }, + { + "label": "MaskableFieldProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 318, + "community_name": "MaskableField.tsx", + "norm_label": "maskablefieldprops", + "id": "frontend_admin_panel_src_components_ui_maskablefield_maskablefieldprops" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "props", + "id": "frontend_admin_panel_src_components_routeerrorboundary_props" + }, + { + "label": "RouteErrorBoundary", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "routeerrorboundary", + "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary" + }, + { + "label": "State", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "state", + "id": "frontend_admin_panel_src_components_routeerrorboundary_state" + }, + { + "label": "HeroBanner", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "herobanner", + "id": "frontend_admin_panel_src_pages_cms_herobanner" + }, + { + "label": "VetTestimonial", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "vettestimonial", + "id": "frontend_admin_panel_src_pages_cms_vettestimonial" + }, + { + "label": "CategoryDist", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "categorydist", + "id": "frontend_admin_panel_src_pages_dashboard_categorydist" + }, + { + "label": "DashboardData", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "dashboarddata", + "id": "frontend_admin_panel_src_pages_dashboard_dashboarddata" + }, + { + "label": "BestSellerItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "bestselleritem", + "id": "frontend_admin_panel_src_pages_reports_bestselleritem" + }, + { + "label": "CategoryDistItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "categorydistitem", + "id": "frontend_admin_panel_src_pages_reports_categorydistitem" + }, + { + "label": "CustomTooltipProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "customtooltipprops", + "id": "frontend_admin_panel_src_pages_reports_customtooltipprops" + }, + { + "label": "ReportData", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L65", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "reportdata", + "id": "frontend_admin_panel_src_pages_reports_reportdata" + }, + { + "label": "TopCouponItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "topcouponitem", + "id": "frontend_admin_panel_src_pages_reports_topcouponitem" + }, + { + "label": "AdminRouteConfig", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "adminrouteconfig", + "id": "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig" + }, + { + "label": "WholesaleApplyDto", + "file_type": "code", + "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 234, + "community_name": "WholesaleApplyDto", + "norm_label": "wholesaleapplydto", + "id": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto" + }, + { + "label": "WholesaleController", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 33, + "community_name": "WholesaleService", + "norm_label": "wholesalecontroller", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller" + }, + { + "label": "WholesaleService", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 33, + "community_name": "WholesaleService", + "norm_label": "wholesaleservice", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice" + }, + { + "label": "B2BController", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": "b2bcontroller", + "id": "backend_src_b2b_b2b_controller_b2bcontroller" + }, + { + "label": "B2BService", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": "b2bservice", + "id": "backend_src_b2b_b2b_service_b2bservice" + }, + { + "label": "B2BWholesaleOrderItem", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": "b2bwholesaleorderitem", + "id": "backend_src_b2b_b2b_service_b2bwholesaleorderitem" + }, + { + "label": "SkeletonProps", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "skeletonprops", + "id": "frontend_application_components_skeleton_skeletonprops" + }, + { + "label": "HealthLog", + "file_type": "code", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L17", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "healthlog", + "id": "frontend_application_lib_store_usepetstore_healthlog" + }, + { + "label": "PetConsumption", + "file_type": "code", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "petconsumption", + "id": "frontend_application_lib_store_usepetstore_petconsumption" + }, + { + "label": "PetProfile", + "file_type": "code", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "petprofile", + "id": "frontend_application_lib_store_usepetstore_petprofile" + }, + { + "label": "PetStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L50", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "petstore", + "id": "frontend_application_lib_store_usepetstore_petstore" + }, + { + "label": "Reminder", + "file_type": "code", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "reminder", + "id": "frontend_application_lib_store_usepetstore_reminder" + }, + { + "label": "FaqController", + "file_type": "code", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": "faqcontroller", + "id": "backend_src_faq_faq_controller_faqcontroller" + }, + { + "label": "FaqService", + "file_type": "code", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": "faqservice", + "id": "backend_src_faq_faq_service_faqservice" + }, + { + "label": "TransactionReceiptData", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 38, + "community_name": "Button", + "norm_label": "transactionreceiptdata", + "id": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptdata" + }, + { + "label": "TransactionReceiptModalProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 38, + "community_name": "Button", + "norm_label": "transactionreceiptmodalprops", + "id": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodalprops" + }, + { + "label": "ThSortProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ThSort.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 38, + "community_name": "Button", + "norm_label": "thsortprops", + "id": "frontend_admin_panel_src_components_ui_thsort_thsortprops" + }, + { + "label": "GatewayHealth", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 38, + "community_name": "Button", + "norm_label": "gatewayhealth", + "id": "frontend_admin_panel_src_pages_transactions_gatewayhealth" + }, + { + "label": "Stats", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L70", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 38, + "community_name": "Button", + "norm_label": "stats", + "id": "frontend_admin_panel_src_pages_transactions_stats" + }, + { + "label": "Transaction", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 38, + "community_name": "Button", + "norm_label": "transaction", + "id": "frontend_admin_panel_src_pages_transactions_transaction" + }, + { + "label": "UseTableParamsOptions", + "file_type": "code", + "source_file": "frontend/admin-panel/src/utils/useTableParams.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 38, + "community_name": "Button", + "norm_label": "usetableparamsoptions", + "id": "frontend_admin_panel_src_utils_usetableparams_usetableparamsoptions" + }, + { + "label": "CategoriesController", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 39, + "community_name": "CategoriesController", + "norm_label": "categoriescontroller", + "id": "backend_src_admin_categories_controller_categoriescontroller" + }, + { + "label": "CategoriesService", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 39, + "community_name": "CategoriesController", + "norm_label": "categoriesservice", + "id": "backend_src_admin_categories_service_categoriesservice" + }, + { + "label": "BlogCategory", + "file_type": "code", + "source_file": "frontend/application/components/BlogPage.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "blogcategory", + "id": "frontend_application_components_blogpage_blogcategory" + }, + { + "label": "BlogPostItem", + "file_type": "code", + "source_file": "frontend/application/components/BlogPage.tsx", + "source_location": "L34", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "blogpostitem", + "id": "frontend_application_components_blogpage_blogpostitem" + }, + { + "label": "BlogPostClientProps", + "file_type": "code", + "source_file": "frontend/application/components/BlogPostClient.tsx", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 95, + "community_name": "blog/[slug]/page.tsx", + "norm_label": "blogpostclientprops", + "id": "frontend_application_components_blogpostclient_blogpostclientprops" + }, + { + "label": "BlogPost", + "file_type": "code", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "blogpost", + "id": "frontend_application_components_blogpreviewsection_blogpost" + }, + { + "label": "ProductDetailModalProps", + "file_type": "code", + "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "productdetailmodalprops", + "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops" + }, + { + "label": "OrderDetailsModalProps", + "file_type": "code", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "orderdetailsmodalprops", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops" + }, + { + "label": "PodcastPlayerModalProps", + "file_type": "code", + "source_file": "frontend/application/components/PodcastPlayerModal.tsx", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "podcastplayermodalprops", + "id": "frontend_application_components_podcastplayermodal_podcastplayermodalprops" + }, + { + "label": "SafeImageProps", + "file_type": "code", + "source_file": "frontend/application/components/SafeImage.tsx", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "safeimageprops", + "id": "frontend_application_components_safeimage_safeimageprops" + }, + { + "label": "Testimonial", + "file_type": "code", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "testimonial", + "id": "frontend_application_components_testimonialssection_testimonial" + }, + { + "label": "DisplayVideoItem", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L58", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "displayvideoitem", + "id": "frontend_application_components_vetgallery_displayvideoitem" + }, + { + "label": "TestimonialItem", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "testimonialitem", + "id": "frontend_application_components_vetgallery_testimonialitem" + }, + { + "label": "VideoModalPlayerProps", + "file_type": "code", + "source_file": "frontend/application/components/VideoModalPlayer.tsx", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "videomodalplayerprops", + "id": "frontend_application_components_videomodalplayer_videomodalplayerprops" + }, + { + "label": "Video", + "file_type": "code", + "source_file": "frontend/application/lib/services/videoService.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "video", + "id": "frontend_application_lib_services_videoservice_video" + }, + { + "label": "MediaController", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 40, + "community_name": "MediaController", + "norm_label": "mediacontroller", + "id": "backend_src_admin_media_controller_mediacontroller" + }, + { + "label": "SslController", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": "sslcontroller", + "id": "backend_src_admin_ssl_controller_sslcontroller" + }, + { + "label": "SslService", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": "sslservice", + "id": "backend_src_admin_ssl_service_sslservice" + }, + { + "label": "BannersController", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L21", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": "bannerscontroller", + "id": "backend_src_banners_banners_controller_bannerscontroller" + }, + { + "label": "BannersService", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": "bannersservice", + "id": "backend_src_banners_banners_service_bannersservice" + }, + { + "label": "TestimonialsController", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": "testimonialscontroller", + "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller" + }, + { + "label": "TestimonialsService", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": "testimonialsservice", + "id": "backend_src_testimonials_testimonials_service_testimonialsservice" + }, + { + "label": "HomeController", + "file_type": "code", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 46, + "community_name": "HomeController", + "norm_label": "homecontroller", + "id": "backend_src_home_home_controller_homecontroller" + }, + { + "label": "HomeModule", + "file_type": "code", + "source_file": "backend/src/home/home.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 46, + "community_name": "HomeController", + "norm_label": "homemodule", + "id": "backend_src_home_home_module_homemodule" + }, + { + "label": "HomeService", + "file_type": "code", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 46, + "community_name": "HomeController", + "norm_label": "homeservice", + "id": "backend_src_home_home_service_homeservice" + }, + { + "label": "IngredientsController", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": "ingredientscontroller", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller" + }, + { + "label": "IngredientsService", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": "ingredientsservice", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice" + }, + { + "label": "ApiErr", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "apierr", + "id": "frontend_application_lib_services_orderservice_apierr" + }, + { + "label": "Order", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "order", + "id": "frontend_application_lib_services_orderservice_order" + }, + { + "label": "OrderItem", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "orderitem", + "id": "frontend_application_lib_services_orderservice_orderitem" + }, + { + "label": "OrderService", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "orderservice", + "id": "frontend_application_lib_services_orderservice_orderservice" + }, + { + "label": "CartItem", + "file_type": "code", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "cartitem", + "id": "frontend_application_lib_store_cartstore_cartitem" + }, + { + "label": "CartStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L32", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "cartstore", + "id": "frontend_application_lib_store_cartstore_cartstore" + }, + { + "label": "Order", + "file_type": "code", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "order", + "id": "frontend_application_lib_store_cartstore_order" + }, + { + "label": "CmsController", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "cmscontroller", + "id": "backend_src_cms_cms_controller_cmscontroller" + }, + { + "label": "CmsService", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "cmsservice", + "id": "backend_src_cms_cms_service_cmsservice" + }, + { + "label": "CreateHeroBannerDto", + "file_type": "code", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "createherobannerdto", + "id": "backend_src_cms_dto_cms_dto_createherobannerdto" + }, + { + "label": "CreateSmartAdvisorRuleDto", + "file_type": "code", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L80", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "createsmartadvisorruledto", + "id": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto" + }, + { + "label": "CreateVetTestimonialDto", + "file_type": "code", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L45", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "createvettestimonialdto", + "id": "backend_src_cms_dto_cms_dto_createvettestimonialdto" + }, + { + "label": "BlogsController", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L29", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": "blogscontroller", + "id": "backend_src_admin_blogs_controller_blogscontroller" + }, + { + "label": "PrescriptionsController", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L27", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": "prescriptionscontroller", + "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller" + }, + { + "label": "PrescriptionsService", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": "prescriptionsservice", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice" + }, + { + "label": "SmartAdvisorController", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": "smartadvisorcontroller", + "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller" + }, + { + "label": "SmartAdvisorService", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": "smartadvisorservice", + "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice" + }, + { + "label": "AuthModule", + "file_type": "code", + "source_file": "backend/src/auth/auth.module.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 48, + "community_name": "auth.module.ts", + "norm_label": "authmodule", + "id": "backend_src_auth_auth_module_authmodule" + }, + { + "label": "JwtPayload", + "file_type": "code", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 48, + "community_name": "auth.module.ts", + "norm_label": "jwtpayload", + "id": "backend_src_auth_jwt_strategy_jwtpayload" + }, + { + "label": "JwtStrategy", + "file_type": "code", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 48, + "community_name": "auth.module.ts", + "norm_label": "jwtstrategy", + "id": "backend_src_auth_jwt_strategy_jwtstrategy" + }, + { + "label": "AddressDto", + "file_type": "code", + "source_file": "backend/src/users/dto/address.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 60, + "community_name": "users.controller.ts", + "norm_label": "addressdto", + "id": "backend_src_users_dto_address_dto_addressdto" + }, + { + "label": "UpdateProfileDto", + "file_type": "code", + "source_file": "backend/src/users/dto/update-profile.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 60, + "community_name": "users.controller.ts", + "norm_label": "updateprofiledto", + "id": "backend_src_users_dto_update_profile_dto_updateprofiledto" + }, + { + "label": "UsersController", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L43", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": "userscontroller", + "id": "backend_src_users_users_controller_userscontroller" + }, + { + "label": "UsersModule", + "file_type": "code", + "source_file": "backend/src/users/users.module.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 48, + "community_name": "auth.module.ts", + "norm_label": "usersmodule", + "id": "backend_src_users_users_module_usersmodule" + }, + { + "label": "UsersService", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 115, + "community_name": "UsersService", + "norm_label": "usersservice", + "id": "backend_src_users_users_service_usersservice" + }, + { + "label": "IconPickerModalProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "iconpickermodalprops", + "id": "frontend_admin_panel_src_components_ui_iconpickermodal_iconpickermodalprops" + }, + { + "label": "ActiveStates", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", + "source_location": "L61", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "activestates", + "id": "frontend_admin_panel_src_components_ui_richtexteditor_activestates" + }, + { + "label": "RichTextEditorProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "richtexteditorprops", + "id": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditorprops" + }, + { + "label": "ToggleSwitchProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "toggleswitchprops", + "id": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitchprops" + }, + { + "label": "AppSitePage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L227", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "appsitepage", + "id": "frontend_admin_panel_src_pages_uitexts_appsitepage" + }, + { + "label": "PageSection", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L219", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "pagesection", + "id": "frontend_admin_panel_src_pages_uitexts_pagesection" + }, + { + "label": "SectionField", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L211", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "sectionfield", + "id": "frontend_admin_panel_src_pages_uitexts_sectionfield" + }, + { + "label": "BadgeProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "badgeprops", + "id": "frontend_admin_panel_src_components_ui_badge_badgeprops" + }, + { + "label": "BadgeVariant", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "badgevariant", + "id": "frontend_admin_panel_src_components_ui_badge_badgevariant" + }, + { + "label": "MonitoringStats", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "monitoringstats", + "id": "frontend_admin_panel_src_pages_monitoringpage_monitoringstats" + }, + { + "label": "Order", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L67", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "order", + "id": "frontend_admin_panel_src_pages_orders_order" + }, + { + "label": "OrderItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L38", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "orderitem", + "id": "frontend_admin_panel_src_pages_orders_orderitem" + }, + { + "label": "PaymentTx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "paymenttx", + "id": "frontend_admin_panel_src_pages_orders_paymenttx" + }, + { + "label": "UserRecord", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L26", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "userrecord", + "id": "frontend_admin_panel_src_pages_users_userrecord" + }, + { + "label": "PetSummary", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L61", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "petsummary", + "id": "frontend_admin_panel_src_types_admin_petsummary" + }, + { + "label": "UserAddress", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L49", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "useraddress", + "id": "frontend_admin_panel_src_types_admin_useraddress" + }, + { + "label": "ContactController", + "file_type": "code", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": "contactcontroller", + "id": "backend_src_contact_contact_controller_contactcontroller" + }, + { + "label": "ContactService", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L22", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": "contactservice", + "id": "backend_src_contact_contact_service_contactservice" + }, + { + "label": "AdminUpdateTicketDto", + "file_type": "code", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L82", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "adminupdateticketdto", + "id": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto" + }, + { + "label": "CreateTicketDto", + "file_type": "code", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "createticketdto", + "id": "backend_src_tickets_dto_create_ticket_dto_createticketdto" + }, + { + "label": "ReplyTicketDto", + "file_type": "code", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L59", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "replyticketdto", + "id": "backend_src_tickets_dto_create_ticket_dto_replyticketdto" + }, + { + "label": "TicketQueryDto", + "file_type": "code", + "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "ticketquerydto", + "id": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto" + }, + { + "label": "TicketsController", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L33", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "ticketscontroller", + "id": "backend_src_tickets_tickets_controller_ticketscontroller" + }, + { + "label": "TicketsModule", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "ticketsmodule", + "id": "backend_src_tickets_tickets_module_ticketsmodule" + }, + { + "label": "TicketsService", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "ticketsservice", + "id": "backend_src_tickets_tickets_service_ticketsservice" + }, + { + "label": "PaymentService", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 68, + "community_name": "PaymentService", + "norm_label": "paymentservice", + "id": "backend_src_payment_payment_service_paymentservice" + }, + { + "label": "AdminTransactionFilterDto", + "file_type": "code", + "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 61, + "community_name": "payment.service.ts", + "norm_label": "admintransactionfilterdto", + "id": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto" + }, + { + "label": "CreateReviewDto", + "file_type": "code", + "source_file": "backend/src/reviews/dto/create-review.dto.ts", + "source_location": "L11", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 113, + "community_name": "CreateReviewDto", + "norm_label": "createreviewdto", + "id": "backend_src_reviews_dto_create_review_dto_createreviewdto" + }, + { + "label": "ImagePreviewModalProps", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 106, + "community_name": "Media.tsx", + "norm_label": "imagepreviewmodalprops", + "id": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodalprops" + }, + { + "label": "Media", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 106, + "community_name": "Media.tsx", + "norm_label": "media", + "id": "frontend_admin_panel_src_pages_media_media" + }, + { + "label": "ProductItem", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L13", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 106, + "community_name": "Media.tsx", + "norm_label": "productitem", + "id": "frontend_admin_panel_src_pages_prescriptionsmanager_productitem" + }, + { + "label": "Prescription", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L124", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 106, + "community_name": "Media.tsx", + "norm_label": "prescription", + "id": "frontend_admin_panel_src_types_admin_prescription" + }, + { + "label": "WikiController", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "wikicontroller", + "id": "backend_src_wiki_wiki_controller_wikicontroller" + }, + { + "label": "WikiModule", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "wikimodule", + "id": "backend_src_wiki_wiki_module_wikimodule" + }, + { + "label": "WikiService", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "wikiservice", + "id": "backend_src_wiki_wiki_service_wikiservice" + }, + { + "label": "PetsController", + "file_type": "code", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "petscontroller", + "id": "backend_src_admin_pets_controller_petscontroller" + }, + { + "label": "PetQuery", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "petquery", + "id": "backend_src_admin_pets_service_petquery" + }, + { + "label": "PetsService", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "petsservice", + "id": "backend_src_admin_pets_service_petsservice" + }, + { + "label": "CreatePetDto", + "file_type": "code", + "source_file": "backend/src/pets/dto/create-pet.dto.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "createpetdto", + "id": "backend_src_pets_dto_create_pet_dto_createpetdto" + }, + { + "label": "UpdatePetDto", + "file_type": "code", + "source_file": "backend/src/pets/dto/update-pet.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "updatepetdto", + "id": "backend_src_pets_dto_update_pet_dto_updatepetdto" + }, + { + "label": "PetsModule", + "file_type": "code", + "source_file": "backend/src/pets/pets.module.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "petsmodule", + "id": "backend_src_pets_pets_module_petsmodule" + }, + { + "label": "HealthLogInput", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L15", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "healthloginput", + "id": "backend_src_pets_pets_service_healthloginput" + }, + { + "label": "PetsService", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L23", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "petsservice", + "id": "backend_src_pets_pets_service_petsservice" + }, + { + "label": "ReminderInput", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "reminderinput", + "id": "backend_src_pets_pets_service_reminderinput" + }, + { + "label": "PageMetadataOptions", + "file_type": "code", + "source_file": "frontend/application/lib/seo.ts", + "source_location": "L160", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "pagemetadataoptions", + "id": "frontend_application_lib_seo_pagemetadataoptions" + }, + { + "label": "SeoConfig", + "file_type": "code", + "source_file": "frontend/application/lib/seo.ts", + "source_location": "L3", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "seoconfig", + "id": "frontend_application_lib_seo_seoconfig" + }, + { + "label": "WikiController", + "file_type": "code", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": "wikicontroller", + "id": "backend_src_admin_wiki_controller_wikicontroller" + }, + { + "label": "CreateHealthLogDto", + "file_type": "code", + "source_file": "backend/src/pets/dto/create-health-log.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "createhealthlogdto", + "id": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto" + }, + { + "label": "CreateReminderDto", + "file_type": "code", + "source_file": "backend/src/pets/dto/create-reminder.dto.ts", + "source_location": "L4", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "createreminderdto", + "id": "backend_src_pets_dto_create_reminder_dto_createreminderdto" + }, + { + "label": "PetsController", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L55", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "petscontroller", + "id": "backend_src_pets_pets_controller_petscontroller" + }, + { + "label": "CreateEBankCheckoutDto", + "file_type": "code", + "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", + "source_location": "L10", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 123, + "community_name": "CreateEBankCheckoutDto", + "norm_label": "createebankcheckoutdto", + "id": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto" + }, + { + "label": "SeoController", + "file_type": "code", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": "seocontroller", + "id": "backend_src_seo_seo_controller_seocontroller" + }, + { + "label": "SeoModule", + "file_type": "code", + "source_file": "backend/src/seo/seo.module.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": "seomodule", + "id": "backend_src_seo_seo_module_seomodule" + }, + { + "label": "SeoService", + "file_type": "code", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": "seoservice", + "id": "backend_src_seo_seo_service_seoservice" + }, + { + "label": "AdminModule", + "file_type": "code", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L44", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "adminmodule", + "id": "backend_src_admin_admin_module_adminmodule" + }, + { + "label": "MediaService", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 40, + "community_name": "MediaController", + "norm_label": "mediaservice", + "id": "backend_src_admin_media_service_mediaservice" + }, + { + "label": "ReportsController", + "file_type": "code", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 8, + "community_name": "ReportsController", + "norm_label": "reportscontroller", + "id": "backend_src_admin_reports_controller_reportscontroller" + }, + { + "label": "ReportsService", + "file_type": "code", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 8, + "community_name": "ReportsController", + "norm_label": "reportsservice", + "id": "backend_src_admin_reports_service_reportsservice" + }, + { + "label": "SslCertInfo", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L7", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "sslcertinfo", + "id": "backend_src_admin_ssl_service_sslcertinfo" + }, + { + "label": "WikiQuery", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L5", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "wikiquery", + "id": "backend_src_admin_wiki_service_wikiquery" + }, + { + "label": "WikiService", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "wikiservice", + "id": "backend_src_admin_wiki_service_wikiservice" + }, + { + "label": "GatewayHealthResult", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L35", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 86, + "community_name": "zibal.service.ts", + "norm_label": "gatewayhealthresult", + "id": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult" + }, + { + "label": "IPaymentGateway", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L48", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 86, + "community_name": "zibal.service.ts", + "norm_label": "ipaymentgateway", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway" + }, + { + "label": "PaymentInquiryResult", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L25", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 86, + "community_name": "zibal.service.ts", + "norm_label": "paymentinquiryresult", + "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult" + }, + { + "label": "PaymentRequestOptions", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 86, + "community_name": "zibal.service.ts", + "norm_label": "paymentrequestoptions", + "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions" + }, + { + "label": "PaymentRequestResult", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L9", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 86, + "community_name": "zibal.service.ts", + "norm_label": "paymentrequestresult", + "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult" + }, + { + "label": "PaymentVerifyResult", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L16", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 86, + "community_name": "zibal.service.ts", + "norm_label": "paymentverifyresult", + "id": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult" + }, + { + "label": "ZibalInquiryResponse", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L30", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 86, + "community_name": "zibal.service.ts", + "norm_label": "zibalinquiryresponse", + "id": "backend_src_payment_zibal_service_zibalinquiryresponse" + }, + { + "label": "ZibalRequestResponse", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 86, + "community_name": "zibal.service.ts", + "norm_label": "zibalrequestresponse", + "id": "backend_src_payment_zibal_service_zibalrequestresponse" + }, + { + "label": "ZibalVerifyResponse", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L18", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 86, + "community_name": "zibal.service.ts", + "norm_label": "zibalverifyresponse", + "id": "backend_src_payment_zibal_service_zibalverifyresponse" + }, + { + "label": "PodcastInlinePlayerProps", + "file_type": "code", + "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "podcastinlineplayerprops", + "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayerprops" + }, + { + "label": "CalculatorState", + "file_type": "code", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "calculatorstate", + "id": "frontend_application_components_productpage_calculatorstate" + }, + { + "label": "ProductReviewsProps", + "file_type": "code", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "productreviewsprops", + "id": "frontend_application_components_productreviews_productreviewsprops" + }, + { + "label": "ReviewItem", + "file_type": "code", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L19", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "reviewitem", + "id": "frontend_application_components_productreviews_reviewitem" + }, + { + "label": "TooltipProps", + "file_type": "code", + "source_file": "frontend/application/components/Tooltip.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "tooltipprops", + "id": "frontend_application_components_tooltip_tooltipprops" + }, + { + "label": "ScientificTerm", + "file_type": "code", + "source_file": "frontend/application/lib/data/scientificTerms.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "scientificterm", + "id": "frontend_application_lib_data_scientificterms_scientificterm" + }, + { + "label": "DosageConfig", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L94", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "dosageconfig", + "id": "frontend_application_lib_types_dosageconfig" + }, + { + "label": "HomeClientProps", + "file_type": "code", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L20", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "homeclientprops", + "id": "frontend_application_app_homeclient_homeclientprops" + }, + { + "label": "BannerPlacementProps", + "file_type": "code", + "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "bannerplacementprops", + "id": "frontend_application_components_bannerplacement_bannerplacementprops" + }, + { + "label": "FAQItem", + "file_type": "code", + "source_file": "frontend/application/components/FAQSection.tsx", + "source_location": "L8", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "faqitem", + "id": "frontend_application_components_faqsection_faqitem" + }, + { + "label": "B2BInquiry", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L67", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "b2binquiry", + "id": "frontend_application_lib_types_b2binquiry" + }, + { + "label": "Banner", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L1", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "banner", + "id": "frontend_application_lib_types_banner" + }, + { + "label": "HomeApiResponse", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L102", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "homeapiresponse", + "id": "frontend_application_lib_types_homeapiresponse" + }, + { + "label": "NavigationHandler", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L111", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "navigationhandler", + "id": "frontend_application_lib_types_navigationhandler" + }, + { + "label": "PartnerAccount", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L82", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "partneraccount", + "id": "frontend_application_lib_types_partneraccount" + }, + { + "label": "Prescription", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L55", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "prescription", + "id": "frontend_application_lib_types_prescription" + }, + { + "label": "SmartAdvisorRule", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "smartadvisorrule", + "id": "frontend_application_lib_types_smartadvisorrule" + }, + { + "label": "Testimonial", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L28", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "testimonial", + "id": "frontend_application_lib_types_testimonial" + }, + { + "label": "CreateOrderDto", + "file_type": "code", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L24", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "createorderdto", + "id": "backend_src_orders_dto_create_order_dto_createorderdto" + }, + { + "label": "OrderItemDto", + "file_type": "code", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L12", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "orderitemdto", + "id": "backend_src_orders_dto_create_order_dto_orderitemdto" + }, + { + "label": "OrdersController", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L54", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "orderscontroller", + "id": "backend_src_orders_orders_controller_orderscontroller" + }, + { + "label": "OrdersService", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L14", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "ordersservice", + "id": "backend_src_orders_orders_service_ordersservice" + }, + { + "label": "B2BServiceSchemaOptions", + "file_type": "code", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L114", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "b2bserviceschemaoptions", + "id": "frontend_application_lib_schema_b2bserviceschemaoptions" + }, + { + "label": "BreadcrumbItem", + "file_type": "code", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L217", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "breadcrumbitem", + "id": "frontend_application_lib_schema_breadcrumbitem" + }, + { + "label": "MedicalWebPageSchemaOptions", + "file_type": "code", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L149", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "medicalwebpageschemaoptions", + "id": "frontend_application_lib_schema_medicalwebpageschemaoptions" + }, + { + "label": "OrganizationSchemaOptions", + "file_type": "code", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L6", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "organizationschemaoptions", + "id": "frontend_application_lib_schema_organizationschemaoptions" + }, + { + "label": "VideoObjectSchemaOptions", + "file_type": "code", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L185", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "videoobjectschemaoptions", + "id": "frontend_application_lib_schema_videoobjectschemaoptions" + }, + { + "label": "BlogsController", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L31", + "_callable": true, + "_callable_class": true, + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": "blogscontroller", + "id": "backend_src_blogs_blogs_controller_blogscontroller" }, { "label": "Roles()", @@ -5444,10 +5457,10 @@ "source_location": "L4", "_callable": true, "_origin": "ast", - "id": "backend_src_common_decorators_roles_decorator_roles", "community": 0, "community_name": "Roles", - "norm_label": "roles()" + "norm_label": "roles()", + "id": "backend_src_common_decorators_roles_decorator_roles" }, { "label": ".cancelEBankCheckout()", @@ -5456,10 +5469,10 @@ "source_location": "L471", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", "community": 0, "community_name": "Roles", - "norm_label": ".cancelebankcheckout()" + "norm_label": ".cancelebankcheckout()", + "id": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout" }, { "label": ".changeIdentifiedPaymentStatus()", @@ -5468,10 +5481,10 @@ "source_location": "L508", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", "community": 0, "community_name": "Roles", - "norm_label": ".changeidentifiedpaymentstatus()" + "norm_label": ".changeidentifiedpaymentstatus()", + "id": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus" }, { "label": ".createEBankCheckout()", @@ -5480,10 +5493,10 @@ "source_location": "L439", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", "community": 0, "community_name": "Roles", - "norm_label": ".createebankcheckout()" + "norm_label": ".createebankcheckout()", + "id": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout" }, { "label": ".createRefund()", @@ -5492,10 +5505,10 @@ "source_location": "L246", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_createrefund", "community": 0, "community_name": "Roles", - "norm_label": ".createrefund()" + "norm_label": ".createrefund()", + "id": "backend_src_payment_payment_controller_paymentcontroller_createrefund" }, { "label": ".createSubMerchant()", @@ -5504,10 +5517,10 @@ "source_location": "L365", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", "community": 0, "community_name": "Roles", - "norm_label": ".createsubmerchant()" + "norm_label": ".createsubmerchant()", + "id": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant" }, { "label": ".editSubMerchant()", @@ -5516,10 +5529,10 @@ "source_location": "L376", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", "community": 0, "community_name": "Roles", - "norm_label": ".editsubmerchant()" + "norm_label": ".editsubmerchant()", + "id": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant" }, { "label": ".getAdminStats()", @@ -5528,10 +5541,10 @@ "source_location": "L534", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", "community": 0, "community_name": "Roles", - "norm_label": ".getadminstats()" + "norm_label": ".getadminstats()", + "id": "backend_src_payment_payment_controller_paymentcontroller_getadminstats" }, { "label": ".getAdminTransactions()", @@ -5540,10 +5553,10 @@ "source_location": "L525", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", "community": 0, "community_name": "Roles", - "norm_label": ".getadmintransactions()" + "norm_label": ".getadmintransactions()", + "id": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions" }, { "label": ".getAdminWallets()", @@ -5552,10 +5565,10 @@ "source_location": "L237", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", "community": 0, "community_name": "Roles", - "norm_label": ".getadminwallets()" + "norm_label": ".getadminwallets()", + "id": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets" }, { "label": ".getCheckoutQueueReport()", @@ -5564,10 +5577,10 @@ "source_location": "L343", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", "community": 0, "community_name": "Roles", - "norm_label": ".getcheckoutqueuereport()" + "norm_label": ".getcheckoutqueuereport()", + "id": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport" }, { "label": ".getCheckoutReport()", @@ -5576,10 +5589,10 @@ "source_location": "L325", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", "community": 0, "community_name": "Roles", - "norm_label": ".getcheckoutreport()" + "norm_label": ".getcheckoutreport()", + "id": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport" }, { "label": ".getEBankAccounts()", @@ -5588,10 +5601,10 @@ "source_location": "L391", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", "community": 0, "community_name": "Roles", - "norm_label": ".getebankaccounts()" + "norm_label": ".getebankaccounts()", + "id": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts" }, { "label": ".getEBankBalance()", @@ -5600,10 +5613,10 @@ "source_location": "L401", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", "community": 0, "community_name": "Roles", - "norm_label": ".getebankbalance()" + "norm_label": ".getebankbalance()", + "id": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance" }, { "label": ".getEBankCheckoutList()", @@ -5612,10 +5625,10 @@ "source_location": "L448", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", "community": 0, "community_name": "Roles", - "norm_label": ".getebankcheckoutlist()" + "norm_label": ".getebankcheckoutlist()", + "id": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist" }, { "label": ".getEBankIdentifiedPayments()", @@ -5624,10 +5637,10 @@ "source_location": "L485", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", "community": 0, "community_name": "Roles", - "norm_label": ".getebankidentifiedpayments()" + "norm_label": ".getebankidentifiedpayments()", + "id": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments" }, { "label": ".getEBankStatements()", @@ -5636,10 +5649,10 @@ "source_location": "L416", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", "community": 0, "community_name": "Roles", - "norm_label": ".getebankstatements()" + "norm_label": ".getebankstatements()", + "id": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements" }, { "label": ".getGatewayReport()", @@ -5648,10 +5661,10 @@ "source_location": "L300", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", "community": 0, "community_name": "Roles", - "norm_label": ".getgatewayreport()" + "norm_label": ".getgatewayreport()", + "id": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport" }, { "label": ".getHealth()", @@ -5660,10 +5673,10 @@ "source_location": "L618", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_gethealth", "community": 0, "community_name": "Roles", - "norm_label": ".gethealth()" + "norm_label": ".gethealth()", + "id": "backend_src_payment_payment_controller_paymentcontroller_gethealth" }, { "label": ".getRefundList()", @@ -5672,10 +5685,10 @@ "source_location": "L279", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", "community": 0, "community_name": "Roles", - "norm_label": ".getrefundlist()" + "norm_label": ".getrefundlist()", + "id": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist" }, { "label": ".getSubMerchants()", @@ -5684,10 +5697,10 @@ "source_location": "L356", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", "community": 0, "community_name": "Roles", - "norm_label": ".getsubmerchants()" + "norm_label": ".getsubmerchants()", + "id": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants" }, { "label": ".getTransactionStatus()", @@ -5696,10 +5709,10 @@ "source_location": "L224", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", "community": 0, "community_name": "Roles", - "norm_label": ".gettransactionstatus()" + "norm_label": ".gettransactionstatus()", + "id": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus" }, { "label": ".inquireRefund()", @@ -5708,10 +5721,10 @@ "source_location": "L264", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", "community": 0, "community_name": "Roles", - "norm_label": ".inquirerefund()" + "norm_label": ".inquirerefund()", + "id": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund" }, { "label": ".liveInquiry()", @@ -5720,10 +5733,10 @@ "source_location": "L580", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", "community": 0, "community_name": "Roles", - "norm_label": ".liveinquiry()" + "norm_label": ".liveinquiry()", + "id": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry" }, { "label": ".liveInquiryPost()", @@ -5732,10 +5745,10 @@ "source_location": "L556", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", "community": 0, "community_name": "Roles", - "norm_label": ".liveinquirypost()" + "norm_label": ".liveinquirypost()", + "id": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost" }, { "label": ".manualReject()", @@ -5744,10 +5757,10 @@ "source_location": "L603", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_manualreject", "community": 0, "community_name": "Roles", - "norm_label": ".manualreject()" + "norm_label": ".manualreject()", + "id": "backend_src_payment_payment_controller_paymentcontroller_manualreject" }, { "label": ".manualVerify()", @@ -5756,10 +5769,10 @@ "source_location": "L591", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_manualverify", "community": 0, "community_name": "Roles", - "norm_label": ".manualverify()" + "norm_label": ".manualverify()", + "id": "backend_src_payment_payment_controller_paymentcontroller_manualverify" }, { "label": ".reconcilePending()", @@ -5768,118 +5781,70 @@ "source_location": "L545", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", "community": 0, "community_name": "Roles", - "norm_label": ".reconcilepending()" + "norm_label": ".reconcilepending()", + "id": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending" }, { "label": ".constructor()", "file_type": "code", "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L24", + "source_location": "L25", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_constructor", "community": 10, "community_name": "ReviewsService", - "norm_label": ".constructor()" - }, - { - "label": ".createReview()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "community": 10, - "community_name": "ReviewsService", - "norm_label": ".createreview()" + "norm_label": ".constructor()", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_constructor" }, { "label": ".deleteReview()", "file_type": "code", "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L104", + "source_location": "L106", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", "community": 10, "community_name": "ReviewsService", - "norm_label": ".deletereview()" + "norm_label": ".deletereview()", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview" }, { "label": ".getAdminReviews()", "file_type": "code", "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L65", + "source_location": "L67", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", "community": 10, "community_name": "ReviewsService", - "norm_label": ".getadminreviews()" + "norm_label": ".getadminreviews()", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews" }, { "label": ".getProductReviews()", "file_type": "code", "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L45", + "source_location": "L47", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", "community": 10, "community_name": "ReviewsService", - "norm_label": ".getproductreviews()" + "norm_label": ".getproductreviews()", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews" }, { "label": ".updateReviewStatus()", "file_type": "code", "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L89", + "source_location": "L91", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", "community": 10, "community_name": "ReviewsService", - "norm_label": ".updatereviewstatus()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_constructor", - "community": 10, - "community_name": "ReviewsService", - "norm_label": ".constructor()" - }, - { - "label": ".createReview()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_createreview", - "community": 10, - "community_name": "ReviewsService", - "norm_label": ".createreview()" - }, - { - "label": ".deleteReview()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L243", - "_callable": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_deletereview", - "community": 10, - "community_name": "ReviewsService", - "norm_label": ".deletereview()" + "norm_label": ".updatereviewstatus()", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus" }, { "label": ".getAdminReviews()", @@ -5888,10 +5853,10 @@ "source_location": "L137", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews", "community": 10, "community_name": "ReviewsService", - "norm_label": ".getadminreviews()" + "norm_label": ".getadminreviews()", + "id": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews" }, { "label": ".getProductReviews()", @@ -5900,10 +5865,10 @@ "source_location": "L81", "_callable": true, "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews", "community": 10, "community_name": "ReviewsService", - "norm_label": ".getproductreviews()" + "norm_label": ".getproductreviews()", + "id": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews" }, { "label": "formatPriceWithCommas()", @@ -5912,10 +5877,10 @@ "source_location": "L26", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", "community": 104, "community_name": "Coupons.tsx", - "norm_label": "formatpricewithcommas()" + "norm_label": "formatpricewithcommas()", + "id": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas" }, { "label": "PriceInput()", @@ -5924,10 +5889,10 @@ "source_location": "L33", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_priceinput_priceinput", "community": 104, "community_name": "Coupons.tsx", - "norm_label": "priceinput()" + "norm_label": "priceinput()", + "id": "frontend_admin_panel_src_components_ui_priceinput_priceinput" }, { "label": "toEnglishDigits()", @@ -5936,10 +5901,10 @@ "source_location": "L18", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", "community": 104, "community_name": "Coupons.tsx", - "norm_label": "toenglishdigits()" + "norm_label": "toenglishdigits()", + "id": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits" }, { "label": "CouponModal()", @@ -5948,10 +5913,10 @@ "source_location": "L317", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_couponmodal", "community": 104, "community_name": "Coupons.tsx", - "norm_label": "couponmodal()" + "norm_label": "couponmodal()", + "id": "frontend_admin_panel_src_pages_coupons_couponmodal" }, { "label": "Coupons()", @@ -5960,10 +5925,10 @@ "source_location": "L48", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons_coupons", "community": 104, "community_name": "Coupons.tsx", - "norm_label": "coupons()" + "norm_label": "coupons()", + "id": "frontend_admin_panel_src_pages_coupons_coupons" }, { "label": "FinancialSettingsPage()", @@ -5972,1618 +5937,10 @@ "source_location": "L11", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", "community": 104, "community_name": "Coupons.tsx", - "norm_label": "financialsettingspage()" - }, - { - "label": "ShippingSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_shippingsettingspage_shippingsettingspage", - "community": 104, - "community_name": "Coupons.tsx", - "norm_label": "shippingsettingspage()" - }, - { - "label": "CustomTooltip()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_customtooltip", - "community": 106, - "community_name": "Reports.tsx", - "norm_label": "customtooltip()" - }, - { - "label": "Reports()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_reports", - "community": 106, - "community_name": "Reports.tsx", - "norm_label": "reports()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", - "community": 108, - "community_name": "PrismaService", - "norm_label": ".constructor()" - }, - { - "label": ".ensureTablesExist()", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist", - "community": 108, - "community_name": "PrismaService", - "norm_label": ".ensuretablesexist()" - }, - { - "label": ".onModuleDestroy()", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L96", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy", - "community": 108, - "community_name": "PrismaService", - "norm_label": ".onmoduledestroy()" - }, - { - "label": ".onModuleInit()", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit", - "community": 108, - "community_name": "PrismaService", - "norm_label": ".onmoduleinit()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor", - "community": 108, - "community_name": "PrismaService", - "norm_label": ".constructor()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor", - "community": 108, - "community_name": "PrismaService", - "norm_label": ".constructor()" - }, - { - "label": "ConfirmModal()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "confirmmodal()" - }, - { - "label": "getFileType()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_mediaselector_getfiletype", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "getfiletype()" - }, - { - "label": "MediaSelector()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "mediaselector()" - }, - { - "label": "Modal()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_modal_modal", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "modal()" - }, - { - "label": "Pagination()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_pagination_pagination", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "pagination()" - }, - { - "label": "Spinner()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", - "source_location": "L2", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_spinner_spinner", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "spinner()" - }, - { - "label": "BannersManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_bannersmanager_bannersmanager", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "bannersmanager()" - }, - { - "label": "Categories()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_categories_categories", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "categories()" - }, - { - "label": "DoctorsManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_doctorsmanager_doctorsmanager", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "doctorsmanager()" - }, - { - "label": "FAQManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_faqmanager_faqmanager", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "faqmanager()" - }, - { - "label": "IngredientsManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "ingredientsmanager()" - }, - { - "label": "getFileType()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_media_getfiletype", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "getfiletype()" - }, - { - "label": "MediaManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_media_mediamanager", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "mediamanager()" - }, - { - "label": "Pets()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_pets_pets", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "pets()" - }, - { - "label": "Products()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L70", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_products_products", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "products()" - }, - { - "label": "SslSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "sslsettingspage()" - }, - { - "label": "TestimonialsManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "testimonialsmanager()" - }, - { - "label": "Videos()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_videos_videos", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "videos()" - }, - { - "label": "Wiki()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wiki_wiki", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "wiki()" - }, - { - "label": ".updateReviewStatus()", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L207", - "_callable": true, - "_origin": "ast", - "id": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": ".updatereviewstatus()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/app.controller.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "backend_src_app_controller_appcontroller_constructor", - "community": 114, - "community_name": "AppService", - "norm_label": ".constructor()" - }, - { - "label": ".getHello()", - "file_type": "code", - "source_file": "backend/src/app.controller.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_src_app_controller_appcontroller_gethello", - "community": 114, - "community_name": "AppService", - "norm_label": ".gethello()" - }, - { - "label": ".getHello()", - "file_type": "code", - "source_file": "backend/src/app.service.ts", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "backend_src_app_service_appservice_gethello", - "community": 114, - "community_name": "AppService", - "norm_label": ".gethello()" - }, - { - "label": "GlobalLoading()", - "file_type": "code", - "source_file": "frontend/application/app/loading.tsx", - "source_location": "L4", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_loading_globalloading", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "globalloading()" - }, - { - "label": "FeaturedProducts()", - "file_type": "code", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L144", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_featuredproducts_featuredproducts", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "featuredproducts()" - }, - { - "label": "OrderDetailsModal()", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "orderdetailsmodal()" - }, - { - "label": "getStatusIcon()", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L282", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "getstatusicon()" - }, - { - "label": "getStatusLabel()", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L302", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "getstatuslabel()" - }, - { - "label": "OrderRowSkeleton()", - "file_type": "code", - "source_file": "frontend/application/components/Skeleton.tsx", - "source_location": "L70", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_skeleton_orderrowskeleton", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "orderrowskeleton()" - }, - { - "label": "PetProfileSkeleton()", - "file_type": "code", - "source_file": "frontend/application/components/Skeleton.tsx", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_skeleton_petprofileskeleton", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "petprofileskeleton()" - }, - { - "label": "ProductCardSkeleton()", - "file_type": "code", - "source_file": "frontend/application/components/Skeleton.tsx", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_skeleton_productcardskeleton", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "productcardskeleton()" - }, - { - "label": "Skeleton()", - "file_type": "code", - "source_file": "frontend/application/components/Skeleton.tsx", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_skeleton_skeleton", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "skeleton()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_constructor", - "community": 122, - "community_name": "AuthService", - "norm_label": ".constructor()" - }, - { - "label": ".getInstance()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_getinstance", - "community": 122, - "community_name": "AuthService", - "norm_label": ".getinstance()" - }, - { - "label": ".getProfile()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L121", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_getprofile", - "community": 122, - "community_name": "AuthService", - "norm_label": ".getprofile()" - }, - { - "label": ".login()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L103", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_login", - "community": 122, - "community_name": "AuthService", - "norm_label": ".login()" - }, - { - "label": ".logout()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L152", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_logout", - "community": 122, - "community_name": "AuthService", - "norm_label": ".logout()" - }, - { - "label": ".register()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L85", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_register", - "community": 122, - "community_name": "AuthService", - "norm_label": ".register()" - }, - { - "label": ".sendOtp()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_sendotp", - "community": 122, - "community_name": "AuthService", - "norm_label": ".sendotp()" - }, - { - "label": ".updateProfile()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L138", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_updateprofile", - "community": 122, - "community_name": "AuthService", - "norm_label": ".updateprofile()" - }, - { - "label": ".verifyOtp()", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_authservice_authservice_verifyotp", - "community": 122, - "community_name": "AuthService", - "norm_label": ".verifyotp()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_constructor", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".constructor()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_constructor", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".constructor()" - }, - { - "label": ".createBlog()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L85", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_createblog", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".createblog()" - }, - { - "label": ".createBlogCategory()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L243", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_createblogcategory", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".createblogcategory()" - }, - { - "label": ".createBlogTag()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L265", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_createblogtag", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".createblogtag()" - }, - { - "label": ".deleteBlog()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L209", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_deleteblog", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".deleteblog()" - }, - { - "label": ".deleteBlogCategory()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L251", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_deleteblogcategory", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".deleteblogcategory()" - }, - { - "label": ".deleteBlogTag()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L277", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_deleteblogtag", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".deleteblogtag()" - }, - { - "label": ".deleteComment()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L332", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_deletecomment", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".deletecomment()" - }, - { - "label": ".getAuthors()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L218", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_getauthors", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".getauthors()" - }, - { - "label": ".getBlogById()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_getblogbyid", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".getblogbyid()" - }, - { - "label": ".getBlogCategories()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L232", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_getblogcategories", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".getblogcategories()" - }, - { - "label": ".getBlogs()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_getblogs", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".getblogs()" - }, - { - "label": ".getBlogTags()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L256", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_getblogtags", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".getblogtags()" - }, - { - "label": ".getComments()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L282", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_getcomments", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".getcomments()" - }, - { - "label": ".updateBlog()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L144", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_updateblog", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".updateblog()" - }, - { - "label": ".updateBlogCategory()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L247", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_updateblogcategory", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".updateblogcategory()" - }, - { - "label": ".updateCommentStatus()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L316", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_service_blogsservice_updatecommentstatus", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".updatecommentstatus()" - }, - { - "label": ".revalidateBlog()", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L99", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog", - "community": 123, - "community_name": "BlogsService", - "norm_label": ".revalidateblog()" - }, - { - "label": ".adjustWallet()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L97", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_adjustwallet", - "community": 128, - "community_name": "AdminService", - "norm_label": ".adjustwallet()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_constructor", - "community": 128, - "community_name": "AdminService", - "norm_label": ".constructor()" - }, - { - "label": ".createCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L209", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_createcoupon", - "community": 128, - "community_name": "AdminService", - "norm_label": ".createcoupon()" - }, - { - "label": ".createDoctor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L247", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_createdoctor", - "community": 128, - "community_name": "AdminService", - "norm_label": ".createdoctor()" - }, - { - "label": ".createProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L128", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_createproduct", - "community": 128, - "community_name": "AdminService", - "norm_label": ".createproduct()" - }, - { - "label": ".createUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L51", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_createuser", - "community": 128, - "community_name": "AdminService", - "norm_label": ".createuser()" - }, - { - "label": ".deleteCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L233", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_deletecoupon", - "community": 128, - "community_name": "AdminService", - "norm_label": ".deletecoupon()" - }, - { - "label": ".deleteDoctor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L280", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_deletedoctor", - "community": 128, - "community_name": "AdminService", - "norm_label": ".deletedoctor()" - }, - { - "label": ".deleteProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L145", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_deleteproduct", - "community": 128, - "community_name": "AdminService", - "norm_label": ".deleteproduct()" - }, - { - "label": ".deleteUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L80", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_deleteuser", - "community": 128, - "community_name": "AdminService", - "norm_label": ".deleteuser()" - }, - { - "label": ".getOrderById()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L162", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getorderbyid", - "community": 128, - "community_name": "AdminService", - "norm_label": ".getorderbyid()" - }, - { - "label": ".getSettings()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L287", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getsettings", - "community": 128, - "community_name": "AdminService", - "norm_label": ".getsettings()" - }, - { - "label": ".getUserDetails()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L62", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getuserdetails", - "community": 128, - "community_name": "AdminService", - "norm_label": ".getuserdetails()" - }, - { - "label": ".refundOrderToWallet()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L184", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", - "community": 128, - "community_name": "AdminService", - "norm_label": ".refundordertowallet()" - }, - { - "label": ".toggleCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L223", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_togglecoupon", - "community": 128, - "community_name": "AdminService", - "norm_label": ".togglecoupon()" - }, - { - "label": ".updateCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L216", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updatecoupon()" - }, - { - "label": ".updateDoctor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L263", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updatedoctor", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updatedoctor()" - }, - { - "label": ".updateOrderStatus()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L169", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updateorderstatus()" - }, - { - "label": ".updateProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L135", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updateproduct", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updateproduct()" - }, - { - "label": ".updateSettings()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L294", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updatesettings", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updatesettings()" - }, - { - "label": ".updateUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L69", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updateuser", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updateuser()" - }, - { - "label": ".updateUserRole()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L90", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_updateuserrole", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updateuserrole()" - }, - { - "label": ".adjustUserWallet()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L970", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_adjustuserwallet", - "community": 128, - "community_name": "AdminService", - "norm_label": ".adjustuserwallet()" - }, - { - "label": ".createCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L772", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_createcoupon", - "community": 128, - "community_name": "AdminService", - "norm_label": ".createcoupon()" - }, - { - "label": ".createDoctor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L943", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_createdoctor", - "community": 128, - "community_name": "AdminService", - "norm_label": ".createdoctor()" - }, - { - "label": ".createProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L399", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_createproduct", - "community": 128, - "community_name": "AdminService", - "norm_label": ".createproduct()" - }, - { - "label": ".createUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L177", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_createuser", - "community": 128, - "community_name": "AdminService", - "norm_label": ".createuser()" - }, - { - "label": ".deleteCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L836", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_deletecoupon", - "community": 128, - "community_name": "AdminService", - "norm_label": ".deletecoupon()" - }, - { - "label": ".deleteDoctor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L966", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_deletedoctor", - "community": 128, - "community_name": "AdminService", - "norm_label": ".deletedoctor()" - }, - { - "label": ".deleteUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L288", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_deleteuser", - "community": 128, - "community_name": "AdminService", - "norm_label": ".deleteuser()" - }, - { - "label": ".getOrderById()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L631", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getorderbyid", - "community": 128, - "community_name": "AdminService", - "norm_label": ".getorderbyid()" - }, - { - "label": ".getPets()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L887", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getpets", - "community": 128, - "community_name": "AdminService", - "norm_label": ".getpets()" - }, - { - "label": ".getSettings()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L842", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getsettings", - "community": 128, - "community_name": "AdminService", - "norm_label": ".getsettings()" - }, - { - "label": ".getUserDetails()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L163", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getuserdetails", - "community": 128, - "community_name": "AdminService", - "norm_label": ".getuserdetails()" - }, - { - "label": ".refundOrderToWallet()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L673", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_refundordertowallet", - "community": 128, - "community_name": "AdminService", - "norm_label": ".refundordertowallet()" - }, - { - "label": ".toggleCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L829", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_togglecoupon", - "community": 128, - "community_name": "AdminService", - "norm_label": ".togglecoupon()" - }, - { - "label": ".updateCoupon()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L799", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updatecoupon", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updatecoupon()" - }, - { - "label": ".updateDoctor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L953", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updatedoctor", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updatedoctor()" - }, - { - "label": ".updateOrderStatus()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L653", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updateorderstatus", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updateorderstatus()" - }, - { - "label": ".updateProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L468", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updateproduct", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updateproduct()" - }, - { - "label": ".updateSettings()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L850", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updatesettings", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updatesettings()" - }, - { - "label": ".updateUser()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L220", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updateuser", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updateuser()" - }, - { - "label": ".updateUserRole()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L281", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_updateuserrole", - "community": 128, - "community_name": "AdminService", - "norm_label": ".updateuserrole()" - }, - { - "label": ".componentDidCatch()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_componentdidcatch", - "community": 129, - "community_name": "RouteErrorBoundary", - "norm_label": ".componentdidcatch()" - }, - { - "label": ".getDerivedStateFromError()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_getderivedstatefromerror", - "community": 129, - "community_name": "RouteErrorBoundary", - "norm_label": ".getderivedstatefromerror()" - }, - { - "label": ".handleGoHome()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_handlegohome", - "community": 129, - "community_name": "RouteErrorBoundary", - "norm_label": ".handlegohome()" - }, - { - "label": ".handleReload()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_handlereload", - "community": 129, - "community_name": "RouteErrorBoundary", - "norm_label": ".handlereload()" - }, - { - "label": ".render()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_render", - "community": 129, - "community_name": "RouteErrorBoundary", - "norm_label": ".render()" - }, - { - "label": "generateOpenApi()", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "generateopenapi()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L90", - "_callable": true, - "_origin": "ast", - "id": "backend_src_app_module_appmodule_constructor", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": ".constructor()" - }, - { - "label": ".catch()", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": ".catch()" - }, - { - "label": ".deriveErrorCode()", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L117", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": ".deriveerrorcode()" - }, - { - "label": ".translateGenericMessage()", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": ".translategenericmessage()" - }, - { - "label": ".catch()", - "file_type": "code", - "source_file": "backend/src/common/filters/prisma-exception.filter.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": ".catch()" - }, - { - "label": ".intercept()", - "file_type": "code", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": ".intercept()" - }, - { - "label": ".transform()", - "file_type": "code", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": ".transform()" - }, - { - "label": "bootstrap()", - "file_type": "code", - "source_file": "backend/src/main.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "backend_src_main_bootstrap", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "bootstrap()" - }, - { - "label": "cmd_next_task()", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L105", - "_callable": true, - "_origin": "ast", - "id": "ai_agency_orchestrate_cmd_next_task", - "community": 132, - "community_name": "orchestrate.py", - "norm_label": "cmd_next_task()" - }, - { - "label": "cmd_progress()", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L75", - "_callable": true, - "_origin": "ast", - "id": "ai_agency_orchestrate_cmd_progress", - "community": 132, - "community_name": "orchestrate.py", - "norm_label": "cmd_progress()" - }, - { - "label": "cmd_reset()", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L143", - "_callable": true, - "_origin": "ast", - "id": "ai_agency_orchestrate_cmd_reset", - "community": 132, - "community_name": "orchestrate.py", - "norm_label": "cmd_reset()" - }, - { - "label": "cmd_status()", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "ai_agency_orchestrate_cmd_status", - "community": 132, - "community_name": "orchestrate.py", - "norm_label": "cmd_status()" - }, - { - "label": "cmd_unblock()", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L128", - "_callable": true, - "_origin": "ast", - "id": "ai_agency_orchestrate_cmd_unblock", - "community": 132, - "community_name": "orchestrate.py", - "norm_label": "cmd_unblock()" - }, - { - "label": "load_json()", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "ai_agency_orchestrate_load_json", - "community": 132, - "community_name": "orchestrate.py", - "norm_label": "load_json()" - }, - { - "label": "main()", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L180", - "_callable": true, - "_origin": "ast", - "id": "ai_agency_orchestrate_main", - "community": 132, - "community_name": "orchestrate.py", - "norm_label": "main()" - }, - { - "label": "save_json()", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "ai_agency_orchestrate_save_json", - "community": 132, - "community_name": "orchestrate.py", - "norm_label": "save_json()" + "norm_label": "financialsettingspage()", + "id": "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage" }, { "label": "Blog()", @@ -7592,10 +5949,10 @@ "source_location": "L75", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_blog_page_blog", "community": 134, "community_name": "blog/page.tsx", - "norm_label": "blog()" + "norm_label": "blog()", + "id": "frontend_application_app_blog_page_blog" }, { "label": "generateMetadata()", @@ -7604,10 +5961,10 @@ "source_location": "L5", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_blog_page_generatemetadata", "community": 134, "community_name": "blog/page.tsx", - "norm_label": "generatemetadata()" + "norm_label": "generatemetadata()", + "id": "frontend_application_app_blog_page_generatemetadata" }, { "label": "getBlogs()", @@ -7616,10 +5973,10 @@ "source_location": "L31", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_blog_page_getblogs", "community": 134, "community_name": "blog/page.tsx", - "norm_label": "getblogs()" + "norm_label": "getblogs()", + "id": "frontend_application_app_blog_page_getblogs" }, { "label": "getCategories()", @@ -7628,10 +5985,10 @@ "source_location": "L15", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_blog_page_getcategories", "community": 134, "community_name": "blog/page.tsx", - "norm_label": "getcategories()" + "norm_label": "getcategories()", + "id": "frontend_application_app_blog_page_getcategories" }, { "label": "BlogPage()", @@ -7640,10 +5997,10 @@ "source_location": "L52", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_blogpage_blogpage", "community": 134, "community_name": "blog/page.tsx", - "norm_label": "blogpage()" + "norm_label": "blogpage()", + "id": "frontend_application_components_blogpage_blogpage" }, { "label": "generateMetadata()", @@ -7652,10 +6009,10 @@ "source_location": "L7", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_layout_generatemetadata", "community": 139, "community_name": "layout.tsx", - "norm_label": "generatemetadata()" + "norm_label": "generatemetadata()", + "id": "frontend_application_app_layout_generatemetadata" }, { "label": "RootLayout()", @@ -7664,10 +6021,10 @@ "source_location": "L100", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_layout_rootlayout", "community": 139, "community_name": "layout.tsx", - "norm_label": "rootlayout()" + "norm_label": "rootlayout()", + "id": "frontend_application_app_layout_rootlayout" }, { "label": "generateOrganizationSchema()", @@ -7676,7402 +6033,106 @@ "source_location": "L24", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_schema_generateorganizationschema", "community": 139, "community_name": "layout.tsx", - "norm_label": "generateorganizationschema()" + "norm_label": "generateorganizationschema()", + "id": "frontend_application_lib_schema_generateorganizationschema" }, { - "label": "getBaseURL()", + "label": ".ensureTablesExist()", "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L5", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L14", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_api_getbaseurl", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "getbaseurl()" - }, - { - "label": ".componentDidCatch()", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_errorboundary_errorboundary_componentdidcatch", - "community": 140, - "community_name": "ErrorBoundary", - "norm_label": ".componentdidcatch()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_errorboundary_errorboundary_constructor", - "community": 140, - "community_name": "ErrorBoundary", - "norm_label": ".constructor()" - }, - { - "label": ".getDerivedStateFromError()", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_errorboundary_errorboundary_getderivedstatefromerror", - "community": 140, - "community_name": "ErrorBoundary", - "norm_label": ".getderivedstatefromerror()" - }, - { - "label": ".handleRetry()", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_errorboundary_errorboundary_handleretry", - "community": 140, - "community_name": "ErrorBoundary", - "norm_label": ".handleretry()" - }, - { - "label": ".render()", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_errorboundary_errorboundary_render", - "community": 140, - "community_name": "ErrorBoundary", - "norm_label": ".render()" - }, - { - "label": "waitForBackend()", - "file_type": "code", - "source_file": "scripts/start-dev.js", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "scripts_start_dev_waitforbackend", - "community": 142, - "community_name": "start-dev.js", - "norm_label": "waitforbackend()" - }, - { - "label": "check()", - "file_type": "code", - "source_file": "scripts/start-dev.js", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "scripts_start_dev_waitforbackend_check", - "community": 142, - "community_name": "start-dev.js", - "norm_label": "check()" - }, - { - "label": "generateOpenApi()", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi_generateopenapi", - "community": 143, - "community_name": "generate-openapi.js", - "norm_label": "generateopenapi()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_constructor", - "community": 147, - "community_name": "RevalidationService", - "norm_label": ".constructor()" - }, - { - "label": ".deleteProduct()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L559", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_deleteproduct", - "community": 147, - "community_name": "RevalidationService", - "norm_label": ".deleteproduct()" - }, - { - "label": ".frontendUrl()", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_frontendurl", - "community": 147, - "community_name": "RevalidationService", - "norm_label": ".frontendurl()" - }, - { - "label": ".revalidatePath()", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatepath", - "community": 147, - "community_name": "RevalidationService", - "norm_label": ".revalidatepath()" - }, - { - "label": ".revalidateProduct()", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L79", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", - "community": 147, - "community_name": "RevalidationService", - "norm_label": ".revalidateproduct()" - }, - { - "label": ".revalidateSettings()", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L115", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatesettings", - "community": 147, - "community_name": "RevalidationService", - "norm_label": ".revalidatesettings()" - }, - { - "label": ".revalidateTag()", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatetag", - "community": 147, - "community_name": "RevalidationService", - "norm_label": ".revalidatetag()" - }, - { - "label": ".secret()", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_secret", - "community": 147, - "community_name": "RevalidationService", - "norm_label": ".secret()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_service_productsservice_constructor", - "community": 147, - "community_name": "RevalidationService", - "norm_label": ".constructor()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_wiki_slug_page_generatemetadata", - "community": 148, - "community_name": "wiki/[slug]/page.tsx", - "norm_label": "generatemetadata()" - }, - { - "label": "getRelatedProducts()", - "file_type": "code", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_wiki_slug_page_getrelatedproducts", - "community": 148, - "community_name": "wiki/[slug]/page.tsx", - "norm_label": "getrelatedproducts()" - }, - { - "label": "getWikiTerm()", - "file_type": "code", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_wiki_slug_page_getwikiterm", - "community": 148, - "community_name": "wiki/[slug]/page.tsx", - "norm_label": "getwikiterm()" - }, - { - "label": "WikiTermPage()", - "file_type": "code", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L78", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_wiki_slug_page_wikitermpage", - "community": 148, - "community_name": "wiki/[slug]/page.tsx", - "norm_label": "wikitermpage()" - }, - { - "label": "generateMedicalWebPageSchema()", - "file_type": "code", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L159", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_schema_generatemedicalwebpageschema", - "community": 148, - "community_name": "wiki/[slug]/page.tsx", - "norm_label": "generatemedicalwebpageschema()" - }, - { - "label": "SmsSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L93", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", - "community": 149, - "community_name": "SmsSettingsPage.tsx", - "norm_label": "smssettingspage()" - }, - { - "label": "toPersianDigits()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L87", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage_topersiandigits", - "community": 149, - "community_name": "SmsSettingsPage.tsx", - "norm_label": "topersiandigits()" - }, - { - "label": "ProtectedRoute()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_protectedroute_protectedroute", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "protectedroute()" - }, - { - "label": "B2BManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_b2bmanager_b2bmanager", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "b2bmanager()" - }, - { - "label": "Login()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Login.tsx", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_login_login", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "login()" - }, - { - "label": "SeoSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "seosettingspage()" - }, - { - "label": "SmartAdvisorManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "smartadvisormanager()" - }, - { - "label": "SystemSettingsPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "systemsettingspage()" - }, - { - "label": "processQueue()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_services_api_processqueue", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "processqueue()" - }, - { - "label": ".getDashboardStats()", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".getdashboardstats()" - }, - { - "label": ".getDashboardStats()", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getdashboardstats", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".getdashboardstats()" - }, - { - "label": ".configure()", - "file_type": "code", - "source_file": "backend/src/app.module.ts", - "source_location": "L92", - "_callable": true, - "_origin": "ast", - "id": "backend_src_app_module_appmodule_configure", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".configure()" - }, - { - "label": ".adminLogin()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L263", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_adminlogin", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".adminlogin()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_constructor", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".constructor()" - }, - { - "label": ".login()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L222", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_login", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".login()" - }, - { - "label": ".refresh()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L319", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_refresh", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".refresh()" - }, - { - "label": ".register()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L167", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_register", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".register()" - }, - { - "label": ".sendOtp()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_sendotp", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".sendotp()" - }, - { - "label": ".verifyOtp()", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L126", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_service_authservice_verifyotp", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".verifyotp()" - }, - { - "label": ".incrementRequestCount()", - "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".incrementrequestcount()" - }, - { - "label": "normalizeMobile()", - "file_type": "code", - "source_file": "backend/src/common/utils/phone.utils.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_utils_phone_utils_normalizemobile", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "normalizemobile()" - }, - { - "label": ".del()", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_del", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".del()" - }, - { - "label": ".get()", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_get", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".get()" - }, - { - "label": ".incr()", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_incr", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".incr()" + "community": 108, + "community_name": "PrismaService", + "norm_label": ".ensuretablesexist()", + "id": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist" }, { "label": ".onModuleDestroy()", "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_onmoduledestroy", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".onmoduledestroy()" - }, - { - "label": ".onModuleInit()", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_onmoduleinit", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".onmoduleinit()" - }, - { - "label": ".set()", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_set", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".set()" - }, - { - "label": ".ttl()", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "backend_src_redis_redis_service_redisservice_ttl", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": ".ttl()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_trust_seals_page_generatemetadata", - "community": 152, - "community_name": "trust-seals/page.tsx", - "norm_label": "generatemetadata()" - }, - { - "label": "TrustSealsPage()", - "file_type": "code", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_trust_seals_page_trustsealspage", - "community": 152, - "community_name": "trust-seals/page.tsx", - "norm_label": "trustsealspage()" - }, - { - "label": "EnamadBadge()", - "file_type": "code", - "source_file": "frontend/application/components/EnamadBadge.tsx", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_enamadbadge_enamadbadge", - "community": 152, - "community_name": "trust-seals/page.tsx", - "norm_label": "enamadbadge()" - }, - { - "label": "runSeoBackfill()", - "file_type": "code", - "source_file": "backend/scripts/seo-backfill.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_scripts_seo_backfill_runseobackfill", - "community": 155, - "community_name": "seo-backfill.ts", - "norm_label": "runseobackfill()" - }, - { - "label": "stripHtml()", - "file_type": "code", - "source_file": "backend/scripts/seo-backfill.ts", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "backend_scripts_seo_backfill_striphtml", - "community": 155, - "community_name": "seo-backfill.ts", - "norm_label": "striphtml()" - }, - { - "label": "ErrorBoundary()", - "file_type": "code", - "source_file": "frontend/application/app/error.tsx", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_error_errorboundary", - "community": 157, - "community_name": "ErrorPages.tsx", - "norm_label": "errorboundary()" - }, - { - "label": "NotFound()", - "file_type": "code", - "source_file": "frontend/application/app/not-found.tsx", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_not_found_notfound", - "community": 157, - "community_name": "ErrorPages.tsx", - "norm_label": "notfound()" - }, - { - "label": "NotFoundPage()", - "file_type": "code", - "source_file": "frontend/application/components/ErrorPages.tsx", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_errorpages_notfoundpage", - "community": 157, - "community_name": "ErrorPages.tsx", - "norm_label": "notfoundpage()" - }, - { - "label": "ServerErrorPage()", - "file_type": "code", - "source_file": "frontend/application/components/ErrorPages.tsx", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_errorpages_servererrorpage", - "community": 157, - "community_name": "ErrorPages.tsx", - "norm_label": "servererrorpage()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_doctorscontroller_constructor", - "community": 16, - "community_name": "DoctorQueryDto", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_doctorscontroller_create", - "community": 16, - "community_name": "DoctorQueryDto", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_doctorscontroller_findall", - "community": 16, - "community_name": "DoctorQueryDto", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_doctorscontroller_findone", - "community": 16, - "community_name": "DoctorQueryDto", - "norm_label": ".findone()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_doctorscontroller_remove", - "community": 16, - "community_name": "DoctorQueryDto", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_doctorscontroller_update", - "community": 16, - "community_name": "DoctorQueryDto", - "norm_label": ".update()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "backend_src_doctors_doctors_service_doctorsservice_constructor", - "community": 16, - "community_name": "DoctorQueryDto", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L76", - "_callable": true, - "_origin": "ast", - "id": "backend_src_doctors_doctors_service_doctorsservice_create", - "community": 16, - "community_name": "DoctorQueryDto", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "backend_src_doctors_doctors_service_doctorsservice_findall", - "community": 16, - "community_name": "DoctorQueryDto", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "backend_src_doctors_doctors_service_doctorsservice_findone", - "community": 16, - "community_name": "DoctorQueryDto", - "norm_label": ".findone()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "id": "backend_src_doctors_doctors_service_doctorsservice_remove", - "community": 16, - "community_name": "DoctorQueryDto", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L82", - "_callable": true, - "_origin": "ast", - "id": "backend_src_doctors_doctors_service_doctorsservice_update", - "community": 16, - "community_name": "DoctorQueryDto", - "norm_label": ".update()" - }, - { - "label": "checkAndOpen()", - "file_type": "code", - "source_file": "scripts/open-browsers.js", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "scripts_open_browsers_checkandopen", - "community": 166, - "community_name": "open-browsers.js", - "norm_label": "checkandopen()" - }, - { - "label": "openUrl()", - "file_type": "code", - "source_file": "scripts/open-browsers.js", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "scripts_open_browsers_openurl", - "community": 166, - "community_name": "open-browsers.js", - "norm_label": "openurl()" - }, - { - "label": "createPaginatedSchema()", - "file_type": "code", - "source_file": "backend/src/common/schemas/paginated-response.schema.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_schemas_paginated_response_schema_createpaginatedschema", - "community": 169, - "community_name": "paginated-response.schema.ts", - "norm_label": "createpaginatedschema()" - }, - { - "label": "B2BPage()", - "file_type": "code", - "source_file": "frontend/application/app/b2b/page.tsx", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_b2b_page_b2bpage", - "community": 17, - "community_name": "schema.ts", - "norm_label": "b2bpage()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/b2b/page.tsx", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_b2b_page_generatemetadata", - "community": 17, - "community_name": "schema.ts", - "norm_label": "generatemetadata()" - }, - { - "label": "ContactPage()", - "file_type": "code", - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_contact_page_contactpage", - "community": 17, - "community_name": "schema.ts", - "norm_label": "contactpage()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_contact_page_generatemetadata", - "community": 17, - "community_name": "schema.ts", - "norm_label": "generatemetadata()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_videos_page_generatemetadata", - "community": 17, - "community_name": "schema.ts", - "norm_label": "generatemetadata()" - }, - { - "label": "getInitialVideos()", - "file_type": "code", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_videos_page_getinitialvideos", - "community": 17, - "community_name": "schema.ts", - "norm_label": "getinitialvideos()" - }, - { - "label": "Videos()", - "file_type": "code", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_videos_page_videos", - "community": 17, - "community_name": "schema.ts", - "norm_label": "videos()" - }, - { - "label": "ContactFormClient()", - "file_type": "code", - "source_file": "frontend/application/components/ContactFormClient.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_contactformclient_contactformclient", - "community": 17, - "community_name": "schema.ts", - "norm_label": "contactformclient()" - }, - { - "label": "fetchContactInfo()", - "file_type": "code", - "source_file": "frontend/application/components/ContactFormClient.tsx", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo", - "community": 17, - "community_name": "schema.ts", - "norm_label": "fetchcontactinfo()" - }, - { - "label": "VideosPage()", - "file_type": "code", - "source_file": "frontend/application/components/VideosPage.tsx", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_videospage_videospage", - "community": 17, - "community_name": "schema.ts", - "norm_label": "videospage()" - }, - { - "label": "generateB2BServiceSchema()", - "file_type": "code", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L120", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_schema_generateb2bserviceschema", - "community": 17, - "community_name": "schema.ts", - "norm_label": "generateb2bserviceschema()" - }, - { - "label": "generateBreadcrumbSchema()", - "file_type": "code", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L222", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_schema_generatebreadcrumbschema", - "community": 17, - "community_name": "schema.ts", - "norm_label": "generatebreadcrumbschema()" - }, - { - "label": "generateLocalBusinessSchema()", - "file_type": "code", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_schema_generatelocalbusinessschema", - "community": 17, - "community_name": "schema.ts", - "norm_label": "generatelocalbusinessschema()" - }, - { - "label": "generateVideoObjectSchema()", - "file_type": "code", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L195", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_schema_generatevideoobjectschema", - "community": 17, - "community_name": "schema.ts", - "norm_label": "generatevideoobjectschema()" - }, - { - "label": ".addComment()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L342", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_addcomment", - "community": 179, - "community_name": "PaginationDto", - "norm_label": ".addcomment()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_constructor", - "community": 179, - "community_name": "PaginationDto", - "norm_label": ".constructor()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_findall", - "community": 179, - "community_name": "PaginationDto", - "norm_label": ".findall()" - }, - { - "label": ".findCommentsBySlug()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L329", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_findcommentsbyslug", - "community": 179, - "community_name": "PaginationDto", - "norm_label": ".findcommentsbyslug()" - }, - { - "label": ".findHomepage()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L99", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_findhomepage", - "community": 179, - "community_name": "PaginationDto", - "norm_label": ".findhomepage()" - }, - { - "label": ".findOneBySlug()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L140", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_findonebyslug", - "community": 179, - "community_name": "PaginationDto", - "norm_label": ".findonebyslug()" - }, - { - "label": ".getCategories()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L302", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_getcategories", - "community": 179, - "community_name": "PaginationDto", - "norm_label": ".getcategories()" - }, - { - "label": ".getTags()", - "file_type": "code", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L316", - "_callable": true, - "_origin": "ast", - "id": "backend_src_blogs_blogs_service_blogsservice_gettags", - "community": 179, - "community_name": "PaginationDto", - "norm_label": ".gettags()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_service_wikiservice_constructor", - "community": 179, - "community_name": "PaginationDto", - "norm_label": ".constructor()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_service_wikiservice_findall", - "community": 179, - "community_name": "PaginationDto", - "norm_label": ".findall()" - }, - { - "label": ".findOneByKey()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_service_wikiservice_findonebykey", - "community": 179, - "community_name": "PaginationDto", - "norm_label": ".findonebykey()" - }, - { - "label": ".handleRequest()", - "file_type": "code", - "source_file": "backend/src/auth/jwt-auth.guard.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest", - "community": 18, - "community_name": "JwtAuthGuard", - "norm_label": ".handlerequest()" - }, - { - "label": ".canActivate()", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_guards_roles_guard_rolesguard_canactivate", - "community": 18, - "community_name": "JwtAuthGuard", - "norm_label": ".canactivate()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_guards_roles_guard_rolesguard_constructor", - "community": 18, - "community_name": "JwtAuthGuard", - "norm_label": ".constructor()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_metrics_controller_metricscontroller_constructor", - "community": 184, - "community_name": "MetricsController", - "norm_label": ".constructor()" - }, - { - "label": ".getMetrics()", - "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_metrics_controller_metricscontroller_getmetrics", - "community": 184, - "community_name": "MetricsController", - "norm_label": ".getmetrics()" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "backend/prisma/seed-ui-texts.ts", - "source_location": "L135", - "_callable": true, - "_origin": "ast", - "id": "backend_prisma_seed_ui_texts_main", - "community": 186, - "community_name": "seed-ui-texts.ts", - "norm_label": "main()" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "backend/prisma/seed-wiki.ts", - "source_location": "L370", - "_callable": true, - "_origin": "ast", - "id": "backend_prisma_seed_wiki_main", - "community": 187, - "community_name": "seed-wiki.ts", - "norm_label": "main()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_controller_productscontroller_constructor", - "community": 19, - "community_name": "ProductsController", - "norm_label": ".constructor()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L72", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_controller_productscontroller_findone", - "community": 19, - "community_name": "ProductsController", - "norm_label": ".findone()" - }, - { - "label": ".getActiveFilters()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_controller_productscontroller_getactivefilters", - "community": 19, - "community_name": "ProductsController", - "norm_label": ".getactivefilters()" - }, - { - "label": ".getDosageConfig()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_controller_productscontroller_getdosageconfig", - "community": 19, - "community_name": "ProductsController", - "norm_label": ".getdosageconfig()" - }, - { - "label": ".getNavigationFilters()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_controller_productscontroller_getnavigationfilters", - "community": 19, - "community_name": "ProductsController", - "norm_label": ".getnavigationfilters()" - }, - { - "label": ".updateDosageConfig()", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "community": 19, - "community_name": "ProductsController", - "norm_label": ".updatedosageconfig()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L132", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_service_productsservice_findone", - "community": 19, - "community_name": "ProductsController", - "norm_label": ".findone()" - }, - { - "label": ".getActiveFilters()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L193", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_service_productsservice_getactivefilters", - "community": 19, - "community_name": "ProductsController", - "norm_label": ".getactivefilters()" - }, - { - "label": ".getDosageConfig()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L263", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_service_productsservice_getdosageconfig", - "community": 19, - "community_name": "ProductsController", - "norm_label": ".getdosageconfig()" - }, - { - "label": ".getNavigationFilters()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L228", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_service_productsservice_getnavigationfilters", - "community": 19, - "community_name": "ProductsController", - "norm_label": ".getnavigationfilters()" - }, - { - "label": ".updateDosageConfig()", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L274", - "_callable": true, - "_origin": "ast", - "id": "backend_src_products_products_service_productsservice_updatedosageconfig", - "community": 19, - "community_name": "ProductsController", - "norm_label": ".updatedosageconfig()" - }, - { - "label": ".addPattern()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L477", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_addpattern", - "community": 2, - "community_name": "SmsService", - "norm_label": ".addpattern()" - }, - { - "label": ".clearAllSmsLogs()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L255", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_clearallsmslogs", - "community": 2, - "community_name": "SmsService", - "norm_label": ".clearallsmslogs()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_constructor", - "community": 2, - "community_name": "SmsService", - "norm_label": ".constructor()" - }, - { - "label": ".deleteSmsLog()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L248", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_deletesmslog", - "community": 2, - "community_name": "SmsService", - "norm_label": ".deletesmslog()" - }, - { - "label": ".editPattern()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L556", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_editpattern", - "community": 2, - "community_name": "SmsService", - "norm_label": ".editpattern()" - }, - { - "label": ".getCredit()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L300", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_getcredit", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getcredit()" - }, - { - "label": ".getPatterns()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L370", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_getpatterns", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getpatterns()" - }, - { - "label": ".getSmsConfig()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getsmsconfig()" - }, - { - "label": ".getSmsLogs()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L191", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_getsmslogs", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getsmslogs()" - }, - { - "label": ".parsePatternsXml()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L262", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_parsepatternsxml", - "community": 2, - "community_name": "SmsService", - "norm_label": ".parsepatternsxml()" - }, - { - "label": ".postAsmx()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L123", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_postasmx", - "community": 2, - "community_name": "SmsService", - "norm_label": ".postasmx()" - }, - { - "label": ".recordLog()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L159", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_recordlog", - "community": 2, - "community_name": "SmsService", - "norm_label": ".recordlog()" - }, - { - "label": ".saveLocalPattern()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L611", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_savelocalpattern", - "community": 2, - "community_name": "SmsService", - "norm_label": ".savelocalpattern()" - }, - { - "label": ".sendB2bNotification()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L981", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", - "community": 2, - "community_name": "SmsService", - "norm_label": ".sendb2bnotification()" - }, - { - "label": ".sendOrderConfirmation()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L945", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", - "community": 2, - "community_name": "SmsService", - "norm_label": ".sendorderconfirmation()" - }, - { - "label": ".sendOtp()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L932", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendotp", - "community": 2, - "community_name": "SmsService", - "norm_label": ".sendotp()" - }, - { - "label": ".sendPatternSms()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L679", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "community": 2, - "community_name": "SmsService", - "norm_label": ".sendpatternsms()" - }, - { - "label": ".sendPetCareReminder()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L997", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", - "community": 2, - "community_name": "SmsService", - "norm_label": ".sendpetcarereminder()" - }, - { - "label": ".sendShippingNotification()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L964", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", - "community": 2, - "community_name": "SmsService", - "norm_label": ".sendshippingnotification()" - }, - { - "label": ".sendSms()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L1015", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_sendsms", - "community": 2, - "community_name": "SmsService", - "norm_label": ".sendsms()" - }, - { - "label": ".testSms()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L807", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_testsms", - "community": 2, - "community_name": "SmsService", - "norm_label": ".testsms()" - }, - { - "label": ".updateLocalPattern()", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L639", - "_callable": true, - "_origin": "ast", - "id": "backend_src_common_services_sms_service_smsservice_updatelocalpattern", - "community": 2, - "community_name": "SmsService", - "norm_label": ".updatelocalpattern()" - }, - { - "label": ".addPattern()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L238", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "community": 2, - "community_name": "SmsService", - "norm_label": ".addpattern()" - }, - { - "label": ".clearAllSmsLogs()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L283", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "community": 2, - "community_name": "SmsService", - "norm_label": ".clearallsmslogs()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_constructor", - "community": 2, - "community_name": "SmsService", - "norm_label": ".constructor()" - }, - { - "label": ".deleteScientificTerm()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L123", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "community": 2, - "community_name": "SmsService", - "norm_label": ".deletescientificterm()" - }, - { - "label": ".deleteSmsLog()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L274", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "community": 2, - "community_name": "SmsService", - "norm_label": ".deletesmslog()" - }, - { - "label": ".editPattern()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L253", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "community": 2, - "community_name": "SmsService", - "norm_label": ".editpattern()" - }, - { - "label": ".getFinancial()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L86", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getfinancial", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getfinancial()" - }, - { - "label": ".getFinancialSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L149", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getfinancialsettings()" - }, - { - "label": ".getPatterns()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L229", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getpatterns", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getpatterns()" - }, - { - "label": ".getScientificTerms()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L102", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getscientificterms()" - }, - { - "label": ".getSeoSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L130", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getseosettings", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getseosettings()" - }, - { - "label": ".getSmsCredit()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L196", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getsmscredit()" - }, - { - "label": ".getSmsLogs()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L265", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getsmslogs()" - }, - { - "label": ".getSmsSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L187", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getsmssettings()" - }, - { - "label": ".getSystemSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L168", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getsystemsettings()" - }, - { - "label": ".getUiTexts()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L37", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_getuitexts", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getuitexts()" - }, - { - "label": ".patchUiText()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "community": 2, - "community_name": "SmsService", - "norm_label": ".patchuitext()" - }, - { - "label": ".putBulkUiTexts()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L80", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "community": 2, - "community_name": "SmsService", - "norm_label": ".putbulkuitexts()" - }, - { - "label": ".putUiText()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "community": 2, - "community_name": "SmsService", - "norm_label": ".putuitext()" - }, - { - "label": ".testSms()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L214", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_testsms", - "community": 2, - "community_name": "SmsService", - "norm_label": ".testsms()" - }, - { - "label": ".updateFinancial()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", + "source_file": "backend/src/prisma/prisma.service.ts", "source_location": "L96", "_callable": true, "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", - "community": 2, - "community_name": "SmsService", - "norm_label": ".updatefinancial()" - }, - { - "label": ".updateFinancialSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L158", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "community": 2, - "community_name": "SmsService", - "norm_label": ".updatefinancialsettings()" - }, - { - "label": ".updateSeoSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L139", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "community": 2, - "community_name": "SmsService", - "norm_label": ".updateseosettings()" - }, - { - "label": ".updateSmsSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L205", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "community": 2, - "community_name": "SmsService", - "norm_label": ".updatesmssettings()" - }, - { - "label": ".updateSystemSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L177", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "community": 2, - "community_name": "SmsService", - "norm_label": ".updatesystemsettings()" - }, - { - "label": ".upsertScientificTerm()", - "file_type": "code", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L111", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "community": 2, - "community_name": "SmsService", - "norm_label": ".upsertscientificterm()" - }, - { - "label": ".addPattern()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L608", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_addpattern", - "community": 2, - "community_name": "SmsService", - "norm_label": ".addpattern()" - }, - { - "label": ".clearAllSmsLogs()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L624", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", - "community": 2, - "community_name": "SmsService", - "norm_label": ".clearallsmslogs()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L148", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_constructor", - "community": 2, - "community_name": "SmsService", - "norm_label": ".constructor()" - }, - { - "label": ".deleteScientificTerm()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L397", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_deletescientificterm", - "community": 2, - "community_name": "SmsService", - "norm_label": ".deletescientificterm()" - }, - { - "label": ".deleteSmsLog()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L620", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_deletesmslog", - "community": 2, - "community_name": "SmsService", - "norm_label": ".deletesmslog()" - }, - { - "label": ".editPattern()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L612", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_editpattern", - "community": 2, - "community_name": "SmsService", - "norm_label": ".editpattern()" - }, - { - "label": ".getCategorySetting()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L403", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getcategorysetting", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getcategorysetting()" - }, - { - "label": ".getFinancialSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L270", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getfinancialsettings()" - }, - { - "label": ".getPatterns()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L604", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getpatterns", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getpatterns()" - }, - { - "label": ".getScientificTerms()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L372", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getscientificterms", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getscientificterms()" - }, - { - "label": ".getSmsCredit()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L587", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getsmscredit", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getsmscredit()" - }, - { - "label": ".getSmsLogs()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L616", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getsmslogs", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getsmslogs()" - }, - { - "label": ".getSmsSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L583", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getsmssettings", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getsmssettings()" - }, - { - "label": ".getUiTexts()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L184", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_getuitexts", - "community": 2, - "community_name": "SmsService", - "norm_label": ".getuitexts()" + "community": 108, + "community_name": "PrismaService", + "norm_label": ".onmoduledestroy()", + "id": "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy" }, { "label": ".onModuleInit()", "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L153", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L9", "_callable": true, "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_onmoduleinit", - "community": 2, - "community_name": "SmsService", - "norm_label": ".onmoduleinit()" + "community": 108, + "community_name": "PrismaService", + "norm_label": ".onmoduleinit()", + "id": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit" }, { - "label": ".seedDefaultUiTexts()", + "label": "ConfirmModal()", "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L157", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", - "community": 2, - "community_name": "SmsService", - "norm_label": ".seeddefaultuitexts()" - }, - { - "label": ".testSms()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L600", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_testsms", - "community": 2, - "community_name": "SmsService", - "norm_label": ".testsms()" - }, - { - "label": ".updateBulkUiTexts()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L261", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", - "community": 2, - "community_name": "SmsService", - "norm_label": ".updatebulkuitexts()" - }, - { - "label": ".updateCategorySetting()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L499", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", - "community": 2, - "community_name": "SmsService", - "norm_label": ".updatecategorysetting()" - }, - { - "label": ".updateFinancialSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L326", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", - "community": 2, - "community_name": "SmsService", - "norm_label": ".updatefinancialsettings()" - }, - { - "label": ".updateSmsSettings()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L591", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_updatesmssettings", - "community": 2, - "community_name": "SmsService", - "norm_label": ".updatesmssettings()" - }, - { - "label": ".updateUiText()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L229", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_updateuitext", - "community": 2, - "community_name": "SmsService", - "norm_label": ".updateuitext()" - }, - { - "label": ".upsertScientificTerm()", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L376", - "_callable": true, - "_origin": "ast", - "id": "backend_src_settings_settings_service_settingsservice_upsertscientificterm", - "community": 2, - "community_name": "SmsService", - "norm_label": ".upsertscientificterm()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_controller_videoscontroller_constructor", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_controller_videoscontroller_create", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_controller_videoscontroller_findall", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_controller_videoscontroller_findone", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": ".findone()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_controller_videoscontroller_remove", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_controller_videoscontroller_update", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": ".update()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", + "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", "source_location": "L15", "_callable": true, "_origin": "ast", - "id": "backend_src_videos_videos_service_videosservice_constructor", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": ".constructor()" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "confirmmodal()", + "id": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal" }, { - "label": ".create()", + "label": "getFileType()", "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L75", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_service_videosservice_create", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_service_videosservice_findall", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L60", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_service_videosservice_findone", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": ".findone()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L105", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_service_videosservice_remove", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L93", - "_callable": true, - "_origin": "ast", - "id": "backend_src_videos_videos_service_videosservice_update", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": ".update()" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "backend/prisma/seed-blogs.ts", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "backend_prisma_seed_blogs_main", - "community": 206, - "community_name": "seed-blogs.ts", - "norm_label": "main()" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "backend/prisma/seed-custom.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "backend_prisma_seed_custom_main", - "community": 207, - "community_name": "seed-custom.ts", - "norm_label": "main()" - }, - { - "label": "PodcastInlinePlayer()", - "file_type": "code", - "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "podcastinlineplayer()" - }, - { - "label": "handleClickOutside()", - "file_type": "code", - "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayer_handleclickoutside", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "handleclickoutside()" - }, - { - "label": "ProductPage()", - "file_type": "code", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L78", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_productpage_productpage", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "productpage()" - }, - { - "label": "ProductReviews()", - "file_type": "code", - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_productreviews_productreviews", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "productreviews()" - }, - { - "label": "Tooltip()", - "file_type": "code", - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_tooltip_tooltip", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "tooltip()" - }, - { - "label": "FormField()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/FormField.tsx", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_formfield_formfield", - "community": 219, - "community_name": "FormField.tsx", - "norm_label": "formfield()" - }, - { - "label": "PaymentVerifyPage()", - "file_type": "code", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L319", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_payment_verify_page_paymentverifypage", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "paymentverifypage()" - }, - { - "label": "VerifyContent()", - "file_type": "code", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_payment_verify_page_verifycontent", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "verifycontent()" - }, - { - "label": "AddressModal()", - "file_type": "code", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_addressmodal_addressmodal", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "addressmodal()" - }, - { - "label": "ArchiveProductCard()", - "file_type": "code", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L74", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_archivepage_archiveproductcard", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "archiveproductcard()" - }, - { - "label": "B2BPortal()", - "file_type": "code", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_b2bportal_b2bportal", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "b2bportal()" - }, - { - "label": "BackButton()", - "file_type": "code", - "source_file": "frontend/application/components/BackButton.tsx", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_backbutton_backbutton", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "backbutton()" - }, - { - "label": "CheckoutPage()", - "file_type": "code", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_checkoutpage_checkoutpage", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "checkoutpage()" - }, - { - "label": "DeleteConfirmModal()", - "file_type": "code", - "source_file": "frontend/application/components/DeleteConfirmModal.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "deleteconfirmmodal()" - }, - { - "label": "ProductCard()", - "file_type": "code", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_featuredproducts_productcard", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "productcard()" - }, - { - "label": "Header()", - "file_type": "code", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_header_header", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "header()" - }, - { - "label": "handleClickOutside()", - "file_type": "code", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L180", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_header_header_handleclickoutside", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "handleclickoutside()" - }, - { - "label": "HeaderButton()", - "file_type": "code", - "source_file": "frontend/application/components/HeaderButton.tsx", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_headerbutton_headerbutton", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "headerbutton()" - }, - { - "label": "LoginModal()", - "file_type": "code", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_loginmodal_loginmodal", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "loginmodal()" - }, - { - "label": "PetProfile()", - "file_type": "code", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_petprofile_petprofile", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "petprofile()" - }, - { - "label": "PrescriptionUploadModal()", - "file_type": "code", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "prescriptionuploadmodal()" - }, - { - "label": "SearchableSelect()", - "file_type": "code", - "source_file": "frontend/application/components/SearchableSelect.tsx", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_searchableselect_searchableselect", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "searchableselect()" - }, - { - "label": "SmartAdvisor()", - "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_smartadvisor_smartadvisor", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "smartadvisor()" - }, - { - "label": "TopUpModal()", - "file_type": "code", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_topupmodal_topupmodal", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "topupmodal()" - }, - { - "label": "UserDashboard()", - "file_type": "code", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_userdashboard_userdashboard", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "userdashboard()" - }, - { - "label": "cn()", - "file_type": "code", - "source_file": "frontend/application/lib/utils.ts", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_utils_cn", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "cn()" - }, - { - "label": "toPersian()", - "file_type": "code", - "source_file": "frontend/application/lib/utils.ts", - "source_location": "L1", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_utils_topersian", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "topersian()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "backend_src_menu_menu_controller_menucontroller_constructor", - "community": 23, - "community_name": "MenuService", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L60", - "_callable": true, - "_origin": "ast", - "id": "backend_src_menu_menu_controller_menucontroller_create", - "community": 23, - "community_name": "MenuService", - "norm_label": ".create()" - }, - { - "label": ".findAllAdmin()", - "file_type": "code", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L51", - "_callable": true, - "_origin": "ast", - "id": "backend_src_menu_menu_controller_menucontroller_findalladmin", - "community": 23, - "community_name": "MenuService", - "norm_label": ".findalladmin()" - }, - { - "label": ".findByType()", - "file_type": "code", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "backend_src_menu_menu_controller_menucontroller_findbytype", - "community": 23, - "community_name": "MenuService", - "norm_label": ".findbytype()" - }, - { - "label": ".findByTypeParam()", - "file_type": "code", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "backend_src_menu_menu_controller_menucontroller_findbytypeparam", - "community": 23, - "community_name": "MenuService", - "norm_label": ".findbytypeparam()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L114", - "_callable": true, - "_origin": "ast", - "id": "backend_src_menu_menu_controller_menucontroller_remove", - "community": 23, - "community_name": "MenuService", - "norm_label": ".remove()" - }, - { - "label": ".reorder()", - "file_type": "code", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L82", - "_callable": true, - "_origin": "ast", - "id": "backend_src_menu_menu_controller_menucontroller_reorder", - "community": 23, - "community_name": "MenuService", - "norm_label": ".reorder()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L91", - "_callable": true, - "_origin": "ast", - "id": "backend_src_menu_menu_controller_menucontroller_update", - "community": 23, - "community_name": "MenuService", - "norm_label": ".update()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_menu_menu_service_menuservice_constructor", - "community": 23, - "community_name": "MenuService", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L207", - "_callable": true, - "_origin": "ast", - "id": "backend_src_menu_menu_service_menuservice_create", - "community": 23, - "community_name": "MenuService", - "norm_label": ".create()" - }, - { - "label": ".findAllAdmin()", - "file_type": "code", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L195", - "_callable": true, - "_origin": "ast", - "id": "backend_src_menu_menu_service_menuservice_findalladmin", - "community": 23, - "community_name": "MenuService", - "norm_label": ".findalladmin()" - }, - { - "label": ".findByType()", - "file_type": "code", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L181", - "_callable": true, - "_origin": "ast", - "id": "backend_src_menu_menu_service_menuservice_findbytype", - "community": 23, - "community_name": "MenuService", - "norm_label": ".findbytype()" - }, - { - "label": ".onModuleInit()", - "file_type": "code", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "backend_src_menu_menu_service_menuservice_onmoduleinit", - "community": 23, - "community_name": "MenuService", - "norm_label": ".onmoduleinit()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L240", - "_callable": true, - "_origin": "ast", - "id": "backend_src_menu_menu_service_menuservice_remove", - "community": 23, - "community_name": "MenuService", - "norm_label": ".remove()" - }, - { - "label": ".reorder()", - "file_type": "code", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L248", - "_callable": true, - "_origin": "ast", - "id": "backend_src_menu_menu_service_menuservice_reorder", - "community": 23, - "community_name": "MenuService", - "norm_label": ".reorder()" - }, - { - "label": ".seedIfEmpty()", - "file_type": "code", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_menu_menu_service_menuservice_seedifempty", - "community": 23, - "community_name": "MenuService", - "norm_label": ".seedifempty()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L221", - "_callable": true, - "_origin": "ast", - "id": "backend_src_menu_menu_service_menuservice_update", - "community": 23, - "community_name": "MenuService", - "norm_label": ".update()" - }, - { - "label": "robots()", - "file_type": "code", - "source_file": "frontend/application/app/robots.ts", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_robots_robots", - "community": 253, - "community_name": "robots.ts", - "norm_label": "robots()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_constructor", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".constructor()" - }, - { - "label": ".adminLiveInquiry()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L845", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".adminliveinquiry()" - }, - { - "label": ".adminManualReject()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L988", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_adminmanualreject", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".adminmanualreject()" - }, - { - "label": ".adminManualVerify()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L925", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_adminmanualverify", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".adminmanualverify()" - }, - { - "label": ".checkGatewayHealth()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L1014", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".checkgatewayhealth()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_constructor", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".constructor()" - }, - { - "label": ".getAdminTransactionStats()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L798", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".getadmintransactionstats()" - }, - { - "label": ".getTransaction()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L635", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_gettransaction", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".gettransaction()" - }, - { - "label": ".getTransactionByTrackId()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L896", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_gettransactionbytrackid", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".gettransactionbytrackid()" - }, - { - "label": ".initiateOrderPayment()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".initiateorderpayment()" - }, - { - "label": ".initiateWalletTopup()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L139", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".initiatewallettopup()" - }, - { - "label": ".inquiryDirectZibal()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L902", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".inquirydirectzibal()" - }, - { - "label": ".reconcilePendingTransactions()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L540", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".reconcilependingtransactions()" - }, - { - "label": ".verifyAndProcess()", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L227", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_verifyandprocess", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".verifyandprocess()" - }, - { - "label": ".apiRequest()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L516", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_apirequest", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".apirequest()" - }, - { - "label": ".callWithRetry()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_callwithretry", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".callwithretry()" - }, - { - "label": ".checkHealth()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L304", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_checkhealth", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".checkhealth()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_constructor", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".constructor()" - }, - { - "label": ".createSubMerchant()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L746", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_createsubmerchant", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".createsubmerchant()" - }, - { - "label": ".editSubMerchant()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L768", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_editsubmerchant", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".editsubmerchant()" - }, - { - "label": ".getAccessToken()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L465", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getaccesstoken", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".getaccesstoken()" - }, - { - "label": ".getBackendUrl()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L130", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getbackendurl", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".getbackendurl()" - }, - { - "label": ".getCheckoutQueueReport()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L722", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getcheckoutqueuereport", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".getcheckoutqueuereport()" - }, - { - "label": ".getCheckoutReport()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L701", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getcheckoutreport", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".getcheckoutreport()" - }, - { - "label": ".getFrontendUrl()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L111", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getfrontendurl", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".getfrontendurl()" - }, - { - "label": ".getGatewayName()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getgatewayname", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".getgatewayname()" - }, - { - "label": ".getGatewayTransactionsReport()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L667", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getgatewaytransactionsreport", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".getgatewaytransactionsreport()" - }, - { - "label": ".getMerchant()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L93", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".getmerchant()" - }, - { - "label": ".getRefundList()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L643", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getrefundlist", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".getrefundlist()" - }, - { - "label": ".getResultMessage()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L779", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getresultmessage", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".getresultmessage()" - }, - { - "label": ".getStartUrl()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L211", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getstarturl", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".getstarturl()" - }, - { - "label": ".getStatusMessage()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L816", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getstatusmessage", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".getstatusmessage()" - }, - { - "label": ".getSubMerchantList()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L761", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getsubmerchantlist", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".getsubmerchantlist()" - }, - { - "label": ".getWalletBalance()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L582", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getwalletbalance", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".getwalletbalance()" - }, - { - "label": ".getWalletList()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L575", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_getwalletlist", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".getwalletlist()" - }, - { - "label": ".inquireCheckoutReport()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L731", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_inquirecheckoutreport", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".inquirecheckoutreport()" - }, - { - "label": ".inquireRefund()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L625", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_inquirerefund", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".inquirerefund()" - }, - { - "label": ".inquiryPayment()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L260", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_inquirypayment", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".inquirypayment()" - }, - { - "label": ".requestLazyPayment()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L368", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_requestlazypayment", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".requestlazypayment()" - }, - { - "label": ".requestPayment()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L156", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_requestpayment", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".requestpayment()" - }, - { - "label": ".requestRefund()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L589", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_requestrefund", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".requestrefund()" - }, - { - "label": ".verifyLazyPayment()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L422", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_verifylazypayment", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".verifylazypayment()" - }, - { - "label": ".verifyPayment()", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L218", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_service_zibalservice_verifypayment", - "community": 294, - "community_name": "ZibalService", - "norm_label": ".verifypayment()" - }, - { - "label": ".cancelCheckout()", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L222", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_cancelcheckout", - "community": 297, - "community_name": "ZibalEBankService", - "norm_label": ".cancelcheckout()" - }, - { - "label": ".changeIdentifiedPaymentStatus()", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L318", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_changeidentifiedpaymentstatus", - "community": 297, - "community_name": "ZibalEBankService", - "norm_label": ".changeidentifiedpaymentstatus()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_constructor", - "community": 297, - "community_name": "ZibalEBankService", - "norm_label": ".constructor()" - }, - { - "label": ".createCheckout()", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L152", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_createcheckout", - "community": 297, - "community_name": "ZibalEBankService", - "norm_label": ".createcheckout()" - }, - { - "label": ".getAccessToken()", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccesstoken", - "community": 297, - "community_name": "ZibalEBankService", - "norm_label": ".getaccesstoken()" - }, - { - "label": ".getAccountBalance()", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L252", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountbalance", - "community": 297, - "community_name": "ZibalEBankService", - "norm_label": ".getaccountbalance()" - }, - { - "label": ".getAccountList()", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L240", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountlist", - "community": 297, - "community_name": "ZibalEBankService", - "norm_label": ".getaccountlist()" - }, - { - "label": ".getCheckoutList()", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L198", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getcheckoutlist", - "community": 297, - "community_name": "ZibalEBankService", - "norm_label": ".getcheckoutlist()" - }, - { - "label": ".getDefaultAccountId()", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", - "community": 297, - "community_name": "ZibalEBankService", - "norm_label": ".getdefaultaccountid()" - }, - { - "label": ".getIdentifiedPaymentList()", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L294", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getidentifiedpaymentlist", - "community": 297, - "community_name": "ZibalEBankService", - "norm_label": ".getidentifiedpaymentlist()" - }, - { - "label": ".getStatementList()", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L266", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getstatementlist", - "community": 297, - "community_name": "ZibalEBankService", - "norm_label": ".getstatementlist()" - }, - { - "label": ".inquireCheckout()", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L179", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquirecheckout", - "community": 297, - "community_name": "ZibalEBankService", - "norm_label": ".inquirecheckout()" - }, - { - "label": ".inquireIdentifiedPayment()", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L340", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquireidentifiedpayment", - "community": 297, - "community_name": "ZibalEBankService", - "norm_label": ".inquireidentifiedpayment()" - }, - { - "label": ".request()", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L86", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", - "community": 297, - "community_name": "ZibalEBankService", - "norm_label": ".request()" - }, - { - "label": ".extractRealClientIp()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", - "community": 298, - "community_name": ".initiateOrderPayment", - "norm_label": ".extractrealclientip()" - }, - { - "label": ".handleZibalCallback()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L116", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "community": 298, - "community_name": ".initiateOrderPayment", - "norm_label": ".handlezibalcallback()" - }, - { - "label": ".handleZibalLazyCallback()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L194", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "community": 298, - "community_name": ".initiateOrderPayment", - "norm_label": ".handleziballazycallback()" - }, - { - "label": ".initiateOrderPayment()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L75", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "community": 298, - "community_name": ".initiateOrderPayment", - "norm_label": ".initiateorderpayment()" - }, - { - "label": ".initiateWalletTopup()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L97", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "community": 298, - "community_name": ".initiateOrderPayment", - "norm_label": ".initiatewallettopup()" - }, - { - "label": ".verifyPaymentDirect()", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L169", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "community": 298, - "community_name": ".initiateOrderPayment", - "norm_label": ".verifypaymentdirect()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/search/page.tsx", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_search_page_generatemetadata", - "community": 3, - "community_name": "ProductService", - "norm_label": "generatemetadata()" - }, - { - "label": "SearchPage()", - "file_type": "code", - "source_file": "frontend/application/app/search/page.tsx", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_search_page_searchpage", - "community": 3, - "community_name": "ProductService", - "norm_label": "searchpage()" - }, - { - "label": "GET()", - "file_type": "code", - "source_file": "frontend/application/app/shop/feed.xml/route.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_shop_feed_xml_route_get", - "community": 3, - "community_name": "ProductService", - "norm_label": "get()" - }, - { - "label": "GET()", - "file_type": "code", - "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_sitemap_categories_xml_route_get", - "community": 3, - "community_name": "ProductService", - "norm_label": "get()" - }, - { - "label": "GET()", - "file_type": "code", - "source_file": "frontend/application/app/sitemap-products.xml/route.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_sitemap_products_xml_route_get", - "community": 3, - "community_name": "ProductService", - "norm_label": "get()" - }, - { - "label": "sitemap()", - "file_type": "code", - "source_file": "frontend/application/app/sitemap.ts", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_sitemap_sitemap", - "community": 3, - "community_name": "ProductService", - "norm_label": "sitemap()" - }, - { - "label": "CatalogPageSpread()", - "file_type": "code", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", - "community": 3, - "community_name": "ProductService", - "norm_label": "catalogpagespread()" - }, - { - "label": "getFormBadge()", - "file_type": "code", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_catalog_catalogpagespread_getformbadge", - "community": 3, - "community_name": "ProductService", - "norm_label": "getformbadge()" - }, - { - "label": "getSpeciesBadge()", - "file_type": "code", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge", - "community": 3, - "community_name": "ProductService", - "norm_label": "getspeciesbadge()" - }, - { - "label": "FlipbookCatalog()", - "file_type": "code", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", - "community": 3, - "community_name": "ProductService", - "norm_label": "flipbookcatalog()" - }, - { - "label": "normalizeSearchText()", - "file_type": "code", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", "source_location": "L27", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext", - "community": 3, - "community_name": "ProductService", - "norm_label": "normalizesearchtext()" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "getfiletype()", + "id": "frontend_admin_panel_src_components_ui_mediaselector_getfiletype" }, { - "label": "formatIngredientDisplayName()", + "label": "MediaSelector()", "file_type": "code", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_ingredientwiki_formatingredientdisplayname", - "community": 3, - "community_name": "ProductService", - "norm_label": "formatingredientdisplayname()" - }, - { - "label": "IngredientWiki()", - "file_type": "code", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_ingredientwiki_ingredientwiki", - "community": 3, - "community_name": "ProductService", - "norm_label": "ingredientwiki()" - }, - { - "label": "SearchResultsPage()", - "file_type": "code", - "source_file": "frontend/application/components/SearchResultsPage.tsx", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_searchresultspage_searchresultspage", - "community": 3, - "community_name": "ProductService", - "norm_label": "searchresultspage()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L74", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_constructor", - "community": 3, - "community_name": "ProductService", - "norm_label": ".constructor()" - }, - { - "label": ".getActiveFilters()", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L343", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_getactivefilters", - "community": 3, - "community_name": "ProductService", - "norm_label": ".getactivefilters()" - }, - { - "label": ".getFeaturedProducts()", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L313", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", - "community": 3, - "community_name": "ProductService", - "norm_label": ".getfeaturedproducts()" - }, - { - "label": ".getInstance()", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L76", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_getinstance", - "community": 3, - "community_name": "ProductService", - "norm_label": ".getinstance()" - }, - { - "label": ".getNavigationFilters()", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L357", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_getnavigationfilters", - "community": 3, - "community_name": "ProductService", - "norm_label": ".getnavigationfilters()" - }, - { - "label": ".getProductById()", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L285", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_getproductbyid", - "community": 3, - "community_name": "ProductService", - "norm_label": ".getproductbyid()" - }, - { - "label": ".getProductBySlug()", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L299", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_getproductbyslug", - "community": 3, - "community_name": "ProductService", - "norm_label": ".getproductbyslug()" - }, - { - "label": ".getProducts()", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L246", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_getproducts", - "community": 3, - "community_name": "ProductService", - "norm_label": ".getproducts()" - }, - { - "label": ".mapBackendToFrontend()", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L83", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", - "community": 3, - "community_name": "ProductService", - "norm_label": ".mapbackendtofrontend()" - }, - { - "label": ".serverFetch()", - "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L235", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_serverfetch", - "community": 3, - "community_name": "ProductService", - "norm_label": ".serverfetch()" - }, - { - "label": "MenuManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_menumanager_menumanager", - "community": 313, - "community_name": "MenuManager.tsx", - "norm_label": "menumanager()" - }, - { - "label": "GET()", - "file_type": "code", - "source_file": "frontend/application/app/api/revalidate/route.ts", - "source_location": "L4", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_api_revalidate_route_get", - "community": 317, - "community_name": "revalidate/route.ts", - "norm_label": "get()" - }, - { - "label": "handleRevalidate()", - "file_type": "code", - "source_file": "frontend/application/app/api/revalidate/route.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_api_revalidate_route_handlerevalidate", - "community": 317, - "community_name": "revalidate/route.ts", - "norm_label": "handlerevalidate()" - }, - { - "label": "POST()", - "file_type": "code", - "source_file": "frontend/application/app/api/revalidate/route.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_api_revalidate_route_post", - "community": 317, - "community_name": "revalidate/route.ts", - "norm_label": "post()" - }, - { - "label": "MaskableField()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_maskablefield_maskablefield", - "community": 318, - "community_name": "MaskableField.tsx", - "norm_label": "maskablefield()" - }, - { - "label": "App()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/App.tsx", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_app_app", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "app()" - }, - { - "label": "SuspenseFallback()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/App.tsx", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_app_suspensefallback", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "suspensefallback()" - }, - { - "label": "Dashboard()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_dashboard_dashboard", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "dashboard()" - }, - { - "label": "PaymentGatewaysPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_paymentgatewayspage_paymentgatewayspage", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "paymentgatewayspage()" - }, - { - "label": "Settings()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Settings.tsx", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_settings_settings", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "settings()" - }, - { - "label": "WholesaleApplications()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "wholesaleapplications()" - }, - { - "label": "ZibalPortalPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_zibalportalpage_zibalportalpage", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "zibalportalpage()" - }, - { - "label": "lazyWithRetry()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/utils/lazyWithRetry.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_utils_lazywithretry_lazywithretry", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "lazywithretry()" - }, - { - "label": ".applyForWholesale()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": ".applyforwholesale()" - }, - { - "label": ".approveWholesaleRequest()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": ".approvewholesalerequest()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": ".constructor()" - }, - { - "label": ".getWholesaleRequests()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": ".getwholesalerequests()" - }, - { - "label": ".rejectWholesaleRequest()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": ".rejectwholesalerequest()" - }, - { - "label": ".applyForWholesale()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": ".applyforwholesale()" - }, - { - "label": ".approveWholesaleRequest()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L63", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": ".approvewholesalerequest()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": ".constructor()" - }, - { - "label": ".getWholesaleRequests()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": ".getwholesalerequests()" - }, - { - "label": ".rejectWholesaleRequest()", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L77", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": ".rejectwholesalerequest()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_constructor", - "community": 34, - "community_name": "B2BService", - "norm_label": ".constructor()" - }, - { - "label": ".createInquiry()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", - "community": 34, - "community_name": "B2BService", - "norm_label": ".createinquiry()" - }, - { - "label": ".createWholesaleOrder()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "community": 34, - "community_name": "B2BService", - "norm_label": ".createwholesaleorder()" - }, - { - "label": ".findAllInquiries()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "community": 34, - "community_name": "B2BService", - "norm_label": ".findallinquiries()" - }, - { - "label": ".getAllPartnerAccounts()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L86", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "community": 34, - "community_name": "B2BService", - "norm_label": ".getallpartneraccounts()" - }, - { - "label": ".getPartnerProfile()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L64", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", - "community": 34, - "community_name": "B2BService", - "norm_label": ".getpartnerprofile()" - }, - { - "label": ".updateInquiryStatus()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "community": 34, - "community_name": "B2BService", - "norm_label": ".updateinquirystatus()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bservice_constructor", - "community": 34, - "community_name": "B2BService", - "norm_label": ".constructor()" - }, - { - "label": ".createInquiry()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bservice_createinquiry", - "community": 34, - "community_name": "B2BService", - "norm_label": ".createinquiry()" - }, - { - "label": ".createWholesaleOrder()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder", - "community": 34, - "community_name": "B2BService", - "norm_label": ".createwholesaleorder()" - }, - { - "label": ".findAllInquiries()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bservice_findallinquiries", - "community": 34, - "community_name": "B2BService", - "norm_label": ".findallinquiries()" - }, - { - "label": ".getAllPartnerAccounts()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L95", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts", - "community": 34, - "community_name": "B2BService", - "norm_label": ".getallpartneraccounts()" - }, - { - "label": ".getPartnerProfile()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile", - "community": 34, - "community_name": "B2BService", - "norm_label": ".getpartnerprofile()" - }, - { - "label": ".updateInquiryStatus()", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus", - "community": 34, - "community_name": "B2BService", - "norm_label": ".updateinquirystatus()" - }, - { - "label": ".adminLogin()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L97", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "community": 35, - "community_name": "AuthController", - "norm_label": ".adminlogin()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_constructor", - "community": 35, - "community_name": "AuthController", - "norm_label": ".constructor()" - }, - { - "label": ".login()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L88", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_login", - "community": 35, - "community_name": "AuthController", - "norm_label": ".login()" - }, - { - "label": ".logout()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L120", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_logout", - "community": 35, - "community_name": "AuthController", - "norm_label": ".logout()" - }, - { - "label": ".refresh()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L107", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_refresh", - "community": 35, - "community_name": "AuthController", - "norm_label": ".refresh()" - }, - { - "label": ".register()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L79", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_register", - "community": 35, - "community_name": "AuthController", - "norm_label": ".register()" - }, - { - "label": ".sendOtp()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_sendotp", - "community": 35, - "community_name": "AuthController", - "norm_label": ".sendotp()" - }, - { - "label": ".verifyOtp()", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "community": 35, - "community_name": "AuthController", - "norm_label": ".verifyotp()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "backend_src_faq_faq_controller_faqcontroller_constructor", - "community": 36, - "community_name": "FaqService", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "backend_src_faq_faq_controller_faqcontroller_create", - "community": 36, - "community_name": "FaqService", - "norm_label": ".create()" - }, - { - "label": ".findActive()", - "file_type": "code", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_faq_faq_controller_faqcontroller_findactive", - "community": 36, - "community_name": "FaqService", - "norm_label": ".findactive()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "backend_src_faq_faq_controller_faqcontroller_findall", - "community": 36, - "community_name": "FaqService", - "norm_label": ".findall()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L86", - "_callable": true, - "_origin": "ast", - "id": "backend_src_faq_faq_controller_faqcontroller_remove", - "community": 36, - "community_name": "FaqService", - "norm_label": ".remove()" - }, - { - "label": ".reorder()", - "file_type": "code", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "backend_src_faq_faq_controller_faqcontroller_reorder", - "community": 36, - "community_name": "FaqService", - "norm_label": ".reorder()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "id": "backend_src_faq_faq_controller_faqcontroller_update", - "community": 36, - "community_name": "FaqService", - "norm_label": ".update()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "backend_src_faq_faq_service_faqservice_constructor", - "community": 36, - "community_name": "FaqService", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "backend_src_faq_faq_service_faqservice_create", - "community": 36, - "community_name": "FaqService", - "norm_label": ".create()" - }, - { - "label": ".findActive()", - "file_type": "code", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_src_faq_faq_service_faqservice_findactive", - "community": 36, - "community_name": "FaqService", - "norm_label": ".findactive()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "backend_src_faq_faq_service_faqservice_findall", - "community": 36, - "community_name": "FaqService", - "norm_label": ".findall()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "backend_src_faq_faq_service_faqservice_remove", - "community": 36, - "community_name": "FaqService", - "norm_label": ".remove()" - }, - { - "label": ".reorder()", - "file_type": "code", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "backend_src_faq_faq_service_faqservice_reorder", - "community": 36, - "community_name": "FaqService", - "norm_label": ".reorder()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "backend_src_faq_faq_service_faqservice_update", - "community": 36, - "community_name": "FaqService", - "norm_label": ".update()" - }, - { - "label": "TransactionReceiptModal()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodal", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "transactionreceiptmodal()" - }, - { - "label": "Button()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_button_button", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "button()" - }, - { - "label": "ThSort()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ThSort.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_thsort_thsort", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "thsort()" - }, - { - "label": "ContactSubmissions()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "contactsubmissions()" - }, - { - "label": "Reviews()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reviews_reviews", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "reviews()" - }, - { - "label": "toPersianDigits()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reviews_topersiandigits", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "topersiandigits()" - }, - { - "label": "Tickets()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L60", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_tickets_tickets", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "tickets()" - }, - { - "label": "Transactions()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L92", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions_transactions", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "transactions()" - }, - { - "label": "useTableParams()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/utils/useTableParams.ts", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_utils_usetableparams_usetableparams", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "usetableparams()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_controller_categoriescontroller_constructor", - "community": 39, - "community_name": "CategoriesController", - "norm_label": ".constructor()" - }, - { - "label": ".createCategory()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_controller_categoriescontroller_createcategory", - "community": 39, - "community_name": "CategoriesController", - "norm_label": ".createcategory()" - }, - { - "label": ".deleteCategory()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L66", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", - "community": 39, - "community_name": "CategoriesController", - "norm_label": ".deletecategory()" - }, - { - "label": ".getAllCategoriesRaw()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", - "community": 39, - "community_name": "CategoriesController", - "norm_label": ".getallcategoriesraw()" - }, - { - "label": ".getCategories()", - "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", "source_location": "L36", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_categories_controller_categoriescontroller_getcategories", - "community": 39, - "community_name": "CategoriesController", - "norm_label": ".getcategories()" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "mediaselector()", + "id": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" }, { - "label": ".updateCategory()", + "label": "Pagination()", "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", - "community": 39, - "community_name": "CategoriesController", - "norm_label": ".updatecategory()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_service_categoriesservice_constructor", - "community": 39, - "community_name": "CategoriesController", - "norm_label": ".constructor()" - }, - { - "label": ".createCategory()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_service_categoriesservice_createcategory", - "community": 39, - "community_name": "CategoriesController", - "norm_label": ".createcategory()" - }, - { - "label": ".deleteCategory()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_service_categoriesservice_deletecategory", - "community": 39, - "community_name": "CategoriesController", - "norm_label": ".deletecategory()" - }, - { - "label": ".getAllCategoriesRaw()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_service_categoriesservice_getallcategoriesraw", - "community": 39, - "community_name": "CategoriesController", - "norm_label": ".getallcategoriesraw()" - }, - { - "label": ".getCategories()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_service_categoriesservice_getcategories", - "community": 39, - "community_name": "CategoriesController", - "norm_label": ".getcategories()" - }, - { - "label": ".updateCategory()", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_categories_service_categoriesservice_updatecategory", - "community": 39, - "community_name": "CategoriesController", - "norm_label": ".updatecategory()" - }, - { - "label": "ProductDetailModal()", - "file_type": "code", - "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodal", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "productdetailmodal()" - }, - { - "label": "PodcastPlayerModal()", - "file_type": "code", - "source_file": "frontend/application/components/PodcastPlayerModal.tsx", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_podcastplayermodal_podcastplayermodal", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "podcastplayermodal()" - }, - { - "label": "handleClickOutside()", - "file_type": "code", - "source_file": "frontend/application/components/PodcastPlayerModal.tsx", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_podcastplayermodal_podcastplayermodal_handleclickoutside", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "handleclickoutside()" - }, - { - "label": "SafeImage()", - "file_type": "code", - "source_file": "frontend/application/components/SafeImage.tsx", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_safeimage_safeimage", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "safeimage()" - }, - { - "label": "VetGallery()", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_vetgallery_vetgallery", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "vetgallery()" - }, - { - "label": "VideoModalPlayer()", - "file_type": "code", - "source_file": "frontend/application/components/VideoModalPlayer.tsx", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_videomodalplayer_videomodalplayer", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "videomodalplayer()" - }, - { - "label": "handleClickOutside()", - "file_type": "code", - "source_file": "frontend/application/components/VideoModalPlayer.tsx", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_videomodalplayer_videomodalplayer_handleclickoutside", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "handleclickoutside()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_constructor", - "community": 40, - "community_name": "MediaController", - "norm_label": ".constructor()" - }, - { - "label": ".deleteManyMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", - "community": 40, - "community_name": "MediaController", - "norm_label": ".deletemanymedia()" - }, - { - "label": ".deleteMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_deletemedia", - "community": 40, - "community_name": "MediaController", - "norm_label": ".deletemedia()" - }, - { - "label": ".getAllMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_getallmedia", - "community": 40, - "community_name": "MediaController", - "norm_label": ".getallmedia()" - }, - { - "label": ".updateMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L66", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_updatemedia", - "community": 40, - "community_name": "MediaController", - "norm_label": ".updatemedia()" - }, - { - "label": ".uploadFile()", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_controller_mediacontroller_uploadfile", - "community": 40, - "community_name": "MediaController", - "norm_label": ".uploadfile()" - }, - { - "label": ".deleteManyMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_deletemanymedia", - "community": 40, - "community_name": "MediaController", - "norm_label": ".deletemanymedia()" - }, - { - "label": ".deleteMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_deletemedia", - "community": 40, - "community_name": "MediaController", - "norm_label": ".deletemedia()" - }, - { - "label": ".getAllMedia()", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", + "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", "source_location": "L10", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_getallmedia", - "community": 40, - "community_name": "MediaController", - "norm_label": ".getallmedia()" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "pagination()", + "id": "frontend_admin_panel_src_components_ui_pagination_pagination" }, { - "label": ".updateMedia()", + "label": "BannersManager()", "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L92", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L13", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_updatemedia", - "community": 40, - "community_name": "MediaController", - "norm_label": ".updatemedia()" - }, - { - "label": ".uploadFile()", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_uploadfile", - "community": 40, - "community_name": "MediaController", - "norm_label": ".uploadfile()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_sslcontroller_constructor", - "community": 42, - "community_name": "SslController", - "norm_label": ".constructor()" - }, - { - "label": ".getStatus()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_sslcontroller_getstatus", - "community": 42, - "community_name": "SslController", - "norm_label": ".getstatus()" - }, - { - "label": ".testDomain()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L98", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_sslcontroller_testdomain", - "community": 42, - "community_name": "SslController", - "norm_label": ".testdomain()" - }, - { - "label": ".updateByText()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", - "community": 42, - "community_name": "SslController", - "norm_label": ".updatebytext()" - }, - { - "label": ".uploadFiles()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "community": 42, - "community_name": "SslController", - "norm_label": ".uploadfiles()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_constructor", - "community": 42, - "community_name": "SslController", - "norm_label": ".constructor()" - }, - { - "label": ".getCertPath()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_getcertpath", - "community": 42, - "community_name": "SslController", - "norm_label": ".getcertpath()" - }, - { - "label": ".getKeyPath()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_getkeypath", - "community": 42, - "community_name": "SslController", - "norm_label": ".getkeypath()" - }, - { - "label": ".getStatus()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L62", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_getstatus", - "community": 42, - "community_name": "SslController", - "norm_label": ".getstatus()" - }, - { - "label": ".testOnlineDomainSsl()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L177", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", - "community": 42, - "community_name": "SslController", - "norm_label": ".testonlinedomainssl()" - }, - { - "label": ".toShamsi()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L48", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_toshamsi", - "community": 42, - "community_name": "SslController", - "norm_label": ".toshamsi()" - }, - { - "label": ".updateCertificates()", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L113", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_ssl_service_sslservice_updatecertificates", - "community": 42, - "community_name": "SslController", - "norm_label": ".updatecertificates()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_controller_bannerscontroller_constructor", - "community": 43, - "community_name": "BannersService", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_controller_bannerscontroller_create", - "community": 43, - "community_name": "BannersService", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_controller_bannerscontroller_findall", - "community": 43, - "community_name": "BannersService", - "norm_label": ".findall()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L62", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_controller_bannerscontroller_remove", - "community": 43, - "community_name": "BannersService", - "norm_label": ".remove()" - }, - { - "label": ".reorder()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "community": 43, - "community_name": "BannersService", - "norm_label": ".reorder()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_controller_bannerscontroller_update", - "community": 43, - "community_name": "BannersService", - "norm_label": ".update()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_service_bannersservice_constructor", - "community": 43, - "community_name": "BannersService", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_service_bannersservice_create", - "community": 43, - "community_name": "BannersService", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_service_bannersservice_findall", - "community": 43, - "community_name": "BannersService", - "norm_label": ".findall()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_service_bannersservice_remove", - "community": 43, - "community_name": "BannersService", - "norm_label": ".remove()" - }, - { - "label": ".reorder()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_service_bannersservice_reorder", - "community": 43, - "community_name": "BannersService", - "norm_label": ".reorder()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_banners_banners_service_bannersservice_update", - "community": 43, - "community_name": "BannersService", - "norm_label": ".update()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": ".findall()" - }, - { - "label": ".findHomepage()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findhomepage", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": ".findhomepage()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": ".update()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_service_testimonialsservice_create", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_service_testimonialsservice_findall", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": ".findall()" - }, - { - "label": ".findHomepage()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_service_testimonialsservice_findhomepage", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": ".findhomepage()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_service_testimonialsservice_remove", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_service_testimonialsservice_update", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": ".update()" - }, - { - "label": "Layout()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Layout.tsx", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_layout_layout", - "community": 46, - "community_name": "api", - "norm_label": "layout()" - }, - { - "label": "Sidebar()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar_sidebar", - "community": 46, - "community_name": "api", - "norm_label": "sidebar()" - }, - { - "label": "Topbar()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L60", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_topbar_topbar", - "community": 46, - "community_name": "api", - "norm_label": "topbar()" - }, - { - "label": "CMS()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_cms_cms", - "community": 46, - "community_name": "api", - "norm_label": "cms()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor", - "community": 47, - "community_name": "IngredientsService", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L40", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "community": 47, - "community_name": "IngredientsService", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", - "community": 47, - "community_name": "IngredientsService", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", - "community": 47, - "community_name": "IngredientsService", - "norm_label": ".findone()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L58", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "community": 47, - "community_name": "IngredientsService", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "community": 47, - "community_name": "IngredientsService", - "norm_label": ".update()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor", - "community": 47, - "community_name": "IngredientsService", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_create", - "community": 47, - "community_name": "IngredientsService", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_findall", - "community": 47, - "community_name": "IngredientsService", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_findone", - "community": 47, - "community_name": "IngredientsService", - "norm_label": ".findone()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L47", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_remove", - "community": 47, - "community_name": "IngredientsService", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service_ingredientsservice_update", - "community": 47, - "community_name": "IngredientsService", - "norm_label": ".update()" - }, - { - "label": "SuccessPage()", - "file_type": "code", - "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", - "source_location": "L3", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_checkout_success_id_page_successpage", - "community": 48, - "community_name": "cartStore.ts", - "norm_label": "successpage()" - }, - { - "label": "OrderSuccess()", - "file_type": "code", - "source_file": "frontend/application/components/OrderSuccess.tsx", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_ordersuccess_ordersuccess", - "community": 48, - "community_name": "cartStore.ts", - "norm_label": "ordersuccess()" - }, - { - "label": "OrderTracking()", - "file_type": "code", - "source_file": "frontend/application/components/OrderTracking.tsx", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_ordertracking_ordertracking", - "community": 48, - "community_name": "cartStore.ts", - "norm_label": "ordertracking()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_orderservice_orderservice_constructor", - "community": 48, - "community_name": "cartStore.ts", - "norm_label": ".constructor()" - }, - { - "label": ".createOrder()", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L46", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_orderservice_orderservice_createorder", - "community": 48, - "community_name": "cartStore.ts", - "norm_label": ".createorder()" - }, - { - "label": ".getInstance()", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_orderservice_orderservice_getinstance", - "community": 48, - "community_name": "cartStore.ts", - "norm_label": ".getinstance()" - }, - { - "label": ".getOrderById()", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L84", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_orderservice_orderservice_getorderbyid", - "community": 48, - "community_name": "cartStore.ts", - "norm_label": ".getorderbyid()" - }, - { - "label": ".getUserOrders()", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L70", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_services_orderservice_orderservice_getuserorders", - "community": 48, - "community_name": "cartStore.ts", - "norm_label": ".getuserorders()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_constructor", - "community": 5, - "community_name": "CmsController", - "norm_label": ".constructor()" - }, - { - "label": ".createHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_createherobanner", - "community": 5, - "community_name": "CmsController", - "norm_label": ".createherobanner()" - }, - { - "label": ".createSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L95", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", - "community": 5, - "community_name": "CmsController", - "norm_label": ".createsmartadvisorrule()" - }, - { - "label": ".createVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", - "community": 5, - "community_name": "CmsController", - "norm_label": ".createvettestimonial()" - }, - { - "label": ".deleteHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", - "community": 5, - "community_name": "CmsController", - "norm_label": ".deleteherobanner()" - }, - { - "label": ".deleteSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L110", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", - "community": 5, - "community_name": "CmsController", - "norm_label": ".deletesmartadvisorrule()" - }, - { - "label": ".deleteVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L82", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", - "community": 5, - "community_name": "CmsController", - "norm_label": ".deletevettestimonial()" - }, - { - "label": ".getHeroBanners()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L33", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_getherobanners", - "community": 5, - "community_name": "CmsController", - "norm_label": ".getherobanners()" - }, - { - "label": ".getSmartAdvisorRules()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L89", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", - "community": 5, - "community_name": "CmsController", - "norm_label": ".getsmartadvisorrules()" - }, - { - "label": ".getVetTestimonials()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", - "community": 5, - "community_name": "CmsController", - "norm_label": ".getvettestimonials()" - }, - { - "label": ".updateHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", - "community": 5, - "community_name": "CmsController", - "norm_label": ".updateherobanner()" - }, - { - "label": ".updateSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L101", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", - "community": 5, - "community_name": "CmsController", - "norm_label": ".updatesmartadvisorrule()" - }, - { - "label": ".updateVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", - "community": 5, - "community_name": "CmsController", - "norm_label": ".updatevettestimonial()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_constructor", - "community": 5, - "community_name": "CmsController", - "norm_label": ".constructor()" - }, - { - "label": ".createHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_createherobanner", - "community": 5, - "community_name": "CmsController", - "norm_label": ".createherobanner()" - }, - { - "label": ".createSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L67", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule", - "community": 5, - "community_name": "CmsController", - "norm_label": ".createsmartadvisorrule()" - }, - { - "label": ".createVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L41", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_createvettestimonial", - "community": 5, - "community_name": "CmsController", - "norm_label": ".createvettestimonial()" - }, - { - "label": ".deleteHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_deleteherobanner", - "community": 5, - "community_name": "CmsController", - "norm_label": ".deleteherobanner()" - }, - { - "label": ".deleteSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L82", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_deletesmartadvisorrule", - "community": 5, - "community_name": "CmsController", - "norm_label": ".deletesmartadvisorrule()" - }, - { - "label": ".deleteVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_deletevettestimonial", - "community": 5, - "community_name": "CmsController", - "norm_label": ".deletevettestimonial()" - }, - { - "label": ".getHeroBanners()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_getherobanners", - "community": 5, - "community_name": "CmsController", - "norm_label": ".getherobanners()" - }, - { - "label": ".getSmartAdvisorRules()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_getsmartadvisorrules", - "community": 5, - "community_name": "CmsController", - "norm_label": ".getsmartadvisorrules()" - }, - { - "label": ".getVetTestimonials()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_getvettestimonials", - "community": 5, - "community_name": "CmsController", - "norm_label": ".getvettestimonials()" - }, - { - "label": ".updateHeroBanner()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_updateherobanner", - "community": 5, - "community_name": "CmsController", - "norm_label": ".updateherobanner()" - }, - { - "label": ".updateSmartAdvisorRule()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule", - "community": 5, - "community_name": "CmsController", - "norm_label": ".updatesmartadvisorrule()" - }, - { - "label": ".updateVetTestimonial()", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "backend_src_cms_cms_service_cmsservice_updatevettestimonial", - "community": 5, - "community_name": "CmsController", - "norm_label": ".updatevettestimonial()" - }, - { - "label": ".createBlog()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L118", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_createblog", - "community": 51, - "community_name": "BlogsController", - "norm_label": ".createblog()" - }, - { - "label": ".createBlogCategory()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L66", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_createblogcategory", - "community": 51, - "community_name": "BlogsController", - "norm_label": ".createblogcategory()" - }, - { - "label": ".createBlogTag()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L97", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_createblogtag", - "community": 51, - "community_name": "BlogsController", - "norm_label": ".createblogtag()" - }, - { - "label": ".deleteBlog()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L135", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", - "community": 51, - "community_name": "BlogsController", - "norm_label": ".deleteblog()" - }, - { - "label": ".deleteBlogCategory()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L83", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_deleteblogcategory", - "community": 51, - "community_name": "BlogsController", - "norm_label": ".deleteblogcategory()" - }, - { - "label": ".deleteBlogTag()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L104", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_deleteblogtag", - "community": 51, - "community_name": "BlogsController", - "norm_label": ".deleteblogtag()" - }, - { - "label": ".deleteComment()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L174", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_deletecomment", - "community": 51, - "community_name": "BlogsController", - "norm_label": ".deletecomment()" - }, - { - "label": ".getAuthors()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_getauthors", - "community": 51, - "community_name": "BlogsController", - "norm_label": ".getauthors()" - }, - { - "label": ".getBlogById()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L111", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_getblogbyid", - "community": 51, - "community_name": "BlogsController", - "norm_label": ".getblogbyid()" - }, - { - "label": ".getBlogCategories()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_getblogcategories", - "community": 51, - "community_name": "BlogsController", - "norm_label": ".getblogcategories()" - }, - { - "label": ".getBlogs()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L39", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_getblogs", - "community": 51, - "community_name": "BlogsController", - "norm_label": ".getblogs()" - }, - { - "label": ".getBlogTags()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L90", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_getblogtags", - "community": 51, - "community_name": "BlogsController", - "norm_label": ".getblogtags()" - }, - { - "label": ".getComments()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L151", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_getcomments", - "community": 51, - "community_name": "BlogsController", - "norm_label": ".getcomments()" - }, - { - "label": ".updateBlog()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L128", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_updateblog", - "community": 51, - "community_name": "BlogsController", - "norm_label": ".updateblog()" - }, - { - "label": ".updateBlogCategory()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory", - "community": 51, - "community_name": "BlogsController", - "norm_label": ".updateblogcategory()" - }, - { - "label": ".updateCommentStatus()", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L165", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus", - "community": 51, - "community_name": "BlogsController", - "norm_label": ".updatecommentstatus()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L28", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L51", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": ".findone()" - }, - { - "label": ".review()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": ".review()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L94", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findall", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L108", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findone", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": ".findone()" - }, - { - "label": ".review()", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L125", - "_callable": true, - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": ".review()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": ".findall()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L55", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L43", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": ".update()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_create", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L9", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_findall", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": ".findall()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_remove", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": ".remove()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L22", - "_callable": true, - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": ".update()" - }, - { - "label": "getJwtRefreshSecret()", - "file_type": "code", - "source_file": "backend/src/auth/auth.constants.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_constants_getjwtrefreshsecret", - "community": 54, - "community_name": "UsersService", - "norm_label": "getjwtrefreshsecret()" - }, - { - "label": "getJwtSecret()", - "file_type": "code", - "source_file": "backend/src/auth/auth.constants.ts", - "source_location": "L7", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_auth_constants_getjwtsecret", - "community": 54, - "community_name": "UsersService", - "norm_label": "getjwtsecret()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L16", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_jwt_strategy_jwtstrategy_constructor", - "community": 54, - "community_name": "UsersService", - "norm_label": ".constructor()" - }, - { - "label": ".validate()", - "file_type": "code", - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_auth_jwt_strategy_jwtstrategy_validate", - "community": 54, - "community_name": "UsersService", - "norm_label": ".validate()" - }, - { - "label": ".addAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L131", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller_addaddress", - "community": 54, - "community_name": "UsersService", - "norm_label": ".addaddress()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L44", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller_constructor", - "community": 54, - "community_name": "UsersService", - "norm_label": ".constructor()" - }, - { - "label": ".deleteAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L179", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller_deleteaddress", - "community": 54, - "community_name": "UsersService", - "norm_label": ".deleteaddress()" - }, - { - "label": ".getProfile()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L68", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller_getprofile", - "community": 54, - "community_name": "UsersService", - "norm_label": ".getprofile()" - }, - { - "label": ".setDefaultAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L198", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "community": 54, - "community_name": "UsersService", - "norm_label": ".setdefaultaddress()" - }, - { - "label": ".topUpWallet()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L223", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller_topupwallet", - "community": 54, - "community_name": "UsersService", - "norm_label": ".topupwallet()" - }, - { - "label": ".updateAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L159", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller_updateaddress", - "community": 54, - "community_name": "UsersService", - "norm_label": ".updateaddress()" - }, - { - "label": ".updateProfile()", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L103", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_controller_userscontroller_updateprofile", - "community": 54, - "community_name": "UsersService", - "norm_label": ".updateprofile()" - }, - { - "label": ".addAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L210", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_addaddress", - "community": 54, - "community_name": "UsersService", - "norm_label": ".addaddress()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_constructor", - "community": 54, - "community_name": "UsersService", - "norm_label": ".constructor()" - }, - { - "label": ".deleteAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L258", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_deleteaddress", - "community": 54, - "community_name": "UsersService", - "norm_label": ".deleteaddress()" - }, - { - "label": ".findById()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_findbyid", - "community": 54, - "community_name": "UsersService", - "norm_label": ".findbyid()" - }, - { - "label": ".findByPhone()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L299", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_findbyphone", - "community": 54, - "community_name": "UsersService", - "norm_label": ".findbyphone()" - }, - { - "label": ".setDefaultAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L264", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_setdefaultaddress", - "community": 54, - "community_name": "UsersService", - "norm_label": ".setdefaultaddress()" - }, - { - "label": ".topUpWallet()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L275", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_topupwallet", - "community": 54, - "community_name": "UsersService", - "norm_label": ".topupwallet()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L125", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_update", - "community": 54, - "community_name": "UsersService", - "norm_label": ".update()" - }, - { - "label": ".updateAddress()", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L232", - "_callable": true, - "_origin": "ast", - "id": "backend_src_users_users_service_usersservice_updateaddress", - "community": 54, - "community_name": "UsersService", - "norm_label": ".updateaddress()" - }, - { - "label": "IconPickerModal()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", - "source_location": "L90", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_iconpickermodal_iconpickermodal", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "iconpickermodal()" - }, - { - "label": "ImagePreviewModal()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", - "source_location": "L11", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "imagepreviewmodal()" - }, - { - "label": "ToggleSwitch()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitch", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "toggleswitch()" - }, - { - "label": "PrescriptionsManager()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "prescriptionsmanager()" - }, - { - "label": "createSeoSection()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L236", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_createseosection", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "createseosection()" - }, - { - "label": "UITexts()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L678", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_uitexts", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "uitexts()" - }, - { - "label": "Badge()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_badge_badge", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "badge()" - }, - { - "label": "Skeleton()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Skeleton.tsx", - "source_location": "L2", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_skeleton_skeleton", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "skeleton()" - }, - { - "label": "MonitoringPage()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_monitoringpage_monitoringpage", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "monitoringpage()" - }, - { - "label": "getPaymentMethodLabel()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L148", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "getpaymentmethodlabel()" - }, - { - "label": "getPaymentStatusBadge()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L118", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_getpaymentstatusbadge", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "getpaymentstatusbadge()" - }, - { - "label": "getShippingMethodLabel()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L135", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_getshippingmethodlabel", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "getshippingmethodlabel()" - }, - { - "label": "Orders()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L169", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_orders", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "orders()" - }, - { - "label": "toPersianDigits()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L163", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_topersiandigits", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "topersiandigits()" - }, - { - "label": "Users()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_users_users", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "users()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L18", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_controller_contactcontroller_constructor", - "community": 58, - "community_name": "ContactService", - "norm_label": ".constructor()" - }, - { - "label": ".getAllSubmissions()", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", - "community": 58, - "community_name": "ContactService", - "norm_label": ".getallsubmissions()" - }, - { - "label": ".getContactInfo()", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L35", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo", - "community": 58, - "community_name": "ContactService", - "norm_label": ".getcontactinfo()" - }, - { - "label": ".submitContact()", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_controller_contactcontroller_submitcontact", - "community": 58, - "community_name": "ContactService", - "norm_label": ".submitcontact()" - }, - { - "label": ".updateContactInfo()", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L71", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", - "community": 58, - "community_name": "ContactService", - "norm_label": ".updatecontactinfo()" - }, - { - "label": ".updateSubmissionStatus()", - "file_type": "code", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", - "community": 58, - "community_name": "ContactService", - "norm_label": ".updatesubmissionstatus()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L25", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice_constructor", - "community": 58, - "community_name": "ContactService", - "norm_label": ".constructor()" - }, - { - "label": ".getAllSubmissions()", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L125", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice_getallsubmissions", - "community": 58, - "community_name": "ContactService", - "norm_label": ".getallsubmissions()" - }, - { - "label": ".getContactInfo()", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L77", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice_getcontactinfo", - "community": 58, - "community_name": "ContactService", - "norm_label": ".getcontactinfo()" - }, - { - "label": ".submitContactForm()", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice_submitcontactform", - "community": 58, - "community_name": "ContactService", - "norm_label": ".submitcontactform()" - }, - { - "label": ".updateContactInfoItems()", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L159", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems", - "community": 58, - "community_name": "ContactService", - "norm_label": ".updatecontactinfoitems()" - }, - { - "label": ".updateSubmissionStatus()", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L148", - "_callable": true, - "_origin": "ast", - "id": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus", - "community": 58, - "community_name": "ContactService", - "norm_label": ".updatesubmissionstatus()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_constructor", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": ".constructor()" - }, - { - "label": ".createTicket()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": ".createticket()" - }, - { - "label": ".getAdminTickets()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L89", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": ".getadmintickets()" - }, - { - "label": ".getMyTickets()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": ".getmytickets()" - }, - { - "label": ".getTicketDetails()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L61", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": ".getticketdetails()" - }, - { - "label": ".replyTicket()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L73", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": ".replyticket()" - }, - { - "label": ".updateTicketStatus()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L98", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": ".updateticketstatus()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L21", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_constructor", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": ".constructor()" - }, - { - "label": ".createTicket()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L31", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_createticket", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": ".createticket()" - }, - { - "label": ".generateTicketNumber()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L23", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": ".generateticketnumber()" - }, - { - "label": ".getAdminTickets()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L207", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": ".getadmintickets()" - }, - { - "label": ".getTicketDetails()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L100", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": ".getticketdetails()" - }, - { - "label": ".getUserTickets()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L79", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_getusertickets", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": ".getusertickets()" - }, - { - "label": ".replyToTicket()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L142", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_replytoticket", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": ".replytoticket()" - }, - { - "label": ".updateTicketStatus()", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L279", - "_callable": true, - "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": ".updateticketstatus()" - }, - { - "label": "RichTextEditor()", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", - "source_location": "L76", - "_callable": true, - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditor", - "community": 60, - "community_name": "Blogs.tsx", - "norm_label": "richtexteditor()" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "bannersmanager()", + "id": "frontend_admin_panel_src_pages_bannersmanager_bannersmanager" }, { "label": "Blogs()", @@ -15080,46 +6141,526 @@ "source_location": "L113", "_callable": true, "_origin": "ast", - "id": "frontend_admin_panel_src_pages_blogs_blogs", - "community": 60, - "community_name": "Blogs.tsx", - "norm_label": "blogs()" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "blogs()", + "id": "frontend_admin_panel_src_pages_blogs_blogs" }, { - "label": ".getAdminTransactions()", + "label": "Categories()", "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L685", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L28", "_callable": true, "_origin": "ast", - "id": "backend_src_payment_payment_service_paymentservice_getadmintransactions", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": ".getadmintransactions()" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "categories()", + "id": "frontend_admin_panel_src_pages_categories_categories" }, { - "label": ".findAll()", + "label": "IngredientsManager()", "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L31", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L13", "_callable": true, "_origin": "ast", - "id": "backend_src_products_products_controller_productscontroller_findall", - "community": 62, - "community_name": "ProductsService", - "norm_label": ".findall()" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "ingredientsmanager()", + "id": "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager" }, { - "label": ".findAll()", + "label": "Pets()", "file_type": "code", - "source_file": "backend/src/products/products.service.ts", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "pets()", + "id": "frontend_admin_panel_src_pages_pets_pets" + }, + { + "label": "Products()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "products()", + "id": "frontend_admin_panel_src_pages_products_products" + }, + { + "label": "TestimonialsManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "testimonialsmanager()", + "id": "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager" + }, + { + "label": "Videos()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "videos()", + "id": "frontend_admin_panel_src_pages_videos_videos" + }, + { + "label": "WholesaleApplications()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "wholesaleapplications()", + "id": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/app.controller.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 114, + "community_name": "AppService", + "norm_label": ".constructor()", + "id": "backend_src_app_controller_appcontroller_constructor" + }, + { + "label": ".getHello()", + "file_type": "code", + "source_file": "backend/src/app.controller.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 114, + "community_name": "AppService", + "norm_label": ".gethello()", + "id": "backend_src_app_controller_appcontroller_gethello" + }, + { + "label": ".getHello()", + "file_type": "code", + "source_file": "backend/src/app.service.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 114, + "community_name": "AppService", + "norm_label": ".gethello()", + "id": "backend_src_app_service_appservice_gethello" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_videos_page_generatemetadata" + }, + { + "label": "getInitialVideos()", + "file_type": "code", + "source_file": "frontend/application/app/videos/page.tsx", "source_location": "L14", "_callable": true, "_origin": "ast", - "id": "backend_src_products_products_service_productsservice_findall", + "community": 17, + "community_name": "schema.ts", + "norm_label": "getinitialvideos()", + "id": "frontend_application_app_videos_page_getinitialvideos" + }, + { + "label": "Videos()", + "file_type": "code", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "videos()", + "id": "frontend_application_app_videos_page_videos" + }, + { + "label": "VideosPage()", + "file_type": "code", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "videospage()", + "id": "frontend_application_components_videospage_videospage" + }, + { + "label": "generateVideoObjectSchema()", + "file_type": "code", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "generatevideoobjectschema()", + "id": "frontend_application_lib_schema_generatevideoobjectschema" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".constructor()", + "id": "backend_src_admin_blogs_controller_blogscontroller_constructor" + }, + { + "label": ".createBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".createblog()", + "id": "backend_src_admin_blogs_service_blogsservice_createblog" + }, + { + "label": ".createBlogCategory()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L243", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".createblogcategory()", + "id": "backend_src_admin_blogs_service_blogsservice_createblogcategory" + }, + { + "label": ".createBlogTag()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L265", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".createblogtag()", + "id": "backend_src_admin_blogs_service_blogsservice_createblogtag" + }, + { + "label": ".deleteBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L209", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".deleteblog()", + "id": "backend_src_admin_blogs_service_blogsservice_deleteblog" + }, + { + "label": ".deleteBlogCategory()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L251", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".deleteblogcategory()", + "id": "backend_src_admin_blogs_service_blogsservice_deleteblogcategory" + }, + { + "label": ".deleteBlogTag()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L277", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".deleteblogtag()", + "id": "backend_src_admin_blogs_service_blogsservice_deleteblogtag" + }, + { + "label": ".deleteComment()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L332", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".deletecomment()", + "id": "backend_src_admin_blogs_service_blogsservice_deletecomment" + }, + { + "label": ".getAuthors()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L218", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".getauthors()", + "id": "backend_src_admin_blogs_service_blogsservice_getauthors" + }, + { + "label": ".getBlogById()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".getblogbyid()", + "id": "backend_src_admin_blogs_service_blogsservice_getblogbyid" + }, + { + "label": ".getBlogCategories()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L232", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".getblogcategories()", + "id": "backend_src_admin_blogs_service_blogsservice_getblogcategories" + }, + { + "label": ".getBlogs()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".getblogs()", + "id": "backend_src_admin_blogs_service_blogsservice_getblogs" + }, + { + "label": ".getBlogTags()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L256", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".getblogtags()", + "id": "backend_src_admin_blogs_service_blogsservice_getblogtags" + }, + { + "label": ".getComments()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L282", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".getcomments()", + "id": "backend_src_admin_blogs_service_blogsservice_getcomments" + }, + { + "label": ".updateBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L144", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".updateblog()", + "id": "backend_src_admin_blogs_service_blogsservice_updateblog" + }, + { + "label": ".updateBlogCategory()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L247", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".updateblogcategory()", + "id": "backend_src_admin_blogs_service_blogsservice_updateblogcategory" + }, + { + "label": ".updateCommentStatus()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L316", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".updatecommentstatus()", + "id": "backend_src_admin_blogs_service_blogsservice_updatecommentstatus" + }, + { + "label": ".revalidateBlog()", + "file_type": "code", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L99", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".revalidateblog()", + "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog" + }, + { + "label": ".adjustWallet()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": ".adjustwallet()", + "id": "backend_src_admin_admin_controller_admincontroller_adjustwallet" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": ".constructor()", + "id": "backend_src_admin_admin_controller_admincontroller_constructor" + }, + { + "label": ".createCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L209", + "_callable": true, + "_origin": "ast", + "community": 152, + "community_name": ".createCoupon", + "norm_label": ".createcoupon()", + "id": "backend_src_admin_admin_controller_admincontroller_createcoupon" + }, + { + "label": ".createDoctor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L247", + "_callable": true, + "_origin": "ast", + "community": 152, + "community_name": ".createCoupon", + "norm_label": ".createdoctor()", + "id": "backend_src_admin_admin_controller_admincontroller_createdoctor" + }, + { + "label": ".createProduct()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", "community": 62, - "community_name": "ProductsService", - "norm_label": ".findall()" + "community_name": "ProductDto", + "norm_label": ".createproduct()", + "id": "backend_src_admin_admin_controller_admincontroller_createproduct" + }, + { + "label": ".createUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": ".createuser()", + "id": "backend_src_admin_admin_controller_admincontroller_createuser" + }, + { + "label": ".deleteCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L233", + "_callable": true, + "_origin": "ast", + "community": 122, + "community_name": "Param", + "norm_label": ".deletecoupon()", + "id": "backend_src_admin_admin_controller_admincontroller_deletecoupon" + }, + { + "label": ".deleteDoctor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L280", + "_callable": true, + "_origin": "ast", + "community": 122, + "community_name": "Param", + "norm_label": ".deletedoctor()", + "id": "backend_src_admin_admin_controller_admincontroller_deletedoctor" + }, + { + "label": ".deleteProduct()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L145", + "_callable": true, + "_origin": "ast", + "community": 122, + "community_name": "Param", + "norm_label": ".deleteproduct()", + "id": "backend_src_admin_admin_controller_admincontroller_deleteproduct" + }, + { + "label": ".deleteUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "community": 122, + "community_name": "Param", + "norm_label": ".deleteuser()", + "id": "backend_src_admin_admin_controller_admincontroller_deleteuser" }, { "label": ".getCoupons()", @@ -15128,10 +6669,22 @@ "source_location": "L202", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getcoupons", "community": 66, - "community_name": "AdminQueryDto", - "norm_label": ".getcoupons()" + "community_name": "ApiOperation", + "norm_label": ".getcoupons()", + "id": "backend_src_admin_admin_controller_admincontroller_getcoupons" + }, + { + "label": ".getDashboardStats()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 66, + "community_name": "ApiOperation", + "norm_label": ".getdashboardstats()", + "id": "backend_src_admin_admin_controller_admincontroller_getdashboardstats" }, { "label": ".getDoctors()", @@ -15140,10 +6693,22 @@ "source_location": "L240", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getdoctors", "community": 66, - "community_name": "AdminQueryDto", - "norm_label": ".getdoctors()" + "community_name": "ApiOperation", + "norm_label": ".getdoctors()", + "id": "backend_src_admin_admin_controller_admincontroller_getdoctors" + }, + { + "label": ".getOrderById()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L162", + "_callable": true, + "_origin": "ast", + "community": 66, + "community_name": "ApiOperation", + "norm_label": ".getorderbyid()", + "id": "backend_src_admin_admin_controller_admincontroller_getorderbyid" }, { "label": ".getOrders()", @@ -15152,10 +6717,10 @@ "source_location": "L155", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getorders", "community": 66, - "community_name": "AdminQueryDto", - "norm_label": ".getorders()" + "community_name": "ApiOperation", + "norm_label": ".getorders()", + "id": "backend_src_admin_admin_controller_admincontroller_getorders" }, { "label": ".getProducts()", @@ -15164,10 +6729,34 @@ "source_location": "L121", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getproducts", "community": 66, - "community_name": "AdminQueryDto", - "norm_label": ".getproducts()" + "community_name": "ApiOperation", + "norm_label": ".getproducts()", + "id": "backend_src_admin_admin_controller_admincontroller_getproducts" + }, + { + "label": ".getSettings()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L287", + "_callable": true, + "_origin": "ast", + "community": 66, + "community_name": "ApiOperation", + "norm_label": ".getsettings()", + "id": "backend_src_admin_admin_controller_admincontroller_getsettings" + }, + { + "label": ".getUserDetails()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "community": 66, + "community_name": "ApiOperation", + "norm_label": ".getuserdetails()", + "id": "backend_src_admin_admin_controller_admincontroller_getuserdetails" }, { "label": ".getUsers()", @@ -15176,10 +6765,214 @@ "source_location": "L44", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_controller_admincontroller_getusers", "community": 66, - "community_name": "AdminQueryDto", - "norm_label": ".getusers()" + "community_name": "ApiOperation", + "norm_label": ".getusers()", + "id": "backend_src_admin_admin_controller_admincontroller_getusers" + }, + { + "label": ".refundOrderToWallet()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L184", + "_callable": true, + "_origin": "ast", + "community": 152, + "community_name": ".createCoupon", + "norm_label": ".refundordertowallet()", + "id": "backend_src_admin_admin_controller_admincontroller_refundordertowallet" + }, + { + "label": ".toggleCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L223", + "_callable": true, + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": ".togglecoupon()", + "id": "backend_src_admin_admin_controller_admincontroller_togglecoupon" + }, + { + "label": ".updateCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L216", + "_callable": true, + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": ".updatecoupon()", + "id": "backend_src_admin_admin_controller_admincontroller_updatecoupon" + }, + { + "label": ".updateDoctor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L263", + "_callable": true, + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": ".updatedoctor()", + "id": "backend_src_admin_admin_controller_admincontroller_updatedoctor" + }, + { + "label": ".updateOrderStatus()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": ".updateorderstatus()", + "id": "backend_src_admin_admin_controller_admincontroller_updateorderstatus" + }, + { + "label": ".updateProduct()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "community": 62, + "community_name": "ProductDto", + "norm_label": ".updateproduct()", + "id": "backend_src_admin_admin_controller_admincontroller_updateproduct" + }, + { + "label": ".updateSettings()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L294", + "_callable": true, + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": ".updatesettings()", + "id": "backend_src_admin_admin_controller_admincontroller_updatesettings" + }, + { + "label": ".updateUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L69", + "_callable": true, + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": ".updateuser()", + "id": "backend_src_admin_admin_controller_admincontroller_updateuser" + }, + { + "label": ".updateUserRole()", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": ".updateuserrole()", + "id": "backend_src_admin_admin_controller_admincontroller_updateuserrole" + }, + { + "label": ".adjustUserWallet()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L970", + "_callable": true, + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": ".adjustuserwallet()", + "id": "backend_src_admin_admin_service_adminservice_adjustuserwallet" + }, + { + "label": ".createCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L772", + "_callable": true, + "_origin": "ast", + "community": 152, + "community_name": ".createCoupon", + "norm_label": ".createcoupon()", + "id": "backend_src_admin_admin_service_adminservice_createcoupon" + }, + { + "label": ".createDoctor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L943", + "_callable": true, + "_origin": "ast", + "community": 152, + "community_name": ".createCoupon", + "norm_label": ".createdoctor()", + "id": "backend_src_admin_admin_service_adminservice_createdoctor" + }, + { + "label": ".createProduct()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L399", + "_callable": true, + "_origin": "ast", + "community": 62, + "community_name": "ProductDto", + "norm_label": ".createproduct()", + "id": "backend_src_admin_admin_service_adminservice_createproduct" + }, + { + "label": ".createUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L177", + "_callable": true, + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": ".createuser()", + "id": "backend_src_admin_admin_service_adminservice_createuser" + }, + { + "label": ".deleteCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L836", + "_callable": true, + "_origin": "ast", + "community": 122, + "community_name": "Param", + "norm_label": ".deletecoupon()", + "id": "backend_src_admin_admin_service_adminservice_deletecoupon" + }, + { + "label": ".deleteDoctor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L966", + "_callable": true, + "_origin": "ast", + "community": 122, + "community_name": "Param", + "norm_label": ".deletedoctor()", + "id": "backend_src_admin_admin_service_adminservice_deletedoctor" + }, + { + "label": ".deleteUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L288", + "_callable": true, + "_origin": "ast", + "community": 122, + "community_name": "Param", + "norm_label": ".deleteuser()", + "id": "backend_src_admin_admin_service_adminservice_deleteuser" }, { "label": ".getCoupons()", @@ -15188,10 +6981,10 @@ "source_location": "L741", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getcoupons", - "community": 66, - "community_name": "AdminQueryDto", - "norm_label": ".getcoupons()" + "community": 76, + "community_name": "AdminService", + "norm_label": ".getcoupons()", + "id": "backend_src_admin_admin_service_adminservice_getcoupons" }, { "label": ".getDoctors()", @@ -15200,10 +6993,22 @@ "source_location": "L937", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getdoctors", - "community": 66, - "community_name": "AdminQueryDto", - "norm_label": ".getdoctors()" + "community": 76, + "community_name": "AdminService", + "norm_label": ".getdoctors()", + "id": "backend_src_admin_admin_service_adminservice_getdoctors" + }, + { + "label": ".getOrderById()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L631", + "_callable": true, + "_origin": "ast", + "community": 76, + "community_name": "AdminService", + "norm_label": ".getorderbyid()", + "id": "backend_src_admin_admin_service_adminservice_getorderbyid" }, { "label": ".getOrders()", @@ -15212,10 +7017,22 @@ "source_location": "L573", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getorders", - "community": 66, - "community_name": "AdminQueryDto", - "norm_label": ".getorders()" + "community": 76, + "community_name": "AdminService", + "norm_label": ".getorders()", + "id": "backend_src_admin_admin_service_adminservice_getorders" + }, + { + "label": ".getPets()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L887", + "_callable": true, + "_origin": "ast", + "community": 76, + "community_name": "AdminService", + "norm_label": ".getpets()", + "id": "backend_src_admin_admin_service_adminservice_getpets" }, { "label": ".getProducts()", @@ -15224,10 +7041,34 @@ "source_location": "L311", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getproducts", - "community": 66, - "community_name": "AdminQueryDto", - "norm_label": ".getproducts()" + "community": 76, + "community_name": "AdminService", + "norm_label": ".getproducts()", + "id": "backend_src_admin_admin_service_adminservice_getproducts" + }, + { + "label": ".getSettings()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L842", + "_callable": true, + "_origin": "ast", + "community": 76, + "community_name": "AdminService", + "norm_label": ".getsettings()", + "id": "backend_src_admin_admin_service_adminservice_getsettings" + }, + { + "label": ".getUserDetails()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "community": 76, + "community_name": "AdminService", + "norm_label": ".getuserdetails()", + "id": "backend_src_admin_admin_service_adminservice_getuserdetails" }, { "label": ".getUsers()", @@ -15236,226 +7077,334 @@ "source_location": "L102", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_admin_service_adminservice_getusers", - "community": 66, - "community_name": "AdminQueryDto", - "norm_label": ".getusers()" + "community": 76, + "community_name": "AdminService", + "norm_label": ".getusers()", + "id": "backend_src_admin_admin_service_adminservice_getusers" + }, + { + "label": ".refundOrderToWallet()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L673", + "_callable": true, + "_origin": "ast", + "community": 152, + "community_name": ".createCoupon", + "norm_label": ".refundordertowallet()", + "id": "backend_src_admin_admin_service_adminservice_refundordertowallet" + }, + { + "label": ".toggleCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L829", + "_callable": true, + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": ".togglecoupon()", + "id": "backend_src_admin_admin_service_adminservice_togglecoupon" + }, + { + "label": ".updateCoupon()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L799", + "_callable": true, + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": ".updatecoupon()", + "id": "backend_src_admin_admin_service_adminservice_updatecoupon" + }, + { + "label": ".updateDoctor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L953", + "_callable": true, + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": ".updatedoctor()", + "id": "backend_src_admin_admin_service_adminservice_updatedoctor" + }, + { + "label": ".updateOrderStatus()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L653", + "_callable": true, + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": ".updateorderstatus()", + "id": "backend_src_admin_admin_service_adminservice_updateorderstatus" + }, + { + "label": ".updateProduct()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L468", + "_callable": true, + "_origin": "ast", + "community": 62, + "community_name": "ProductDto", + "norm_label": ".updateproduct()", + "id": "backend_src_admin_admin_service_adminservice_updateproduct" + }, + { + "label": ".updateSettings()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L850", + "_callable": true, + "_origin": "ast", + "community": 76, + "community_name": "AdminService", + "norm_label": ".updatesettings()", + "id": "backend_src_admin_admin_service_adminservice_updatesettings" + }, + { + "label": ".updateUser()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L220", + "_callable": true, + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": ".updateuser()", + "id": "backend_src_admin_admin_service_adminservice_updateuser" + }, + { + "label": ".updateUserRole()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L281", + "_callable": true, + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": ".updateuserrole()", + "id": "backend_src_admin_admin_service_adminservice_updateuserrole" + }, + { + "label": "generateOpenApi()", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "generateopenapi()", + "id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi" }, { "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L25", + "source_file": "backend/src/app.module.ts", + "source_location": "L90", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_pets_controller_petscontroller_constructor", - "community": 67, - "community_name": "PetsController", - "norm_label": ".constructor()" + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": ".constructor()", + "id": "backend_src_app_module_appmodule_constructor" }, { - "label": ".deletePet()", + "label": "validateEnv()", "file_type": "code", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L38", + "source_file": "backend/src/common/env.validation.ts", + "source_location": "L39", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_pets_controller_petscontroller_deletepet", - "community": 67, - "community_name": "PetsController", - "norm_label": ".deletepet()" + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "validateenv()", + "id": "backend_src_common_env_validation_validateenv" }, { - "label": ".getPets()", + "label": ".catch()", "file_type": "code", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L32", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L16", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_pets_controller_petscontroller_getpets", - "community": 67, - "community_name": "PetsController", - "norm_label": ".getpets()" + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": ".catch()", + "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch" }, { - "label": ".constructor()", + "label": ".deriveErrorCode()", "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L13", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L116", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_pets_service_petsservice_constructor", - "community": 67, - "community_name": "PetsController", - "norm_label": ".constructor()" + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": ".deriveerrorcode()", + "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode" }, { - "label": ".deletePet()", + "label": ".translateGenericMessage()", "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L65", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L90", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_pets_service_petsservice_deletepet", - "community": 67, - "community_name": "PetsController", - "norm_label": ".deletepet()" + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": ".translategenericmessage()", + "id": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage" }, { - "label": ".getPets()", + "label": ".catch()", "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", + "source_file": "backend/src/common/filters/prisma-exception.filter.ts", "source_location": "L15", "_callable": true, "_origin": "ast", - "id": "backend_src_admin_pets_service_petsservice_getpets", - "community": 67, - "community_name": "PetsController", - "norm_label": ".getpets()" + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": ".catch()", + "id": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch" }, { - "label": ".addHealthLog()", + "label": ".intercept()", "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L260", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_addhealthlog", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": ".addhealthlog()" - }, - { - "label": ".addReminder()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L198", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_addreminder", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": ".addreminder()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_constructor", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L26", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_create", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": ".create()" - }, - { - "label": ".findAllAdmin()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_findalladmin", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": ".findalladmin()" - }, - { - "label": ".findAllByUser()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L109", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_findallbyuser", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": ".findallbyuser()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L150", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_findone", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": ".findone()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L191", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_remove", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": ".remove()" - }, - { - "label": ".toggleReminder()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L211", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_togglereminder", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": ".togglereminder()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L161", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_service_petsservice_update", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": ".update()" - }, - { - "label": "AboutPage()", - "file_type": "code", - "source_file": "frontend/application/app/about/page.tsx", + "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", "source_location": "L13", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_about_page_aboutpage", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "aboutpage()" + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": ".intercept()", + "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept" }, { - "label": "generateMetadata()", + "label": ".transform()", "file_type": "code", - "source_file": "frontend/application/app/about/page.tsx", - "source_location": "L5", + "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", + "source_location": "L17", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_about_page_generatemetadata", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "generatemetadata()" + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": ".transform()", + "id": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform" + }, + { + "label": "bootstrap()", + "file_type": "code", + "source_file": "backend/src/main.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "bootstrap()", + "id": "backend_src_main_bootstrap" + }, + { + "label": "cmd_next_task()", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L105", + "_callable": true, + "_origin": "ast", + "community": 132, + "community_name": "orchestrate.py", + "norm_label": "cmd_next_task()", + "id": "ai_agency_orchestrate_cmd_next_task" + }, + { + "label": "cmd_progress()", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "community": 132, + "community_name": "orchestrate.py", + "norm_label": "cmd_progress()", + "id": "ai_agency_orchestrate_cmd_progress" + }, + { + "label": "cmd_reset()", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "community": 132, + "community_name": "orchestrate.py", + "norm_label": "cmd_reset()", + "id": "ai_agency_orchestrate_cmd_reset" + }, + { + "label": "cmd_status()", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "community": 132, + "community_name": "orchestrate.py", + "norm_label": "cmd_status()", + "id": "ai_agency_orchestrate_cmd_status" + }, + { + "label": "cmd_unblock()", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "community": 132, + "community_name": "orchestrate.py", + "norm_label": "cmd_unblock()", + "id": "ai_agency_orchestrate_cmd_unblock" + }, + { + "label": "load_json()", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "community": 132, + "community_name": "orchestrate.py", + "norm_label": "load_json()", + "id": "ai_agency_orchestrate_load_json" + }, + { + "label": "main()", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L180", + "_callable": true, + "_origin": "ast", + "community": 132, + "community_name": "orchestrate.py", + "norm_label": "main()", + "id": "ai_agency_orchestrate_main" + }, + { + "label": "save_json()", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "community": 132, + "community_name": "orchestrate.py", + "norm_label": "save_json()", + "id": "ai_agency_orchestrate_save_json" }, { "label": "CatalogClient()", @@ -15464,10 +7413,10 @@ "source_location": "L8", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_catalog_catalogclient_catalogclient", "community": 71, "community_name": "getPageMetadata", - "norm_label": "catalogclient()" + "norm_label": "catalogclient()", + "id": "frontend_application_app_catalog_catalogclient_catalogclient" }, { "label": "CatalogPage()", @@ -15476,10 +7425,10 @@ "source_location": "L13", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_catalog_page_catalogpage", "community": 71, "community_name": "getPageMetadata", - "norm_label": "catalogpage()" + "norm_label": "catalogpage()", + "id": "frontend_application_app_catalog_page_catalogpage" }, { "label": "generateMetadata()", @@ -15488,706 +7437,10 @@ "source_location": "L5", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_catalog_page_generatemetadata", "community": 71, "community_name": "getPageMetadata", - "norm_label": "generatemetadata()" - }, - { - "label": "Checkout()", - "file_type": "code", - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_checkout_page_checkout", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "checkout()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_checkout_page_generatemetadata", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "generatemetadata()" - }, - { - "label": "DashboardPage()", - "file_type": "code", - "source_file": "frontend/application/app/dashboard/page.tsx", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_dashboard_page_dashboardpage", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "dashboardpage()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/dashboard/page.tsx", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_dashboard_page_generatemetadata", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "generatemetadata()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_page_generatemetadata", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "generatemetadata()" - }, - { - "label": "getHomeData()", - "file_type": "code", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_page_gethomedata", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "gethomedata()" - }, - { - "label": "Home()", - "file_type": "code", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_page_home", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "home()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/privacy/page.tsx", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_privacy_page_generatemetadata", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "generatemetadata()" - }, - { - "label": "PrivacyPage()", - "file_type": "code", - "source_file": "frontend/application/app/privacy/page.tsx", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_privacy_page_privacypage", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "privacypage()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/profile/page.tsx", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_profile_page_generatemetadata", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "generatemetadata()" - }, - { - "label": "ProfilePage()", - "file_type": "code", - "source_file": "frontend/application/app/profile/page.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_profile_page_profilepage", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "profilepage()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/track/page.tsx", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_track_page_generatemetadata", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "generatemetadata()" - }, - { - "label": "TrackPage()", - "file_type": "code", - "source_file": "frontend/application/app/track/page.tsx", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_track_page_trackpage", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "trackpage()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/wiki/page.tsx", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_wiki_page_generatemetadata", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "generatemetadata()" - }, - { - "label": "WikiPage()", - "file_type": "code", - "source_file": "frontend/application/app/wiki/page.tsx", - "source_location": "L14", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_wiki_page_wikipage", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "wikipage()" - }, - { - "label": "getPageMetadata()", - "file_type": "code", - "source_file": "frontend/application/lib/seo.ts", - "source_location": "L173", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_lib_seo_getpagemetadata", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "getpagemetadata()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L29", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_wikicontroller_constructor", - "community": 74, - "community_name": "WikiController", - "norm_label": ".constructor()" - }, - { - "label": ".createTerm()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L42", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_wikicontroller_createterm", - "community": 74, - "community_name": "WikiController", - "norm_label": ".createterm()" - }, - { - "label": ".deleteTerm()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L59", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", - "community": 74, - "community_name": "WikiController", - "norm_label": ".deleteterm()" - }, - { - "label": ".getTerms()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_wikicontroller_getterms", - "community": 74, - "community_name": "WikiController", - "norm_label": ".getterms()" - }, - { - "label": ".updateTerm()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_wikicontroller_updateterm", - "community": 74, - "community_name": "WikiController", - "norm_label": ".updateterm()" - }, - { - "label": ".addHealthLog()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L285", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "community": 75, - "community_name": "PetsController", - "norm_label": ".addhealthlog()" - }, - { - "label": ".addReminder()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L259", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_addreminder", - "community": 75, - "community_name": "PetsController", - "norm_label": ".addreminder()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L56", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_constructor", - "community": 75, - "community_name": "PetsController", - "norm_label": ".constructor()" - }, - { - "label": ".create()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L119", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_create", - "community": 75, - "community_name": "PetsController", - "norm_label": ".create()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L155", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_findall", - "community": 75, - "community_name": "PetsController", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L192", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_findone", - "community": 75, - "community_name": "PetsController", - "norm_label": ".findone()" - }, - { - "label": ".remove()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L253", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_remove", - "community": 75, - "community_name": "PetsController", - "norm_label": ".remove()" - }, - { - "label": ".toggleReminder()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L269", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_togglereminder", - "community": 75, - "community_name": "PetsController", - "norm_label": ".togglereminder()" - }, - { - "label": ".update()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L223", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_update", - "community": 75, - "community_name": "PetsController", - "norm_label": ".update()" - }, - { - "label": ".uploadPetImage()", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L81", - "_callable": true, - "_origin": "ast", - "id": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", - "community": 75, - "community_name": "PetsController", - "norm_label": ".uploadpetimage()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_shop_page_generatemetadata", - "community": 76, - "community_name": "shop/page.tsx", - "norm_label": "generatemetadata()" - }, - { - "label": "Shop()", - "file_type": "code", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L34", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_shop_page_shop", - "community": 76, - "community_name": "shop/page.tsx", - "norm_label": "shop()" - }, - { - "label": "ArchivePage()", - "file_type": "code", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L237", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_archivepage_archivepage", - "community": 76, - "community_name": "shop/page.tsx", - "norm_label": "archivepage()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_seo_seo_controller_seocontroller_constructor", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": ".constructor()" - }, - { - "label": ".getProductSchema()", - "file_type": "code", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L20", - "_callable": true, - "_origin": "ast", - "id": "backend_src_seo_seo_controller_seocontroller_getproductschema", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": ".getproductschema()" - }, - { - "label": ".getSitemap()", - "file_type": "code", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L12", - "_callable": true, - "_origin": "ast", - "id": "backend_src_seo_seo_controller_seocontroller_getsitemap", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": ".getsitemap()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "backend_src_seo_seo_service_seoservice_constructor", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": ".constructor()" - }, - { - "label": ".getProductSchema()", - "file_type": "code", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L36", - "_callable": true, - "_origin": "ast", - "id": "backend_src_seo_seo_service_seoservice_getproductschema", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": ".getproductschema()" - }, - { - "label": ".getSitemapUrls()", - "file_type": "code", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_seo_seo_service_seoservice_getsitemapurls", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": ".getsitemapurls()" - }, - { - "label": "escapeXml()", - "file_type": "code", - "source_file": "frontend/application/app/blog/rss.xml/route.ts", - "source_location": "L65", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_blog_rss_xml_route_escapexml", - "community": 78, - "community_name": "route.ts", - "norm_label": "escapexml()" - }, - { - "label": "GET()", - "file_type": "code", - "source_file": "frontend/application/app/blog/rss.xml/route.ts", - "source_location": "L5", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_blog_rss_xml_route_get", - "community": 78, - "community_name": "route.ts", - "norm_label": "get()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_media_service_mediaservice_constructor", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": ".constructor()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L10", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_reports_controller_reportscontroller_constructor", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": ".constructor()" - }, - { - "label": ".getReports()", - "file_type": "code", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_reports_controller_reportscontroller_getreports", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": ".getreports()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_reports_service_reportsservice_constructor", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": ".constructor()" - }, - { - "label": ".getDashboardReports()", - "file_type": "code", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_reports_service_reportsservice_getdashboardreports", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": ".getdashboardreports()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L13", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_service_wikiservice_constructor", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": ".constructor()" - }, - { - "label": ".createTerm()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L45", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_service_wikiservice_createterm", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": ".createterm()" - }, - { - "label": ".deleteTerm()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L57", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_service_wikiservice_deleteterm", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": ".deleteterm()" - }, - { - "label": ".getTerms()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L15", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_service_wikiservice_getterms", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": ".getterms()" - }, - { - "label": ".updateTerm()", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_admin_wiki_service_wikiservice_updateterm", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": ".updateterm()" - }, - { - "label": ".checkHealth()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L54", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth", - "community": 86, - "community_name": "zibal.service.ts", - "norm_label": ".checkhealth()" - }, - { - "label": ".getGatewayName()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L49", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname", - "community": 86, - "community_name": "zibal.service.ts", - "norm_label": ".getgatewayname()" - }, - { - "label": ".getStartUrl()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl", - "community": 86, - "community_name": "zibal.service.ts", - "norm_label": ".getstarturl()" - }, - { - "label": ".inquiryPayment()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L52", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment", - "community": 86, - "community_name": "zibal.service.ts", - "norm_label": ".inquirypayment()" - }, - { - "label": ".requestPayment()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L50", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment", - "community": 86, - "community_name": "zibal.service.ts", - "norm_label": ".requestpayment()" - }, - { - "label": ".verifyPayment()", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L51", - "_callable": true, - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment", - "community": 86, - "community_name": "zibal.service.ts", - "norm_label": ".verifypayment()" + "norm_label": "generatemetadata()", + "id": "frontend_application_app_catalog_page_generatemetadata" }, { "label": "ClientLayout()", @@ -16196,34 +7449,10 @@ "source_location": "L23", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_clientlayout_clientlayout", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "clientlayout()" - }, - { - "label": "AuthModal()", - "file_type": "code", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L38", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_authmodal_authmodal", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "authmodal()" - }, - { - "label": "extractOtpFromText()", - "file_type": "code", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L30", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_components_authmodal_extractotpfromtext", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "extractotpfromtext()" + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "clientlayout()", + "id": "frontend_application_app_clientlayout_clientlayout" }, { "label": "B2BLandingClient()", @@ -16232,10 +7461,10 @@ "source_location": "L25", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_b2blandingclient_b2blandingclient", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "b2blandingclient()" + "community": 17, + "community_name": "schema.ts", + "norm_label": "b2blandingclient()", + "id": "frontend_application_components_b2blandingclient_b2blandingclient" }, { "label": "BrandLogo()", @@ -16244,22 +7473,22 @@ "source_location": "L14", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_brandlogo_brandlogo", - "community": 88, + "community": 90, "community_name": "useSettingsStore", - "norm_label": "brandlogo()" + "norm_label": "brandlogo()", + "id": "frontend_application_components_brandlogo_brandlogo" }, { - "label": "CartDrawer()", + "label": "EnamadBadge()", "file_type": "code", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L15", + "source_file": "frontend/application/components/EnamadBadge.tsx", + "source_location": "L9", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_cartdrawer_cartdrawer", - "community": 88, + "community": 90, "community_name": "useSettingsStore", - "norm_label": "cartdrawer()" + "norm_label": "enamadbadge()", + "id": "frontend_application_components_enamadbadge_enamadbadge" }, { "label": "Footer()", @@ -16268,10 +7497,10 @@ "source_location": "L11", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_footer_footer", - "community": 88, + "community": 90, "community_name": "useSettingsStore", - "norm_label": "footer()" + "norm_label": "footer()", + "id": "frontend_application_components_footer_footer" }, { "label": "MaintenancePage()", @@ -16280,10 +7509,10 @@ "source_location": "L7", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_maintenancepage_maintenancepage", - "community": 88, + "community": 90, "community_name": "useSettingsStore", - "norm_label": "maintenancepage()" + "norm_label": "maintenancepage()", + "id": "frontend_application_components_maintenancepage_maintenancepage" }, { "label": "NetworkBanner()", @@ -16292,10 +7521,22 @@ "source_location": "L7", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_networkbanner_networkbanner", "community": 88, - "community_name": "useSettingsStore", - "norm_label": "networkbanner()" + "community_name": "toPersian", + "norm_label": "networkbanner()", + "id": "frontend_application_components_networkbanner_networkbanner" + }, + { + "label": "SmartAdvisor()", + "file_type": "code", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "smartadvisor()", + "id": "frontend_application_components_smartadvisor_smartadvisor" }, { "label": "TickerBanner()", @@ -16304,10 +7545,10 @@ "source_location": "L6", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_tickerbanner_tickerbanner", - "community": 88, + "community": 90, "community_name": "useSettingsStore", - "norm_label": "tickerbanner()" + "norm_label": "tickerbanner()", + "id": "frontend_application_components_tickerbanner_tickerbanner" }, { "label": "useNetworkStatus()", @@ -16316,10 +7557,1042 @@ "source_location": "L3", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", "community": 88, - "community_name": "useSettingsStore", - "norm_label": "usenetworkstatus()" + "community_name": "toPersian", + "norm_label": "usenetworkstatus()", + "id": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus" + }, + { + "label": ".componentDidCatch()", + "file_type": "code", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 140, + "community_name": "ErrorBoundary", + "norm_label": ".componentdidcatch()", + "id": "frontend_application_components_errorboundary_errorboundary_componentdidcatch" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 140, + "community_name": "ErrorBoundary", + "norm_label": ".constructor()", + "id": "frontend_application_components_errorboundary_errorboundary_constructor" + }, + { + "label": ".getDerivedStateFromError()", + "file_type": "code", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "community": 140, + "community_name": "ErrorBoundary", + "norm_label": ".getderivedstatefromerror()", + "id": "frontend_application_components_errorboundary_errorboundary_getderivedstatefromerror" + }, + { + "label": ".handleRetry()", + "file_type": "code", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 140, + "community_name": "ErrorBoundary", + "norm_label": ".handleretry()", + "id": "frontend_application_components_errorboundary_errorboundary_handleretry" + }, + { + "label": ".render()", + "file_type": "code", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "community": 140, + "community_name": "ErrorBoundary", + "norm_label": ".render()", + "id": "frontend_application_components_errorboundary_errorboundary_render" + }, + { + "label": "waitForBackend()", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 142, + "community_name": "start-dev.js", + "norm_label": "waitforbackend()", + "id": "scripts_start_dev_waitforbackend" + }, + { + "label": "check()", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 142, + "community_name": "start-dev.js", + "norm_label": "check()", + "id": "scripts_start_dev_waitforbackend_check" + }, + { + "label": "generateOpenApi()", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "community": 143, + "community_name": "generate-openapi.js", + "norm_label": "generateopenapi()", + "id": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi_generateopenapi" + }, + { + "label": ".deleteProduct()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L559", + "_callable": true, + "_origin": "ast", + "community": 122, + "community_name": "Param", + "norm_label": ".deleteproduct()", + "id": "backend_src_admin_admin_service_adminservice_deleteproduct" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": ".constructor()", + "id": "backend_src_admin_blogs_service_blogsservice_constructor" + }, + { + "label": ".frontendUrl()", + "file_type": "code", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": ".frontendurl()", + "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_frontendurl" + }, + { + "label": ".revalidatePath()", + "file_type": "code", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "community": 62, + "community_name": "ProductDto", + "norm_label": ".revalidatepath()", + "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatepath" + }, + { + "label": ".revalidateProduct()", + "file_type": "code", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "community": 62, + "community_name": "ProductDto", + "norm_label": ".revalidateproduct()", + "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct" + }, + { + "label": ".revalidateSettings()", + "file_type": "code", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L115", + "_callable": true, + "_origin": "ast", + "community": 62, + "community_name": "ProductDto", + "norm_label": ".revalidatesettings()", + "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatesettings" + }, + { + "label": ".revalidateTag()", + "file_type": "code", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 62, + "community_name": "ProductDto", + "norm_label": ".revalidatetag()", + "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatetag" + }, + { + "label": ".secret()", + "file_type": "code", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": ".secret()", + "id": "backend_src_common_revalidation_revalidation_service_revalidationservice_secret" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": ".constructor()", + "id": "backend_src_products_products_service_productsservice_constructor" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": ".constructor()", + "id": "backend_src_reviews_reviews_service_reviewsservice_constructor" + }, + { + "label": ".deleteReview()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L243", + "_callable": true, + "_origin": "ast", + "community": 10, + "community_name": "ReviewsService", + "norm_label": ".deletereview()", + "id": "backend_src_reviews_reviews_service_reviewsservice_deletereview" + }, + { + "label": ".updateReviewStatus()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "community": 10, + "community_name": "ReviewsService", + "norm_label": ".updatereviewstatus()", + "id": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus" + }, + { + "label": "SmsSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "community": 149, + "community_name": "SmsSettingsPage.tsx", + "norm_label": "smssettingspage()", + "id": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage" + }, + { + "label": "toPersianDigits()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "community": 149, + "community_name": "SmsSettingsPage.tsx", + "norm_label": "topersiandigits()", + "id": "frontend_admin_panel_src_pages_smssettingspage_topersiandigits" + }, + { + "label": "Layout()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Layout.tsx", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "layout()", + "id": "frontend_admin_panel_src_components_layout_layout" + }, + { + "label": "ProtectedRoute()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "protectedroute()", + "id": "frontend_admin_panel_src_components_protectedroute_protectedroute" + }, + { + "label": "Sidebar()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "sidebar()", + "id": "frontend_admin_panel_src_components_sidebar_sidebar" + }, + { + "label": "Topbar()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "topbar()", + "id": "frontend_admin_panel_src_components_topbar_topbar" + }, + { + "label": "B2BManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "b2bmanager()", + "id": "frontend_admin_panel_src_pages_b2bmanager_b2bmanager" + }, + { + "label": "Login()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Login.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "login()", + "id": "frontend_admin_panel_src_pages_login_login" + }, + { + "label": "SeoSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "seosettingspage()", + "id": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage" + }, + { + "label": "SmartAdvisorManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "smartadvisormanager()", + "id": "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager" + }, + { + "label": "SystemSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "systemsettingspage()", + "id": "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage" + }, + { + "label": "processQueue()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "processqueue()", + "id": "frontend_admin_panel_src_services_api_processqueue" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": ".constructor()", + "id": "backend_src_admin_admin_service_adminservice_constructor" + }, + { + "label": ".getDashboardStats()", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "community": 76, + "community_name": "AdminService", + "norm_label": ".getdashboardstats()", + "id": "backend_src_admin_admin_service_adminservice_getdashboardstats" + }, + { + "label": ".adminLogin()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L263", + "_callable": true, + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": ".adminlogin()", + "id": "backend_src_auth_auth_service_authservice_adminlogin" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": ".constructor()", + "id": "backend_src_auth_auth_service_authservice_constructor" + }, + { + "label": ".login()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": ".login()", + "id": "backend_src_auth_auth_service_authservice_login" + }, + { + "label": ".refresh()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L319", + "_callable": true, + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": ".refresh()", + "id": "backend_src_auth_auth_service_authservice_refresh" + }, + { + "label": ".register()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L167", + "_callable": true, + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": ".register()", + "id": "backend_src_auth_auth_service_authservice_register" + }, + { + "label": ".sendOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": ".sendotp()", + "id": "backend_src_auth_auth_service_authservice_sendotp" + }, + { + "label": ".verifyOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L126", + "_callable": true, + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": ".verifyotp()", + "id": "backend_src_auth_auth_service_authservice_verifyotp" + }, + { + "label": "normalizeMobile()", + "file_type": "code", + "source_file": "backend/src/common/utils/phone.utils.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "normalizemobile()", + "id": "backend_src_common_utils_phone_utils_normalizemobile" + }, + { + "label": ".del()", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": ".del()", + "id": "backend_src_redis_redis_service_redisservice_del" + }, + { + "label": ".get()", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "community": 76, + "community_name": "AdminService", + "norm_label": ".get()", + "id": "backend_src_redis_redis_service_redisservice_get" + }, + { + "label": ".onModuleDestroy()", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": ".onmoduledestroy()", + "id": "backend_src_redis_redis_service_redisservice_onmoduledestroy" + }, + { + "label": ".onModuleInit()", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": ".onmoduleinit()", + "id": "backend_src_redis_redis_service_redisservice_onmoduleinit" + }, + { + "label": ".set()", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": ".set()", + "id": "backend_src_redis_redis_service_redisservice_set" + }, + { + "label": ".ttl()", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": ".ttl()", + "id": "backend_src_redis_redis_service_redisservice_ttl" + }, + { + "label": "runSeoBackfill()", + "file_type": "code", + "source_file": "backend/scripts/seo-backfill.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 155, + "community_name": "seo-backfill.ts", + "norm_label": "runseobackfill()", + "id": "backend_scripts_seo_backfill_runseobackfill" + }, + { + "label": "stripHtml()", + "file_type": "code", + "source_file": "backend/scripts/seo-backfill.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 155, + "community_name": "seo-backfill.ts", + "norm_label": "striphtml()", + "id": "backend_scripts_seo_backfill_striphtml" + }, + { + "label": "B2BErrorBoundary()", + "file_type": "code", + "source_file": "frontend/application/app/b2b/error.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 157, + "community_name": "ErrorPages.tsx", + "norm_label": "b2berrorboundary()", + "id": "frontend_application_app_b2b_error_b2berrorboundary" + }, + { + "label": "BlogErrorBoundary()", + "file_type": "code", + "source_file": "frontend/application/app/blog/error.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 157, + "community_name": "ErrorPages.tsx", + "norm_label": "blogerrorboundary()", + "id": "frontend_application_app_blog_error_blogerrorboundary" + }, + { + "label": "ErrorBoundary()", + "file_type": "code", + "source_file": "frontend/application/app/error.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 157, + "community_name": "ErrorPages.tsx", + "norm_label": "errorboundary()", + "id": "frontend_application_app_error_errorboundary" + }, + { + "label": "NotFound()", + "file_type": "code", + "source_file": "frontend/application/app/not-found.tsx", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "community": 157, + "community_name": "ErrorPages.tsx", + "norm_label": "notfound()", + "id": "frontend_application_app_not_found_notfound" + }, + { + "label": "ShopErrorBoundary()", + "file_type": "code", + "source_file": "frontend/application/app/shop/error.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 157, + "community_name": "ErrorPages.tsx", + "norm_label": "shoperrorboundary()", + "id": "frontend_application_app_shop_error_shoperrorboundary" + }, + { + "label": "NotFoundPage()", + "file_type": "code", + "source_file": "frontend/application/components/ErrorPages.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 157, + "community_name": "ErrorPages.tsx", + "norm_label": "notfoundpage()", + "id": "frontend_application_components_errorpages_notfoundpage" + }, + { + "label": "ServerErrorPage()", + "file_type": "code", + "source_file": "frontend/application/components/ErrorPages.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "community": 157, + "community_name": "ErrorPages.tsx", + "norm_label": "servererrorpage()", + "id": "frontend_application_components_errorpages_servererrorpage" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "DoctorQueryDto", + "norm_label": ".constructor()", + "id": "backend_src_doctors_doctors_controller_doctorscontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "DoctorQueryDto", + "norm_label": ".create()", + "id": "backend_src_doctors_doctors_controller_doctorscontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "DoctorQueryDto", + "norm_label": ".findall()", + "id": "backend_src_doctors_doctors_controller_doctorscontroller_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "DoctorQueryDto", + "norm_label": ".findone()", + "id": "backend_src_doctors_doctors_controller_doctorscontroller_findone" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "DoctorQueryDto", + "norm_label": ".remove()", + "id": "backend_src_doctors_doctors_controller_doctorscontroller_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "DoctorQueryDto", + "norm_label": ".update()", + "id": "backend_src_doctors_doctors_controller_doctorscontroller_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "DoctorQueryDto", + "norm_label": ".constructor()", + "id": "backend_src_doctors_doctors_service_doctorsservice_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "DoctorQueryDto", + "norm_label": ".create()", + "id": "backend_src_doctors_doctors_service_doctorsservice_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "DoctorQueryDto", + "norm_label": ".findall()", + "id": "backend_src_doctors_doctors_service_doctorsservice_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "DoctorQueryDto", + "norm_label": ".findone()", + "id": "backend_src_doctors_doctors_service_doctorsservice_findone" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "DoctorQueryDto", + "norm_label": ".remove()", + "id": "backend_src_doctors_doctors_service_doctorsservice_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "community": 16, + "community_name": "DoctorQueryDto", + "norm_label": ".update()", + "id": "backend_src_doctors_doctors_service_doctorsservice_update" + }, + { + "label": "checkAndOpen()", + "file_type": "code", + "source_file": "scripts/open-browsers.js", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "community": 166, + "community_name": "open-browsers.js", + "norm_label": "checkandopen()", + "id": "scripts_open_browsers_checkandopen" + }, + { + "label": "openUrl()", + "file_type": "code", + "source_file": "scripts/open-browsers.js", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 166, + "community_name": "open-browsers.js", + "norm_label": "openurl()", + "id": "scripts_open_browsers_openurl" + }, + { + "label": "createPaginatedSchema()", + "file_type": "code", + "source_file": "backend/src/common/schemas/paginated-response.schema.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 169, + "community_name": "paginated-response.schema.ts", + "norm_label": "createpaginatedschema()", + "id": "backend_src_common_schemas_paginated_response_schema_createpaginatedschema" + }, + { + "label": "AddressModal()", + "file_type": "code", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "addressmodal()", + "id": "frontend_application_components_addressmodal_addressmodal" + }, + { + "label": "AuthModal()", + "file_type": "code", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": "authmodal()", + "id": "frontend_application_components_authmodal_authmodal" + }, + { + "label": "extractOtpFromText()", + "file_type": "code", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": "extractotpfromtext()", + "id": "frontend_application_components_authmodal_extractotpfromtext" + }, + { + "label": "BackButton()", + "file_type": "code", + "source_file": "frontend/application/components/BackButton.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "backbutton()", + "id": "frontend_application_components_backbutton_backbutton" + }, + { + "label": "CheckoutPage()", + "file_type": "code", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "checkoutpage()", + "id": "frontend_application_components_checkoutpage_checkoutpage" + }, + { + "label": "DeleteConfirmModal()", + "file_type": "code", + "source_file": "frontend/application/components/DeleteConfirmModal.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "deleteconfirmmodal()", + "id": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal" + }, + { + "label": "HeaderButton()", + "file_type": "code", + "source_file": "frontend/application/components/HeaderButton.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "headerbutton()", + "id": "frontend_application_components_headerbutton_headerbutton" + }, + { + "label": "OrderDetailsModal()", + "file_type": "code", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "orderdetailsmodal()", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal" + }, + { + "label": "getStatusIcon()", + "file_type": "code", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L282", + "_callable": true, + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "getstatusicon()", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon" + }, + { + "label": "getStatusLabel()", + "file_type": "code", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L302", + "_callable": true, + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "getstatuslabel()", + "id": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel" + }, + { + "label": "SearchableSelect()", + "file_type": "code", + "source_file": "frontend/application/components/SearchableSelect.tsx", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "searchableselect()", + "id": "frontend_application_components_searchableselect_searchableselect" + }, + { + "label": "TopUpModal()", + "file_type": "code", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "topupmodal()", + "id": "frontend_application_components_topupmodal_topupmodal" + }, + { + "label": "UserDashboard()", + "file_type": "code", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": "userdashboard()", + "id": "frontend_application_components_userdashboard_userdashboard" + }, + { + "label": "cn()", + "file_type": "code", + "source_file": "frontend/application/lib/utils.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "cn()", + "id": "frontend_application_lib_utils_cn" }, { "label": "toEnglishDigits()", @@ -16328,130 +8601,3946 @@ "source_location": "L6", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_utils_toenglishdigits", "community": 88, - "community_name": "useSettingsStore", - "norm_label": "toenglishdigits()" + "community_name": "toPersian", + "norm_label": "toenglishdigits()", + "id": "frontend_application_lib_utils_toenglishdigits" }, { - "label": "main()", + "label": "toPersian()", "file_type": "code", - "source_file": "backend/prisma/seed-home.ts", - "source_location": "L5", + "source_file": "frontend/application/lib/utils.ts", + "source_location": "L1", "_callable": true, "_origin": "ast", - "id": "backend_prisma_seed_home_main", - "community": 89, - "community_name": "seed-products.ts", - "norm_label": "main()" + "community": 88, + "community_name": "toPersian", + "norm_label": "topersian()", + "id": "frontend_application_lib_utils_topersian" }, { - "label": "main()", + "label": ".addComment()", "file_type": "code", - "source_file": "backend/prisma/seed.ts", - "source_location": "L11", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L342", "_callable": true, "_origin": "ast", - "id": "backend_prisma_seed_main", - "community": 89, - "community_name": "seed-products.ts", - "norm_label": "main()" + "community": 99, + "community_name": "BlogsController", + "norm_label": ".addcomment()", + "id": "backend_src_blogs_blogs_service_blogsservice_addcomment" }, { - "label": "determineSuitableFor()", + "label": ".constructor()", "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": ".constructor()", + "id": "backend_src_blogs_blogs_service_blogsservice_constructor" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", "source_location": "L16", "_callable": true, "_origin": "ast", - "id": "backend_prisma_seed_products_determinesuitablefor", - "community": 89, - "community_name": "seed-products.ts", - "norm_label": "determinesuitablefor()" + "community": 99, + "community_name": "BlogsController", + "norm_label": ".findall()", + "id": "backend_src_blogs_blogs_service_blogsservice_findall" }, { - "label": "findOrCreateCategory()", + "label": ".findCommentsBySlug()", "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L128", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L329", "_callable": true, "_origin": "ast", - "id": "backend_prisma_seed_products_findorcreatecategory", - "community": 89, - "community_name": "seed-products.ts", - "norm_label": "findorcreatecategory()" + "community": 99, + "community_name": "BlogsController", + "norm_label": ".findcommentsbyslug()", + "id": "backend_src_blogs_blogs_service_blogsservice_findcommentsbyslug" }, { - "label": "getProductImageUrl()", + "label": ".findHomepage()", "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L41", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L99", "_callable": true, "_origin": "ast", - "id": "backend_prisma_seed_products_getproductimageurl", - "community": 89, - "community_name": "seed-products.ts", - "norm_label": "getproductimageurl()" + "community": 99, + "community_name": "BlogsController", + "norm_label": ".findhomepage()", + "id": "backend_src_blogs_blogs_service_blogsservice_findhomepage" + }, + { + "label": ".findOneBySlug()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L140", + "_callable": true, + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": ".findonebyslug()", + "id": "backend_src_blogs_blogs_service_blogsservice_findonebyslug" + }, + { + "label": ".getCategories()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L302", + "_callable": true, + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": ".getcategories()", + "id": "backend_src_blogs_blogs_service_blogsservice_getcategories" + }, + { + "label": ".getTags()", + "file_type": "code", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L316", + "_callable": true, + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": ".gettags()", + "id": "backend_src_blogs_blogs_service_blogsservice_gettags" + }, + { + "label": ".findAllAdmin()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".findalladmin()", + "id": "backend_src_pets_pets_service_petsservice_findalladmin" + }, + { + "label": ".findAllByUser()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L109", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".findallbyuser()", + "id": "backend_src_pets_pets_service_petsservice_findallbyuser" + }, + { + "label": ".handleRequest()", + "file_type": "code", + "source_file": "backend/src/auth/jwt-auth.guard.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 18, + "community_name": "JwtAuthGuard", + "norm_label": ".handlerequest()", + "id": "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest" + }, + { + "label": ".canActivate()", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 18, + "community_name": "JwtAuthGuard", + "norm_label": ".canactivate()", + "id": "backend_src_common_guards_roles_guard_rolesguard_canactivate" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 18, + "community_name": "JwtAuthGuard", + "norm_label": ".constructor()", + "id": "backend_src_common_guards_roles_guard_rolesguard_constructor" + }, + { + "label": ".configure()", + "file_type": "code", + "source_file": "backend/src/app.module.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "community": 184, + "community_name": "MetricsController", + "norm_label": ".configure()", + "id": "backend_src_app_module_appmodule_configure" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 184, + "community_name": "MetricsController", + "norm_label": ".constructor()", + "id": "backend_src_common_metrics_controller_metricscontroller_constructor" + }, + { + "label": ".getMetrics()", + "file_type": "code", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 184, + "community_name": "MetricsController", + "norm_label": ".getmetrics()", + "id": "backend_src_common_metrics_controller_metricscontroller_getmetrics" + }, + { + "label": ".incrementRequestCount()", + "file_type": "code", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 184, + "community_name": "MetricsController", + "norm_label": ".incrementrequestcount()", + "id": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount" + }, + { + "label": ".incr()", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "community": 184, + "community_name": "MetricsController", + "norm_label": ".incr()", + "id": "backend_src_redis_redis_service_redisservice_incr" }, { "label": "main()", "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L268", + "source_file": "backend/prisma/seed-ui-texts.ts", + "source_location": "L135", "_callable": true, "_origin": "ast", - "id": "backend_prisma_seed_products_main", - "community": 89, - "community_name": "seed-products.ts", - "norm_label": "main()" + "community": 186, + "community_name": "seed-ui-texts.ts", + "norm_label": "main()", + "id": "backend_prisma_seed_ui_texts_main" }, { - "label": "parseSize()", + "label": "main()", "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", + "source_file": "backend/prisma/seed-wiki.ts", + "source_location": "L370", + "_callable": true, + "_origin": "ast", + "community": 187, + "community_name": "seed-wiki.ts", + "norm_label": "main()", + "id": "backend_prisma_seed_wiki_main" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": ".constructor()", + "id": "backend_src_products_products_controller_productscontroller_constructor" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", "source_location": "L31", "_callable": true, "_origin": "ast", - "id": "backend_prisma_seed_products_parsesize", - "community": 89, - "community_name": "seed-products.ts", - "norm_label": "parsesize()" + "community": 19, + "community_name": "ProductsService", + "norm_label": ".findall()", + "id": "backend_src_products_products_controller_productscontroller_findall" }, { - "label": "slugify()", + "label": ".findOne()", "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": ".findone()", + "id": "backend_src_products_products_controller_productscontroller_findone" + }, + { + "label": ".getActiveFilters()", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": ".getactivefilters()", + "id": "backend_src_products_products_controller_productscontroller_getactivefilters" + }, + { + "label": ".getDosageConfig()", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": ".getdosageconfig()", + "id": "backend_src_products_products_controller_productscontroller_getdosageconfig" + }, + { + "label": ".getNavigationFilters()", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": ".getnavigationfilters()", + "id": "backend_src_products_products_controller_productscontroller_getnavigationfilters" + }, + { + "label": ".updateDosageConfig()", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": ".updatedosageconfig()", + "id": "backend_src_products_products_controller_productscontroller_updatedosageconfig" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": ".findall()", + "id": "backend_src_products_products_service_productsservice_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L132", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": ".findone()", + "id": "backend_src_products_products_service_productsservice_findone" + }, + { + "label": ".getActiveFilters()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L193", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": ".getactivefilters()", + "id": "backend_src_products_products_service_productsservice_getactivefilters" + }, + { + "label": ".getDosageConfig()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L263", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": ".getdosageconfig()", + "id": "backend_src_products_products_service_productsservice_getdosageconfig" + }, + { + "label": ".getNavigationFilters()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L228", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": ".getnavigationfilters()", + "id": "backend_src_products_products_service_productsservice_getnavigationfilters" + }, + { + "label": ".updateDosageConfig()", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L274", + "_callable": true, + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": ".updatedosageconfig()", + "id": "backend_src_products_products_service_productsservice_updatedosageconfig" + }, + { + "label": ".adminLogin()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "community": 35, + "community_name": "AuthController", + "norm_label": ".adminlogin()", + "id": "backend_src_auth_auth_controller_authcontroller_adminlogin" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": ".constructor()", + "id": "backend_src_auth_auth_controller_authcontroller_constructor" + }, + { + "label": ".login()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "community": 35, + "community_name": "AuthController", + "norm_label": ".login()", + "id": "backend_src_auth_auth_controller_authcontroller_login" + }, + { + "label": ".logout()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "community": 35, + "community_name": "AuthController", + "norm_label": ".logout()", + "id": "backend_src_auth_auth_controller_authcontroller_logout" + }, + { + "label": ".refresh()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "community": 35, + "community_name": "AuthController", + "norm_label": ".refresh()", + "id": "backend_src_auth_auth_controller_authcontroller_refresh" + }, + { + "label": ".register()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "community": 35, + "community_name": "AuthController", + "norm_label": ".register()", + "id": "backend_src_auth_auth_controller_authcontroller_register" + }, + { + "label": ".sendOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "community": 35, + "community_name": "AuthController", + "norm_label": ".sendotp()", + "id": "backend_src_auth_auth_controller_authcontroller_sendotp" + }, + { + "label": ".verifyOtp()", + "file_type": "code", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "community": 35, + "community_name": "AuthController", + "norm_label": ".verifyotp()", + "id": "backend_src_auth_auth_controller_authcontroller_verifyotp" + }, + { + "label": ".addPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L477", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".addpattern()", + "id": "backend_src_common_services_sms_service_smsservice_addpattern" + }, + { + "label": ".clearAllSmsLogs()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L255", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".clearallsmslogs()", + "id": "backend_src_common_services_sms_service_smsservice_clearallsmslogs" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".constructor()", + "id": "backend_src_common_services_sms_service_smsservice_constructor" + }, + { + "label": ".deleteSmsLog()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L248", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".deletesmslog()", + "id": "backend_src_common_services_sms_service_smsservice_deletesmslog" + }, + { + "label": ".editPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L556", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".editpattern()", + "id": "backend_src_common_services_sms_service_smsservice_editpattern" + }, + { + "label": ".getCredit()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L300", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getcredit()", + "id": "backend_src_common_services_sms_service_smsservice_getcredit" + }, + { + "label": ".getPatterns()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L370", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getpatterns()", + "id": "backend_src_common_services_sms_service_smsservice_getpatterns" + }, + { + "label": ".getSmsConfig()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getsmsconfig()", + "id": "backend_src_common_services_sms_service_smsservice_getsmsconfig" + }, + { + "label": ".getSmsLogs()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getsmslogs()", + "id": "backend_src_common_services_sms_service_smsservice_getsmslogs" + }, + { + "label": ".parsePatternsXml()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L262", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".parsepatternsxml()", + "id": "backend_src_common_services_sms_service_smsservice_parsepatternsxml" + }, + { + "label": ".postAsmx()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".postasmx()", + "id": "backend_src_common_services_sms_service_smsservice_postasmx" + }, + { + "label": ".recordLog()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".recordlog()", + "id": "backend_src_common_services_sms_service_smsservice_recordlog" + }, + { + "label": ".saveLocalPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L611", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".savelocalpattern()", + "id": "backend_src_common_services_sms_service_smsservice_savelocalpattern" + }, + { + "label": ".sendB2bNotification()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L981", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".sendb2bnotification()", + "id": "backend_src_common_services_sms_service_smsservice_sendb2bnotification" + }, + { + "label": ".sendOrderConfirmation()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L945", + "_callable": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": ".sendorderconfirmation()", + "id": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation" + }, + { + "label": ".sendOtp()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L932", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".sendotp()", + "id": "backend_src_common_services_sms_service_smsservice_sendotp" + }, + { + "label": ".sendPatternSms()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L679", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".sendpatternsms()", + "id": "backend_src_common_services_sms_service_smsservice_sendpatternsms" + }, + { + "label": ".sendPetCareReminder()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L997", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".sendpetcarereminder()", + "id": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder" + }, + { + "label": ".sendShippingNotification()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L964", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".sendshippingnotification()", + "id": "backend_src_common_services_sms_service_smsservice_sendshippingnotification" + }, + { + "label": ".sendSms()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1015", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".sendsms()", + "id": "backend_src_common_services_sms_service_smsservice_sendsms" + }, + { + "label": ".testSms()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L807", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".testsms()", + "id": "backend_src_common_services_sms_service_smsservice_testsms" + }, + { + "label": ".updateLocalPattern()", + "file_type": "code", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L639", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".updatelocalpattern()", + "id": "backend_src_common_services_sms_service_smsservice_updatelocalpattern" + }, + { + "label": ".addPattern()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L238", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".addpattern()", + "id": "backend_src_settings_settings_controller_settingscontroller_addpattern" + }, + { + "label": ".clearAllSmsLogs()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L283", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".clearallsmslogs()", + "id": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".constructor()", + "id": "backend_src_settings_settings_controller_settingscontroller_constructor" + }, + { + "label": ".deleteScientificTerm()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L123", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".deletescientificterm()", + "id": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm" + }, + { + "label": ".deleteSmsLog()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L274", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".deletesmslog()", + "id": "backend_src_settings_settings_controller_settingscontroller_deletesmslog" + }, + { + "label": ".editPattern()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L253", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".editpattern()", + "id": "backend_src_settings_settings_controller_settingscontroller_editpattern" + }, + { + "label": ".getFinancial()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getfinancial()", + "id": "backend_src_settings_settings_controller_settingscontroller_getfinancial" + }, + { + "label": ".getFinancialSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L149", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getfinancialsettings()", + "id": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings" + }, + { + "label": ".getPatterns()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L229", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getpatterns()", + "id": "backend_src_settings_settings_controller_settingscontroller_getpatterns" + }, + { + "label": ".getScientificTerms()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L102", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getscientificterms()", + "id": "backend_src_settings_settings_controller_settingscontroller_getscientificterms" + }, + { + "label": ".getSeoSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getseosettings()", + "id": "backend_src_settings_settings_controller_settingscontroller_getseosettings" + }, + { + "label": ".getSmsCredit()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L196", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getsmscredit()", + "id": "backend_src_settings_settings_controller_settingscontroller_getsmscredit" + }, + { + "label": ".getSmsLogs()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L265", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getsmslogs()", + "id": "backend_src_settings_settings_controller_settingscontroller_getsmslogs" + }, + { + "label": ".getSmsSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L187", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getsmssettings()", + "id": "backend_src_settings_settings_controller_settingscontroller_getsmssettings" + }, + { + "label": ".getSystemSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L168", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getsystemsettings()", + "id": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings" + }, + { + "label": ".getUiTexts()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L37", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getuitexts()", + "id": "backend_src_settings_settings_controller_settingscontroller_getuitexts" + }, + { + "label": ".patchUiText()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".patchuitext()", + "id": "backend_src_settings_settings_controller_settingscontroller_patchuitext" + }, + { + "label": ".putBulkUiTexts()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L80", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".putbulkuitexts()", + "id": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts" + }, + { + "label": ".putUiText()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".putuitext()", + "id": "backend_src_settings_settings_controller_settingscontroller_putuitext" + }, + { + "label": ".testSms()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L214", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".testsms()", + "id": "backend_src_settings_settings_controller_settingscontroller_testsms" + }, + { + "label": ".updateFinancial()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L96", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".updatefinancial()", + "id": "backend_src_settings_settings_controller_settingscontroller_updatefinancial" + }, + { + "label": ".updateFinancialSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L158", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".updatefinancialsettings()", + "id": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings" + }, + { + "label": ".updateSeoSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L139", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".updateseosettings()", + "id": "backend_src_settings_settings_controller_settingscontroller_updateseosettings" + }, + { + "label": ".updateSmsSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L205", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".updatesmssettings()", + "id": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings" + }, + { + "label": ".updateSystemSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L177", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".updatesystemsettings()", + "id": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings" + }, + { + "label": ".upsertScientificTerm()", + "file_type": "code", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".upsertscientificterm()", + "id": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm" + }, + { + "label": ".addPattern()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L608", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".addpattern()", + "id": "backend_src_settings_settings_service_settingsservice_addpattern" + }, + { + "label": ".clearAllSmsLogs()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L624", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".clearallsmslogs()", + "id": "backend_src_settings_settings_service_settingsservice_clearallsmslogs" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".constructor()", + "id": "backend_src_settings_settings_service_settingsservice_constructor" + }, + { + "label": ".deleteScientificTerm()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L397", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".deletescientificterm()", + "id": "backend_src_settings_settings_service_settingsservice_deletescientificterm" + }, + { + "label": ".deleteSmsLog()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L620", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".deletesmslog()", + "id": "backend_src_settings_settings_service_settingsservice_deletesmslog" + }, + { + "label": ".editPattern()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L612", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".editpattern()", + "id": "backend_src_settings_settings_service_settingsservice_editpattern" + }, + { + "label": ".getCategorySetting()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L403", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getcategorysetting()", + "id": "backend_src_settings_settings_service_settingsservice_getcategorysetting" + }, + { + "label": ".getFinancialSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L270", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getfinancialsettings()", + "id": "backend_src_settings_settings_service_settingsservice_getfinancialsettings" + }, + { + "label": ".getPatterns()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L604", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getpatterns()", + "id": "backend_src_settings_settings_service_settingsservice_getpatterns" + }, + { + "label": ".getScientificTerms()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L372", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getscientificterms()", + "id": "backend_src_settings_settings_service_settingsservice_getscientificterms" + }, + { + "label": ".getSmsCredit()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L587", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getsmscredit()", + "id": "backend_src_settings_settings_service_settingsservice_getsmscredit" + }, + { + "label": ".getSmsLogs()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L616", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getsmslogs()", + "id": "backend_src_settings_settings_service_settingsservice_getsmslogs" + }, + { + "label": ".getSmsSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L583", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getsmssettings()", + "id": "backend_src_settings_settings_service_settingsservice_getsmssettings" + }, + { + "label": ".getUiTexts()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L184", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".getuitexts()", + "id": "backend_src_settings_settings_service_settingsservice_getuitexts" + }, + { + "label": ".onModuleInit()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L153", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".onmoduleinit()", + "id": "backend_src_settings_settings_service_settingsservice_onmoduleinit" + }, + { + "label": ".seedDefaultUiTexts()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L157", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".seeddefaultuitexts()", + "id": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts" + }, + { + "label": ".testSms()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L600", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".testsms()", + "id": "backend_src_settings_settings_service_settingsservice_testsms" + }, + { + "label": ".updateBulkUiTexts()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L261", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".updatebulkuitexts()", + "id": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts" + }, + { + "label": ".updateCategorySetting()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L499", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".updatecategorysetting()", + "id": "backend_src_settings_settings_service_settingsservice_updatecategorysetting" + }, + { + "label": ".updateFinancialSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L326", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".updatefinancialsettings()", + "id": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings" + }, + { + "label": ".updateSmsSettings()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L591", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".updatesmssettings()", + "id": "backend_src_settings_settings_service_settingsservice_updatesmssettings" + }, + { + "label": ".updateUiText()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L229", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".updateuitext()", + "id": "backend_src_settings_settings_service_settingsservice_updateuitext" + }, + { + "label": ".upsertScientificTerm()", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L376", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".upsertscientificterm()", + "id": "backend_src_settings_settings_service_settingsservice_upsertscientificterm" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": ".constructor()", + "id": "backend_src_videos_videos_controller_videoscontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": ".create()", + "id": "backend_src_videos_videos_controller_videoscontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": ".findall()", + "id": "backend_src_videos_videos_controller_videoscontroller_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": ".findone()", + "id": "backend_src_videos_videos_controller_videoscontroller_findone" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": ".remove()", + "id": "backend_src_videos_videos_controller_videoscontroller_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": ".update()", + "id": "backend_src_videos_videos_controller_videoscontroller_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": ".constructor()", + "id": "backend_src_videos_videos_service_videosservice_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": ".create()", + "id": "backend_src_videos_videos_service_videosservice_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": ".findall()", + "id": "backend_src_videos_videos_service_videosservice_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": ".findone()", + "id": "backend_src_videos_videos_service_videosservice_findone" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L105", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": ".remove()", + "id": "backend_src_videos_videos_service_videosservice_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": ".update()", + "id": "backend_src_videos_videos_service_videosservice_update" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "backend/prisma/seed-blogs.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 206, + "community_name": "seed-blogs.ts", + "norm_label": "main()", + "id": "backend_prisma_seed_blogs_main" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "backend/prisma/seed-custom.ts", "source_location": "L7", "_callable": true, "_origin": "ast", - "id": "backend_prisma_seed_products_slugify", - "community": 89, - "community_name": "seed-products.ts", - "norm_label": "slugify()" + "community": 207, + "community_name": "seed-custom.ts", + "norm_label": "main()", + "id": "backend_prisma_seed_custom_main" }, { - "label": "HomeClient()", + "label": "Spinner()", "file_type": "code", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L24", + "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", + "source_location": "L2", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_homeclient_homeclient", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "homeclient()" + "community": 7, + "community_name": "Button.tsx", + "norm_label": "spinner()", + "id": "frontend_admin_panel_src_components_ui_spinner_spinner" }, { - "label": "BannerPlacement()", + "label": "DoctorsManager()", "file_type": "code", - "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "doctorsmanager()", + "id": "frontend_admin_panel_src_pages_doctorsmanager_doctorsmanager" + }, + { + "label": "FAQManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "faqmanager()", + "id": "frontend_admin_panel_src_pages_faqmanager_faqmanager" + }, + { + "label": "PaymentGatewaysPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "paymentgatewayspage()", + "id": "frontend_admin_panel_src_pages_paymentgatewayspage_paymentgatewayspage" + }, + { + "label": "Reviews()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "reviews()", + "id": "frontend_admin_panel_src_pages_reviews_reviews" + }, + { + "label": "toPersianDigits()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "topersiandigits()", + "id": "frontend_admin_panel_src_pages_reviews_topersiandigits" + }, + { + "label": "Settings()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Settings.tsx", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "settings()", + "id": "frontend_admin_panel_src_pages_settings_settings" + }, + { + "label": "ShippingSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "shippingsettingspage()", + "id": "frontend_admin_panel_src_pages_shippingsettingspage_shippingsettingspage" + }, + { + "label": "SslSettingsPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "sslsettingspage()", + "id": "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage" + }, + { + "label": "FormField()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/FormField.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 219, + "community_name": "FormField.tsx", + "norm_label": "formfield()", + "id": "frontend_admin_panel_src_components_ui_formfield_formfield" + }, + { + "label": "PaymentVerifyPage()", + "file_type": "code", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L319", + "_callable": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "paymentverifypage()", + "id": "frontend_application_app_payment_verify_page_paymentverifypage" + }, + { + "label": "VerifyContent()", + "file_type": "code", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "verifycontent()", + "id": "frontend_application_app_payment_verify_page_verifycontent" + }, + { + "label": "B2BPortal()", + "file_type": "code", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "b2bportal()", + "id": "frontend_application_components_b2bportal_b2bportal" + }, + { + "label": "LoginModal()", + "file_type": "code", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": "loginmodal()", + "id": "frontend_application_components_loginmodal_loginmodal" + }, + { + "label": "PrescriptionUploadModal()", + "file_type": "code", + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "prescriptionuploadmodal()", + "id": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal" + }, + { + "label": "getBaseURL()", + "file_type": "code", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "getbaseurl()", + "id": "frontend_application_lib_services_api_getbaseurl" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": ".constructor()", + "id": "frontend_application_lib_services_authservice_authservice_constructor" + }, + { + "label": ".getInstance()", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": ".getinstance()", + "id": "frontend_application_lib_services_authservice_authservice_getinstance" + }, + { + "label": ".getProfile()", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L121", + "_callable": true, + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": ".getprofile()", + "id": "frontend_application_lib_services_authservice_authservice_getprofile" + }, + { + "label": ".login()", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": ".login()", + "id": "frontend_application_lib_services_authservice_authservice_login" + }, + { + "label": ".logout()", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L152", + "_callable": true, + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": ".logout()", + "id": "frontend_application_lib_services_authservice_authservice_logout" + }, + { + "label": ".register()", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": ".register()", + "id": "frontend_application_lib_services_authservice_authservice_register" + }, + { + "label": ".sendOtp()", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": ".sendotp()", + "id": "frontend_application_lib_services_authservice_authservice_sendotp" + }, + { + "label": ".updateProfile()", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": ".updateprofile()", + "id": "frontend_application_lib_services_authservice_authservice_updateprofile" + }, + { + "label": ".verifyOtp()", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": ".verifyotp()", + "id": "frontend_application_lib_services_authservice_authservice_verifyotp" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": ".constructor()", + "id": "backend_src_menu_menu_controller_menucontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": ".create()", + "id": "backend_src_menu_menu_controller_menucontroller_create" + }, + { + "label": ".findAllAdmin()", + "file_type": "code", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": ".findalladmin()", + "id": "backend_src_menu_menu_controller_menucontroller_findalladmin" + }, + { + "label": ".findByType()", + "file_type": "code", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": ".findbytype()", + "id": "backend_src_menu_menu_controller_menucontroller_findbytype" + }, + { + "label": ".findByTypeParam()", + "file_type": "code", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": ".findbytypeparam()", + "id": "backend_src_menu_menu_controller_menucontroller_findbytypeparam" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L114", + "_callable": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": ".remove()", + "id": "backend_src_menu_menu_controller_menucontroller_remove" + }, + { + "label": ".reorder()", + "file_type": "code", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": ".reorder()", + "id": "backend_src_menu_menu_controller_menucontroller_reorder" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L91", + "_callable": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": ".update()", + "id": "backend_src_menu_menu_controller_menucontroller_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": ".constructor()", + "id": "backend_src_menu_menu_service_menuservice_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": ".create()", + "id": "backend_src_menu_menu_service_menuservice_create" + }, + { + "label": ".findAllAdmin()", + "file_type": "code", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L195", + "_callable": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": ".findalladmin()", + "id": "backend_src_menu_menu_service_menuservice_findalladmin" + }, + { + "label": ".findByType()", + "file_type": "code", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L181", + "_callable": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": ".findbytype()", + "id": "backend_src_menu_menu_service_menuservice_findbytype" + }, + { + "label": ".onModuleInit()", + "file_type": "code", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": ".onmoduleinit()", + "id": "backend_src_menu_menu_service_menuservice_onmoduleinit" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L240", + "_callable": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": ".remove()", + "id": "backend_src_menu_menu_service_menuservice_remove" + }, + { + "label": ".reorder()", + "file_type": "code", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L248", + "_callable": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": ".reorder()", + "id": "backend_src_menu_menu_service_menuservice_reorder" + }, + { + "label": ".seedIfEmpty()", + "file_type": "code", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": ".seedifempty()", + "id": "backend_src_menu_menu_service_menuservice_seedifempty" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L221", + "_callable": true, + "_origin": "ast", + "community": 23, + "community_name": "MenuService", + "norm_label": ".update()", + "id": "backend_src_menu_menu_service_menuservice_update" + }, + { + "label": "robots()", + "file_type": "code", + "source_file": "frontend/application/app/robots.ts", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "community": 253, + "community_name": "robots.ts", + "norm_label": "robots()", + "id": "frontend_application_app_robots_robots" + }, + { + "label": ".initiateOrderPayment()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".initiateorderpayment()", + "id": "backend_src_payment_payment_service_paymentservice_initiateorderpayment" + }, + { + "label": ".initiateWalletTopup()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L139", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".initiatewallettopup()", + "id": "backend_src_payment_payment_service_paymentservice_initiatewallettopup" + }, + { + "label": ".apiRequest()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L516", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".apirequest()", + "id": "backend_src_payment_zibal_service_zibalservice_apirequest" + }, + { + "label": ".callWithRetry()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".callwithretry()", + "id": "backend_src_payment_zibal_service_zibalservice_callwithretry" + }, + { + "label": ".checkHealth()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L304", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".checkhealth()", + "id": "backend_src_payment_zibal_service_zibalservice_checkhealth" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".constructor()", + "id": "backend_src_payment_zibal_service_zibalservice_constructor" + }, + { + "label": ".createSubMerchant()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L746", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".createsubmerchant()", + "id": "backend_src_payment_zibal_service_zibalservice_createsubmerchant" + }, + { + "label": ".editSubMerchant()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L768", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".editsubmerchant()", + "id": "backend_src_payment_zibal_service_zibalservice_editsubmerchant" + }, + { + "label": ".getAccessToken()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L465", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".getaccesstoken()", + "id": "backend_src_payment_zibal_service_zibalservice_getaccesstoken" + }, + { + "label": ".getBackendUrl()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L130", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".getbackendurl()", + "id": "backend_src_payment_zibal_service_zibalservice_getbackendurl" + }, + { + "label": ".getCheckoutQueueReport()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L722", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".getcheckoutqueuereport()", + "id": "backend_src_payment_zibal_service_zibalservice_getcheckoutqueuereport" + }, + { + "label": ".getCheckoutReport()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L701", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".getcheckoutreport()", + "id": "backend_src_payment_zibal_service_zibalservice_getcheckoutreport" + }, + { + "label": ".getFrontendUrl()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".getfrontendurl()", + "id": "backend_src_payment_zibal_service_zibalservice_getfrontendurl" + }, + { + "label": ".getGatewayName()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".getgatewayname()", + "id": "backend_src_payment_zibal_service_zibalservice_getgatewayname" + }, + { + "label": ".getGatewayTransactionsReport()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L667", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".getgatewaytransactionsreport()", + "id": "backend_src_payment_zibal_service_zibalservice_getgatewaytransactionsreport" + }, + { + "label": ".getMerchant()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L93", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".getmerchant()", + "id": "backend_src_payment_zibal_service_zibalservice_getmerchant" + }, + { + "label": ".getRefundList()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L643", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".getrefundlist()", + "id": "backend_src_payment_zibal_service_zibalservice_getrefundlist" + }, + { + "label": ".getStartUrl()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L211", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".getstarturl()", + "id": "backend_src_payment_zibal_service_zibalservice_getstarturl" + }, + { + "label": ".getSubMerchantList()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L761", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".getsubmerchantlist()", + "id": "backend_src_payment_zibal_service_zibalservice_getsubmerchantlist" + }, + { + "label": ".getWalletBalance()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L582", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".getwalletbalance()", + "id": "backend_src_payment_zibal_service_zibalservice_getwalletbalance" + }, + { + "label": ".getWalletList()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L575", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".getwalletlist()", + "id": "backend_src_payment_zibal_service_zibalservice_getwalletlist" + }, + { + "label": ".inquireCheckoutReport()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L731", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".inquirecheckoutreport()", + "id": "backend_src_payment_zibal_service_zibalservice_inquirecheckoutreport" + }, + { + "label": ".inquireRefund()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L625", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".inquirerefund()", + "id": "backend_src_payment_zibal_service_zibalservice_inquirerefund" + }, + { + "label": ".requestLazyPayment()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L368", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".requestlazypayment()", + "id": "backend_src_payment_zibal_service_zibalservice_requestlazypayment" + }, + { + "label": ".requestPayment()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L156", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".requestpayment()", + "id": "backend_src_payment_zibal_service_zibalservice_requestpayment" + }, + { + "label": ".requestRefund()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L589", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".requestrefund()", + "id": "backend_src_payment_zibal_service_zibalservice_requestrefund" + }, + { + "label": ".verifyLazyPayment()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L422", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".verifylazypayment()", + "id": "backend_src_payment_zibal_service_zibalservice_verifylazypayment" + }, + { + "label": ".verifyPayment()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L218", + "_callable": true, + "_origin": "ast", + "community": 294, + "community_name": "ZibalService", + "norm_label": ".verifypayment()", + "id": "backend_src_payment_zibal_service_zibalservice_verifypayment" + }, + { + "label": ".cancelCheckout()", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "community": 297, + "community_name": "ZibalEBankService", + "norm_label": ".cancelcheckout()", + "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_cancelcheckout" + }, + { + "label": ".changeIdentifiedPaymentStatus()", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L318", + "_callable": true, + "_origin": "ast", + "community": 297, + "community_name": "ZibalEBankService", + "norm_label": ".changeidentifiedpaymentstatus()", + "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_changeidentifiedpaymentstatus" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "community": 297, + "community_name": "ZibalEBankService", + "norm_label": ".constructor()", + "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_constructor" + }, + { + "label": ".createCheckout()", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L152", + "_callable": true, + "_origin": "ast", + "community": 297, + "community_name": "ZibalEBankService", + "norm_label": ".createcheckout()", + "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_createcheckout" + }, + { + "label": ".getAccessToken()", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "community": 297, + "community_name": "ZibalEBankService", + "norm_label": ".getaccesstoken()", + "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccesstoken" + }, + { + "label": ".getAccountBalance()", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L252", + "_callable": true, + "_origin": "ast", + "community": 297, + "community_name": "ZibalEBankService", + "norm_label": ".getaccountbalance()", + "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountbalance" + }, + { + "label": ".getAccountList()", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L240", + "_callable": true, + "_origin": "ast", + "community": 297, + "community_name": "ZibalEBankService", + "norm_label": ".getaccountlist()", + "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountlist" + }, + { + "label": ".getCheckoutList()", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L198", + "_callable": true, + "_origin": "ast", + "community": 297, + "community_name": "ZibalEBankService", + "norm_label": ".getcheckoutlist()", + "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getcheckoutlist" + }, + { + "label": ".getDefaultAccountId()", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "community": 297, + "community_name": "ZibalEBankService", + "norm_label": ".getdefaultaccountid()", + "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid" + }, + { + "label": ".getIdentifiedPaymentList()", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L294", + "_callable": true, + "_origin": "ast", + "community": 297, + "community_name": "ZibalEBankService", + "norm_label": ".getidentifiedpaymentlist()", + "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getidentifiedpaymentlist" + }, + { + "label": ".getStatementList()", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L266", + "_callable": true, + "_origin": "ast", + "community": 297, + "community_name": "ZibalEBankService", + "norm_label": ".getstatementlist()", + "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_getstatementlist" + }, + { + "label": ".inquireCheckout()", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L179", + "_callable": true, + "_origin": "ast", + "community": 297, + "community_name": "ZibalEBankService", + "norm_label": ".inquirecheckout()", + "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquirecheckout" + }, + { + "label": ".inquireIdentifiedPayment()", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L340", + "_callable": true, + "_origin": "ast", + "community": 297, + "community_name": "ZibalEBankService", + "norm_label": ".inquireidentifiedpayment()", + "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquireidentifiedpayment" + }, + { + "label": ".request()", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "community": 297, + "community_name": "ZibalEBankService", + "norm_label": ".request()", + "id": "backend_src_payment_zibal_ebank_service_zibalebankservice_request" + }, + { + "label": ".extractRealClientIp()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "community": 298, + "community_name": ".initiateOrderPayment", + "norm_label": ".extractrealclientip()", + "id": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip" + }, + { + "label": ".handleZibalCallback()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L116", + "_callable": true, + "_origin": "ast", + "community": 298, + "community_name": ".initiateOrderPayment", + "norm_label": ".handlezibalcallback()", + "id": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback" + }, + { + "label": ".handleZibalLazyCallback()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L194", + "_callable": true, + "_origin": "ast", + "community": 298, + "community_name": ".initiateOrderPayment", + "norm_label": ".handleziballazycallback()", + "id": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback" + }, + { + "label": ".initiateOrderPayment()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L75", + "_callable": true, + "_origin": "ast", + "community": 298, + "community_name": ".initiateOrderPayment", + "norm_label": ".initiateorderpayment()", + "id": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment" + }, + { + "label": ".initiateWalletTopup()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "community": 298, + "community_name": ".initiateOrderPayment", + "norm_label": ".initiatewallettopup()", + "id": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup" + }, + { + "label": ".verifyPaymentDirect()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "community": 298, + "community_name": ".initiateOrderPayment", + "norm_label": ".verifypaymentdirect()", + "id": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect" + }, + { + "label": "GET()", + "file_type": "code", + "source_file": "frontend/application/app/shop/feed.xml/route.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "get()", + "id": "frontend_application_app_shop_feed_xml_route_get" + }, + { + "label": "GET()", + "file_type": "code", + "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "get()", + "id": "frontend_application_app_sitemap_categories_xml_route_get" + }, + { + "label": "GET()", + "file_type": "code", + "source_file": "frontend/application/app/sitemap-products.xml/route.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "get()", + "id": "frontend_application_app_sitemap_products_xml_route_get" + }, + { + "label": "sitemap()", + "file_type": "code", + "source_file": "frontend/application/app/sitemap.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "sitemap()", + "id": "frontend_application_app_sitemap_sitemap" + }, + { + "label": "CatalogPageSpread()", + "file_type": "code", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "catalogpagespread()", + "id": "frontend_application_components_catalog_catalogpagespread_catalogpagespread" + }, + { + "label": "getFormBadge()", + "file_type": "code", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "getformbadge()", + "id": "frontend_application_components_catalog_catalogpagespread_getformbadge" + }, + { + "label": "getSpeciesBadge()", + "file_type": "code", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "getspeciesbadge()", + "id": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge" + }, + { + "label": "FlipbookCatalog()", + "file_type": "code", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "flipbookcatalog()", + "id": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog" + }, + { + "label": "normalizeSearchText()", + "file_type": "code", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "normalizesearchtext()", + "id": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext" + }, + { + "label": "formatIngredientDisplayName()", + "file_type": "code", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "formatingredientdisplayname()", + "id": "frontend_application_components_ingredientwiki_formatingredientdisplayname" + }, + { + "label": "IngredientWiki()", + "file_type": "code", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": "ingredientwiki()", + "id": "frontend_application_components_ingredientwiki_ingredientwiki" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": ".constructor()", + "id": "frontend_application_lib_services_productservice_productservice_constructor" + }, + { + "label": ".getActiveFilters()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L343", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": ".getactivefilters()", + "id": "frontend_application_lib_services_productservice_productservice_getactivefilters" + }, + { + "label": ".getFeaturedProducts()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L313", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": ".getfeaturedproducts()", + "id": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts" + }, + { + "label": ".getInstance()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": ".getinstance()", + "id": "frontend_application_lib_services_productservice_productservice_getinstance" + }, + { + "label": ".getNavigationFilters()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L357", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": ".getnavigationfilters()", + "id": "frontend_application_lib_services_productservice_productservice_getnavigationfilters" + }, + { + "label": ".getProductById()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L285", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": ".getproductbyid()", + "id": "frontend_application_lib_services_productservice_productservice_getproductbyid" + }, + { + "label": ".getProductBySlug()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L299", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": ".getproductbyslug()", + "id": "frontend_application_lib_services_productservice_productservice_getproductbyslug" + }, + { + "label": ".getProducts()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L246", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": ".getproducts()", + "id": "frontend_application_lib_services_productservice_productservice_getproducts" + }, + { + "label": ".mapBackendToFrontend()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": ".mapbackendtofrontend()", + "id": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend" + }, + { + "label": ".serverFetch()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L235", + "_callable": true, + "_origin": "ast", + "community": 3, + "community_name": "ProductService", + "norm_label": ".serverfetch()", + "id": "frontend_application_lib_services_productservice_productservice_serverfetch" + }, + { + "label": "Modal()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "modal()", + "id": "frontend_admin_panel_src_components_ui_modal_modal" + }, + { + "label": "ContactSubmissions()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "contactsubmissions()", + "id": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions" + }, + { + "label": "MenuManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "menumanager()", + "id": "frontend_admin_panel_src_pages_menumanager_menumanager" + }, + { + "label": "Tickets()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "tickets()", + "id": "frontend_admin_panel_src_pages_tickets_tickets" + }, + { + "label": "Wiki()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "wiki()", + "id": "frontend_admin_panel_src_pages_wiki_wiki" + }, + { + "label": "ZibalPortalPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "zibalportalpage()", + "id": "frontend_admin_panel_src_pages_zibalportalpage_zibalportalpage" + }, + { + "label": "GET()", + "file_type": "code", + "source_file": "frontend/application/app/api/revalidate/route.ts", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "community": 317, + "community_name": "revalidate/route.ts", + "norm_label": "get()", + "id": "frontend_application_app_api_revalidate_route_get" + }, + { + "label": "handleRevalidate()", + "file_type": "code", + "source_file": "frontend/application/app/api/revalidate/route.ts", "source_location": "L12", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_bannerplacement_bannerplacement", + "community": 317, + "community_name": "revalidate/route.ts", + "norm_label": "handlerevalidate()", + "id": "frontend_application_app_api_revalidate_route_handlerevalidate" + }, + { + "label": "POST()", + "file_type": "code", + "source_file": "frontend/application/app/api/revalidate/route.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 317, + "community_name": "revalidate/route.ts", + "norm_label": "post()", + "id": "frontend_application_app_api_revalidate_route_post" + }, + { + "label": "MaskableField()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "community": 318, + "community_name": "MaskableField.tsx", + "norm_label": "maskablefield()", + "id": "frontend_admin_panel_src_components_ui_maskablefield_maskablefield" + }, + { + "label": "App()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/App.tsx", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "app()", + "id": "frontend_admin_panel_src_app_app" + }, + { + "label": "SuspenseFallback()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/App.tsx", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "suspensefallback()", + "id": "frontend_admin_panel_src_app_suspensefallback" + }, + { + "label": ".componentDidCatch()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": ".componentdidcatch()", + "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_componentdidcatch" + }, + { + "label": ".getDerivedStateFromError()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": ".getderivedstatefromerror()", + "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_getderivedstatefromerror" + }, + { + "label": ".handleGoHome()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": ".handlegohome()", + "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_handlegohome" + }, + { + "label": ".handleReload()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": ".handlereload()", + "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_handlereload" + }, + { + "label": ".render()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": ".render()", + "id": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_render" + }, + { + "label": "CMS()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "cms()", + "id": "frontend_admin_panel_src_pages_cms_cms" + }, + { + "label": "Dashboard()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "dashboard()", + "id": "frontend_admin_panel_src_pages_dashboard_dashboard" + }, + { + "label": "CustomTooltip()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "customtooltip()", + "id": "frontend_admin_panel_src_pages_reports_customtooltip" + }, + { + "label": "Reports()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L87", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "reports()", + "id": "frontend_admin_panel_src_pages_reports_reports" + }, + { + "label": "lazyWithRetry()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/utils/lazyWithRetry.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "lazywithretry()", + "id": "frontend_admin_panel_src_utils_lazywithretry_lazywithretry" + }, + { + "label": ".applyForWholesale()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "WholesaleService", + "norm_label": ".applyforwholesale()", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale" + }, + { + "label": ".approveWholesaleRequest()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "WholesaleService", + "norm_label": ".approvewholesalerequest()", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "WholesaleService", + "norm_label": ".constructor()", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor" + }, + { + "label": ".getWholesaleRequests()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "WholesaleService", + "norm_label": ".getwholesalerequests()", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests" + }, + { + "label": ".rejectWholesaleRequest()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "WholesaleService", + "norm_label": ".rejectwholesalerequest()", + "id": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest" + }, + { + "label": ".applyForWholesale()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "WholesaleService", + "norm_label": ".applyforwholesale()", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale" + }, + { + "label": ".approveWholesaleRequest()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L63", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "WholesaleService", + "norm_label": ".approvewholesalerequest()", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "WholesaleService", + "norm_label": ".constructor()", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor" + }, + { + "label": ".getWholesaleRequests()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "WholesaleService", + "norm_label": ".getwholesalerequests()", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests" + }, + { + "label": ".rejectWholesaleRequest()", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "community": 33, + "community_name": "WholesaleService", + "norm_label": ".rejectwholesalerequest()", + "id": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": ".constructor()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_constructor" + }, + { + "label": ".createInquiry()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": ".createinquiry()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry" + }, + { + "label": ".createWholesaleOrder()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": ".createwholesaleorder()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder" + }, + { + "label": ".findAllInquiries()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": ".findallinquiries()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries" + }, + { + "label": ".getAllPartnerAccounts()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": ".getallpartneraccounts()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts" + }, + { + "label": ".getPartnerProfile()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": ".getpartnerprofile()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile" + }, + { + "label": ".updateInquiryStatus()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": ".updateinquirystatus()", + "id": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": ".constructor()", + "id": "backend_src_b2b_b2b_service_b2bservice_constructor" + }, + { + "label": ".createInquiry()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": ".createinquiry()", + "id": "backend_src_b2b_b2b_service_b2bservice_createinquiry" + }, + { + "label": ".createWholesaleOrder()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": ".createwholesaleorder()", + "id": "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder" + }, + { + "label": ".findAllInquiries()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": ".findallinquiries()", + "id": "backend_src_b2b_b2b_service_b2bservice_findallinquiries" + }, + { + "label": ".getAllPartnerAccounts()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": ".getallpartneraccounts()", + "id": "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts" + }, + { + "label": ".getPartnerProfile()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": ".getpartnerprofile()", + "id": "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile" + }, + { + "label": ".updateInquiryStatus()", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": ".updateinquirystatus()", + "id": "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus" + }, + { + "label": "BlogLoading()", + "file_type": "code", + "source_file": "frontend/application/app/blog/loading.tsx", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "blogloading()", + "id": "frontend_application_app_blog_loading_blogloading" + }, + { + "label": "GlobalLoading()", + "file_type": "code", + "source_file": "frontend/application/app/loading.tsx", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "globalloading()", + "id": "frontend_application_app_loading_globalloading" + }, + { + "label": "ShopLoading()", + "file_type": "code", + "source_file": "frontend/application/app/shop/loading.tsx", + "source_location": "L4", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "shoploading()", + "id": "frontend_application_app_shop_loading_shoploading" + }, + { + "label": "ArchiveProductCard()", + "file_type": "code", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L74", + "_callable": true, + "_origin": "ast", "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "bannerplacement()" + "community_name": "useSettingsStore", + "norm_label": "archiveproductcard()", + "id": "frontend_application_components_archivepage_archiveproductcard" + }, + { + "label": "FeaturedProducts()", + "file_type": "code", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L143", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "featuredproducts()", + "id": "frontend_application_components_featuredproducts_featuredproducts" + }, + { + "label": "ProductCard()", + "file_type": "code", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "productcard()", + "id": "frontend_application_components_featuredproducts_productcard" + }, + { + "label": "PetProfile()", + "file_type": "code", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "petprofile()", + "id": "frontend_application_components_petprofile_petprofile" + }, + { + "label": "SearchResultsPage()", + "file_type": "code", + "source_file": "frontend/application/components/SearchResultsPage.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "searchresultspage()", + "id": "frontend_application_components_searchresultspage_searchresultspage" + }, + { + "label": "OrderRowSkeleton()", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "orderrowskeleton()", + "id": "frontend_application_components_skeleton_orderrowskeleton" + }, + { + "label": "PetProfileSkeleton()", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "petprofileskeleton()", + "id": "frontend_application_components_skeleton_petprofileskeleton" + }, + { + "label": "ProductCardSkeleton()", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "productcardskeleton()", + "id": "frontend_application_components_skeleton_productcardskeleton" + }, + { + "label": "Skeleton()", + "file_type": "code", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "skeleton()", + "id": "frontend_application_components_skeleton_skeleton" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": ".constructor()", + "id": "backend_src_faq_faq_controller_faqcontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": ".create()", + "id": "backend_src_faq_faq_controller_faqcontroller_create" + }, + { + "label": ".findActive()", + "file_type": "code", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": ".findactive()", + "id": "backend_src_faq_faq_controller_faqcontroller_findactive" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": ".findall()", + "id": "backend_src_faq_faq_controller_faqcontroller_findall" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L86", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": ".remove()", + "id": "backend_src_faq_faq_controller_faqcontroller_remove" + }, + { + "label": ".reorder()", + "file_type": "code", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": ".reorder()", + "id": "backend_src_faq_faq_controller_faqcontroller_reorder" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": ".update()", + "id": "backend_src_faq_faq_controller_faqcontroller_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": ".constructor()", + "id": "backend_src_faq_faq_service_faqservice_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": ".create()", + "id": "backend_src_faq_faq_service_faqservice_create" + }, + { + "label": ".findActive()", + "file_type": "code", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": ".findactive()", + "id": "backend_src_faq_faq_service_faqservice_findactive" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": ".findall()", + "id": "backend_src_faq_faq_service_faqservice_findall" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": ".remove()", + "id": "backend_src_faq_faq_service_faqservice_remove" + }, + { + "label": ".reorder()", + "file_type": "code", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": ".reorder()", + "id": "backend_src_faq_faq_service_faqservice_reorder" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": ".update()", + "id": "backend_src_faq_faq_service_faqservice_update" + }, + { + "label": "TransactionReceiptModal()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 38, + "community_name": "Button", + "norm_label": "transactionreceiptmodal()", + "id": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodal" + }, + { + "label": "Button()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "community": 38, + "community_name": "Button", + "norm_label": "button()", + "id": "frontend_admin_panel_src_components_ui_button_button" + }, + { + "label": "ThSort()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ThSort.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 38, + "community_name": "Button", + "norm_label": "thsort()", + "id": "frontend_admin_panel_src_components_ui_thsort_thsort" + }, + { + "label": "Transactions()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "community": 38, + "community_name": "Button", + "norm_label": "transactions()", + "id": "frontend_admin_panel_src_pages_transactions_transactions" + }, + { + "label": "useTableParams()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/utils/useTableParams.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 38, + "community_name": "Button", + "norm_label": "usetableparams()", + "id": "frontend_admin_panel_src_utils_usetableparams_usetableparams" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "community": 39, + "community_name": "CategoriesController", + "norm_label": ".constructor()", + "id": "backend_src_admin_categories_controller_categoriescontroller_constructor" + }, + { + "label": ".createCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 39, + "community_name": "CategoriesController", + "norm_label": ".createcategory()", + "id": "backend_src_admin_categories_controller_categoriescontroller_createcategory" + }, + { + "label": ".deleteCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "community": 39, + "community_name": "CategoriesController", + "norm_label": ".deletecategory()", + "id": "backend_src_admin_categories_controller_categoriescontroller_deletecategory" + }, + { + "label": ".getAllCategoriesRaw()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "community": 39, + "community_name": "CategoriesController", + "norm_label": ".getallcategoriesraw()", + "id": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw" + }, + { + "label": ".getCategories()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 39, + "community_name": "CategoriesController", + "norm_label": ".getcategories()", + "id": "backend_src_admin_categories_controller_categoriescontroller_getcategories" + }, + { + "label": ".updateCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "community": 39, + "community_name": "CategoriesController", + "norm_label": ".updatecategory()", + "id": "backend_src_admin_categories_controller_categoriescontroller_updatecategory" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 39, + "community_name": "CategoriesController", + "norm_label": ".constructor()", + "id": "backend_src_admin_categories_service_categoriesservice_constructor" + }, + { + "label": ".createCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 39, + "community_name": "CategoriesController", + "norm_label": ".createcategory()", + "id": "backend_src_admin_categories_service_categoriesservice_createcategory" + }, + { + "label": ".deleteCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "community": 39, + "community_name": "CategoriesController", + "norm_label": ".deletecategory()", + "id": "backend_src_admin_categories_service_categoriesservice_deletecategory" + }, + { + "label": ".getAllCategoriesRaw()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "community": 39, + "community_name": "CategoriesController", + "norm_label": ".getallcategoriesraw()", + "id": "backend_src_admin_categories_service_categoriesservice_getallcategoriesraw" + }, + { + "label": ".getCategories()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 39, + "community_name": "CategoriesController", + "norm_label": ".getcategories()", + "id": "backend_src_admin_categories_service_categoriesservice_getcategories" + }, + { + "label": ".updateCategory()", + "file_type": "code", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 39, + "community_name": "CategoriesController", + "norm_label": ".updatecategory()", + "id": "backend_src_admin_categories_service_categoriesservice_updatecategory" }, { "label": "BlogPreviewSection()", @@ -16460,10 +12549,10 @@ "source_location": "L28", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_blogpreviewsection_blogpreviewsection", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "blogpreviewsection()" + "community": 4, + "community_name": "utils.ts", + "norm_label": "blogpreviewsection()", + "id": "frontend_application_components_blogpreviewsection_blogpreviewsection" }, { "label": "loadBlogs()", @@ -16472,58 +12561,58 @@ "source_location": "L34", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_blogpreviewsection_blogpreviewsection_loadblogs", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "loadblogs()" + "community": 4, + "community_name": "utils.ts", + "norm_label": "loadblogs()", + "id": "frontend_application_components_blogpreviewsection_blogpreviewsection_loadblogs" }, { - "label": "FAQSection()", + "label": "ProductDetailModal()", "file_type": "code", - "source_file": "frontend/application/components/FAQSection.tsx", - "source_location": "L15", + "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", + "source_location": "L14", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_faqsection_faqsection", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "faqsection()" + "community": 3, + "community_name": "ProductService", + "norm_label": "productdetailmodal()", + "id": "frontend_application_components_catalog_productdetailmodal_productdetailmodal" }, { - "label": "loadFaqs()", + "label": "PodcastPlayerModal()", "file_type": "code", - "source_file": "frontend/application/components/FAQSection.tsx", - "source_location": "L22", + "source_file": "frontend/application/components/PodcastPlayerModal.tsx", + "source_location": "L39", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_faqsection_faqsection_loadfaqs", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "loadfaqs()" + "community": 4, + "community_name": "utils.ts", + "norm_label": "podcastplayermodal()", + "id": "frontend_application_components_podcastplayermodal_podcastplayermodal" }, { - "label": "Hero()", + "label": "handleClickOutside()", "file_type": "code", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L40", + "source_file": "frontend/application/components/PodcastPlayerModal.tsx", + "source_location": "L56", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_hero_hero", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "hero()" + "community": 4, + "community_name": "utils.ts", + "norm_label": "handleclickoutside()", + "id": "frontend_application_components_podcastplayermodal_podcastplayermodal_handleclickoutside" }, { - "label": "StatCounter()", + "label": "SafeImage()", "file_type": "code", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L11", + "source_file": "frontend/application/components/SafeImage.tsx", + "source_location": "L20", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_hero_statcounter", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "statcounter()" + "community": 4, + "community_name": "utils.ts", + "norm_label": "safeimage()", + "id": "frontend_application_components_safeimage_safeimage" }, { "label": "TestimonialsSection()", @@ -16532,10 +12621,10 @@ "source_location": "L20", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_testimonialssection_testimonialssection", "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "testimonialssection()" + "community_name": "useSettingsStore", + "norm_label": "testimonialssection()", + "id": "frontend_application_components_testimonialssection_testimonialssection" }, { "label": "loadTestimonials()", @@ -16544,286 +12633,3670 @@ "source_location": "L26", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_testimonialssection_testimonialssection_loadtestimonials", "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "loadtestimonials()" + "community_name": "useSettingsStore", + "norm_label": "loadtestimonials()", + "id": "frontend_application_components_testimonialssection_testimonialssection_loadtestimonials" }, { - "label": ".getBanners()", + "label": "VetGallery()", "file_type": "code", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L372", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L71", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_services_productservice_productservice_getbanners", "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": ".getbanners()" + "community_name": "useSettingsStore", + "norm_label": "vetgallery()", + "id": "frontend_application_components_vetgallery_vetgallery" + }, + { + "label": "VideoModalPlayer()", + "file_type": "code", + "source_file": "frontend/application/components/VideoModalPlayer.tsx", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "videomodalplayer()", + "id": "frontend_application_components_videomodalplayer_videomodalplayer" + }, + { + "label": "handleClickOutside()", + "file_type": "code", + "source_file": "frontend/application/components/VideoModalPlayer.tsx", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "handleclickoutside()", + "id": "frontend_application_components_videomodalplayer_videomodalplayer_handleclickoutside" }, { "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L55", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L23", "_callable": true, "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_constructor", - "community": 92, - "community_name": "OrdersService", - "norm_label": ".constructor()" + "community": 40, + "community_name": "MediaController", + "norm_label": ".constructor()", + "id": "backend_src_admin_media_controller_mediacontroller_constructor" + }, + { + "label": ".deleteManyMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "MediaController", + "norm_label": ".deletemanymedia()", + "id": "backend_src_admin_media_controller_mediacontroller_deletemanymedia" + }, + { + "label": ".deleteMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "MediaController", + "norm_label": ".deletemedia()", + "id": "backend_src_admin_media_controller_mediacontroller_deletemedia" + }, + { + "label": ".getAllMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "MediaController", + "norm_label": ".getallmedia()", + "id": "backend_src_admin_media_controller_mediacontroller_getallmedia" + }, + { + "label": ".updateMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "MediaController", + "norm_label": ".updatemedia()", + "id": "backend_src_admin_media_controller_mediacontroller_updatemedia" + }, + { + "label": ".uploadFile()", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "MediaController", + "norm_label": ".uploadfile()", + "id": "backend_src_admin_media_controller_mediacontroller_uploadfile" + }, + { + "label": ".deleteManyMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "MediaController", + "norm_label": ".deletemanymedia()", + "id": "backend_src_admin_media_service_mediaservice_deletemanymedia" + }, + { + "label": ".deleteMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "MediaController", + "norm_label": ".deletemedia()", + "id": "backend_src_admin_media_service_mediaservice_deletemedia" + }, + { + "label": ".getAllMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "MediaController", + "norm_label": ".getallmedia()", + "id": "backend_src_admin_media_service_mediaservice_getallmedia" + }, + { + "label": ".updateMedia()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L92", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "MediaController", + "norm_label": ".updatemedia()", + "id": "backend_src_admin_media_service_mediaservice_updatemedia" + }, + { + "label": ".uploadFile()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "MediaController", + "norm_label": ".uploadfile()", + "id": "backend_src_admin_media_service_mediaservice_uploadfile" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": ".constructor()", + "id": "backend_src_admin_ssl_controller_sslcontroller_constructor" + }, + { + "label": ".getStatus()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": ".getstatus()", + "id": "backend_src_admin_ssl_controller_sslcontroller_getstatus" + }, + { + "label": ".testDomain()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": ".testdomain()", + "id": "backend_src_admin_ssl_controller_sslcontroller_testdomain" + }, + { + "label": ".updateByText()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": ".updatebytext()", + "id": "backend_src_admin_ssl_controller_sslcontroller_updatebytext" + }, + { + "label": ".uploadFiles()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": ".uploadfiles()", + "id": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": ".constructor()", + "id": "backend_src_admin_ssl_service_sslservice_constructor" + }, + { + "label": ".getCertPath()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": ".getcertpath()", + "id": "backend_src_admin_ssl_service_sslservice_getcertpath" + }, + { + "label": ".getKeyPath()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": ".getkeypath()", + "id": "backend_src_admin_ssl_service_sslservice_getkeypath" + }, + { + "label": ".getStatus()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L62", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": ".getstatus()", + "id": "backend_src_admin_ssl_service_sslservice_getstatus" + }, + { + "label": ".testOnlineDomainSsl()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L177", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": ".testonlinedomainssl()", + "id": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl" + }, + { + "label": ".toShamsi()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L48", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": ".toshamsi()", + "id": "backend_src_admin_ssl_service_sslservice_toshamsi" + }, + { + "label": ".updateCertificates()", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L113", + "_callable": true, + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": ".updatecertificates()", + "id": "backend_src_admin_ssl_service_sslservice_updatecertificates" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": ".constructor()", + "id": "backend_src_banners_banners_controller_bannerscontroller_constructor" }, { "label": ".create()", "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L85", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L35", "_callable": true, "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_create", - "community": 92, - "community_name": "OrdersService", - "norm_label": ".create()" + "community": 43, + "community_name": "BannersService", + "norm_label": ".create()", + "id": "backend_src_banners_banners_controller_bannerscontroller_create" }, { "label": ".findAll()", "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L146", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L26", "_callable": true, "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_findall", - "community": 92, - "community_name": "OrdersService", - "norm_label": ".findall()" + "community": 43, + "community_name": "BannersService", + "norm_label": ".findall()", + "id": "backend_src_banners_banners_controller_bannerscontroller_findall" }, { - "label": ".findOne()", + "label": ".remove()", "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L208", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L62", "_callable": true, "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_findone", - "community": 92, - "community_name": "OrdersService", - "norm_label": ".findone()" + "community": 43, + "community_name": "BannersService", + "norm_label": ".remove()", + "id": "backend_src_banners_banners_controller_bannerscontroller_remove" }, { - "label": ".retryPayment()", + "label": ".reorder()", "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L196", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L44", "_callable": true, "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "community": 92, - "community_name": "OrdersService", - "norm_label": ".retrypayment()" + "community": 43, + "community_name": "BannersService", + "norm_label": ".reorder()", + "id": "backend_src_banners_banners_controller_bannerscontroller_reorder" }, { - "label": ".validateCoupon()", + "label": ".update()", "file_type": "code", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L110", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L53", "_callable": true, "_origin": "ast", - "id": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "community": 92, - "community_name": "OrdersService", - "norm_label": ".validatecoupon()" - }, - { - "label": ".checkAndSendRefillReminders()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L400", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", - "community": 92, - "community_name": "OrdersService", - "norm_label": ".checkandsendrefillreminders()" + "community": 43, + "community_name": "BannersService", + "norm_label": ".update()", + "id": "backend_src_banners_banners_controller_bannerscontroller_update" }, { "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L17", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L7", "_callable": true, "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_constructor", - "community": 92, - "community_name": "OrdersService", - "norm_label": ".constructor()" + "community": 43, + "community_name": "BannersService", + "norm_label": ".constructor()", + "id": "backend_src_banners_banners_service_bannersservice_constructor" }, { "label": ".create()", "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L101", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L15", "_callable": true, "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_create", - "community": 92, - "community_name": "OrdersService", - "norm_label": ".create()" + "community": 43, + "community_name": "BannersService", + "norm_label": ".create()", + "id": "backend_src_banners_banners_service_bannersservice_create" }, { - "label": ".findAllByUser()", + "label": ".findAll()", "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L353", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L9", "_callable": true, "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_findallbyuser", - "community": 92, - "community_name": "OrdersService", - "norm_label": ".findallbyuser()" + "community": 43, + "community_name": "BannersService", + "norm_label": ".findall()", + "id": "backend_src_banners_banners_service_bannersservice_findall" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": ".remove()", + "id": "backend_src_banners_banners_service_bannersservice_remove" + }, + { + "label": ".reorder()", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": ".reorder()", + "id": "backend_src_banners_banners_service_bannersservice_reorder" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": ".update()", + "id": "backend_src_banners_banners_service_bannersservice_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": ".constructor()", + "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": ".create()", + "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": ".findall()", + "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall" + }, + { + "label": ".findHomepage()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": ".findhomepage()", + "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findhomepage" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L58", + "_callable": true, + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": ".remove()", + "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": ".update()", + "id": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": ".constructor()", + "id": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": ".create()", + "id": "backend_src_testimonials_testimonials_service_testimonialsservice_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": ".findall()", + "id": "backend_src_testimonials_testimonials_service_testimonialsservice_findall" + }, + { + "label": ".findHomepage()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": ".findhomepage()", + "id": "backend_src_testimonials_testimonials_service_testimonialsservice_findhomepage" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": ".remove()", + "id": "backend_src_testimonials_testimonials_service_testimonialsservice_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": ".update()", + "id": "backend_src_testimonials_testimonials_service_testimonialsservice_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "HomeController", + "norm_label": ".constructor()", + "id": "backend_src_home_home_controller_homecontroller_constructor" + }, + { + "label": ".getHomeData()", + "file_type": "code", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "HomeController", + "norm_label": ".gethomedata()", + "id": "backend_src_home_home_controller_homecontroller_gethomedata" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "HomeController", + "norm_label": ".constructor()", + "id": "backend_src_home_home_service_homeservice_constructor" + }, + { + "label": ".getHomeData()", + "file_type": "code", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 46, + "community_name": "HomeController", + "norm_label": ".gethomedata()", + "id": "backend_src_home_home_service_homeservice_gethomedata" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": ".constructor()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": ".create()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": ".findall()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall" }, { "label": ".findOne()", "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L386", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L31", "_callable": true, "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_findone", - "community": 92, - "community_name": "OrdersService", - "norm_label": ".findone()" + "community": 47, + "community_name": "IngredientsService", + "norm_label": ".findone()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone" }, { - "label": ".generateTrackingNumber()", + "label": ".remove()", "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L22", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L58", "_callable": true, "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", - "community": 92, - "community_name": "OrdersService", - "norm_label": ".generatetrackingnumber()" + "community": 47, + "community_name": "IngredientsService", + "norm_label": ".remove()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove" }, { - "label": ".releaseExpiredInventoryReservations()", + "label": ".update()", "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L430", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L49", "_callable": true, "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations", - "community": 92, - "community_name": "OrdersService", - "norm_label": ".releaseexpiredinventoryreservations()" + "community": 47, + "community_name": "IngredientsService", + "norm_label": ".update()", + "id": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update" }, { - "label": ".retryPayment()", + "label": ".constructor()", "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L452", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_retrypayment", - "community": 92, - "community_name": "OrdersService", - "norm_label": ".retrypayment()" - }, - { - "label": ".updateStatus()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L322", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_updatestatus", - "community": 92, - "community_name": "OrdersService", - "norm_label": ".updatestatus()" - }, - { - "label": ".validateCoupon()", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "backend_src_orders_orders_service_ordersservice_validatecoupon", - "community": 92, - "community_name": "OrdersService", - "norm_label": ".validatecoupon()" - }, - { - "label": "BlogPostPage()", - "file_type": "code", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L138", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_blog_slug_page_blogpostpage", - "community": 95, - "community_name": "blog/[slug]/page.tsx", - "norm_label": "blogpostpage()" - }, - { - "label": "generateMetadata()", - "file_type": "code", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L53", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_blog_slug_page_generatemetadata", - "community": 95, - "community_name": "blog/[slug]/page.tsx", - "norm_label": "generatemetadata()" - }, - { - "label": "getBlog()", - "file_type": "code", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L27", - "_callable": true, - "_origin": "ast", - "id": "frontend_application_app_blog_slug_page_getblog", - "community": 95, - "community_name": "blog/[slug]/page.tsx", - "norm_label": "getblog()" - }, - { - "label": "safeIso()", - "file_type": "code", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_file": "backend/src/ingredients/ingredients.service.ts", "source_location": "L7", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_blog_slug_page_safeiso", - "community": 95, - "community_name": "blog/[slug]/page.tsx", - "norm_label": "safeiso()" + "community": 47, + "community_name": "IngredientsService", + "norm_label": ".constructor()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor" }, { - "label": "safeLocalDate()", + "label": ".create()", "file_type": "code", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": ".create()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": ".findall()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": ".findone()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_findone" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L47", + "_callable": true, + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": ".remove()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": ".update()", + "id": "backend_src_ingredients_ingredients_service_ingredientsservice_update" + }, + { + "label": "SuccessPage()", + "file_type": "code", + "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", + "source_location": "L3", + "_callable": true, + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "successpage()", + "id": "frontend_application_app_checkout_success_id_page_successpage" + }, + { + "label": "CartDrawer()", + "file_type": "code", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "cartdrawer()", + "id": "frontend_application_components_cartdrawer_cartdrawer" + }, + { + "label": "Header()", + "file_type": "code", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "header()", + "id": "frontend_application_components_header_header" + }, + { + "label": "handleClickOutside()", + "file_type": "code", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L180", + "_callable": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "handleclickoutside()", + "id": "frontend_application_components_header_header_handleclickoutside" + }, + { + "label": "OrderSuccess()", + "file_type": "code", + "source_file": "frontend/application/components/OrderSuccess.tsx", "source_location": "L17", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_blog_slug_page_safelocaldate", - "community": 95, - "community_name": "blog/[slug]/page.tsx", - "norm_label": "safelocaldate()" + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "ordersuccess()", + "id": "frontend_application_components_ordersuccess_ordersuccess" + }, + { + "label": "OrderTracking()", + "file_type": "code", + "source_file": "frontend/application/components/OrderTracking.tsx", + "source_location": "L18", + "_callable": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "ordertracking()", + "id": "frontend_application_components_ordertracking_ordertracking" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": ".constructor()", + "id": "frontend_application_lib_services_orderservice_orderservice_constructor" + }, + { + "label": ".createOrder()", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L46", + "_callable": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": ".createorder()", + "id": "frontend_application_lib_services_orderservice_orderservice_createorder" + }, + { + "label": ".getInstance()", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": ".getinstance()", + "id": "frontend_application_lib_services_orderservice_orderservice_getinstance" + }, + { + "label": ".getOrderById()", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L84", + "_callable": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": ".getorderbyid()", + "id": "frontend_application_lib_services_orderservice_orderservice_getorderbyid" + }, + { + "label": ".getUserOrders()", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L70", + "_callable": true, + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": ".getuserorders()", + "id": "frontend_application_lib_services_orderservice_orderservice_getuserorders" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".constructor()", + "id": "backend_src_cms_cms_controller_cmscontroller_constructor" + }, + { + "label": ".createHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".createherobanner()", + "id": "backend_src_cms_cms_controller_cmscontroller_createherobanner" + }, + { + "label": ".createSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L95", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".createsmartadvisorrule()", + "id": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule" + }, + { + "label": ".createVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".createvettestimonial()", + "id": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial" + }, + { + "label": ".deleteHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".deleteherobanner()", + "id": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner" + }, + { + "label": ".deleteSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".deletesmartadvisorrule()", + "id": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule" + }, + { + "label": ".deleteVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".deletevettestimonial()", + "id": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial" + }, + { + "label": ".getHeroBanners()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".getherobanners()", + "id": "backend_src_cms_cms_controller_cmscontroller_getherobanners" + }, + { + "label": ".getSmartAdvisorRules()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".getsmartadvisorrules()", + "id": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules" + }, + { + "label": ".getVetTestimonials()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".getvettestimonials()", + "id": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials" + }, + { + "label": ".updateHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".updateherobanner()", + "id": "backend_src_cms_cms_controller_cmscontroller_updateherobanner" + }, + { + "label": ".updateSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".updatesmartadvisorrule()", + "id": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule" + }, + { + "label": ".updateVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".updatevettestimonial()", + "id": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".constructor()", + "id": "backend_src_cms_cms_service_cmsservice_constructor" + }, + { + "label": ".createHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".createherobanner()", + "id": "backend_src_cms_cms_service_cmsservice_createherobanner" + }, + { + "label": ".createSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L67", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".createsmartadvisorrule()", + "id": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule" + }, + { + "label": ".createVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".createvettestimonial()", + "id": "backend_src_cms_cms_service_cmsservice_createvettestimonial" + }, + { + "label": ".deleteHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".deleteherobanner()", + "id": "backend_src_cms_cms_service_cmsservice_deleteherobanner" + }, + { + "label": ".deleteSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L82", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".deletesmartadvisorrule()", + "id": "backend_src_cms_cms_service_cmsservice_deletesmartadvisorrule" + }, + { + "label": ".deleteVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".deletevettestimonial()", + "id": "backend_src_cms_cms_service_cmsservice_deletevettestimonial" + }, + { + "label": ".getHeroBanners()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".getherobanners()", + "id": "backend_src_cms_cms_service_cmsservice_getherobanners" + }, + { + "label": ".getSmartAdvisorRules()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".getsmartadvisorrules()", + "id": "backend_src_cms_cms_service_cmsservice_getsmartadvisorrules" + }, + { + "label": ".getVetTestimonials()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L35", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".getvettestimonials()", + "id": "backend_src_cms_cms_service_cmsservice_getvettestimonials" + }, + { + "label": ".updateHeroBanner()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".updateherobanner()", + "id": "backend_src_cms_cms_service_cmsservice_updateherobanner" + }, + { + "label": ".updateSmartAdvisorRule()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".updatesmartadvisorrule()", + "id": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule" + }, + { + "label": ".updateVetTestimonial()", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": ".updatevettestimonial()", + "id": "backend_src_cms_cms_service_cmsservice_updatevettestimonial" + }, + { + "label": ".createBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".createblog()", + "id": "backend_src_admin_blogs_controller_blogscontroller_createblog" + }, + { + "label": ".createBlogCategory()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L66", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".createblogcategory()", + "id": "backend_src_admin_blogs_controller_blogscontroller_createblogcategory" + }, + { + "label": ".createBlogTag()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L97", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".createblogtag()", + "id": "backend_src_admin_blogs_controller_blogscontroller_createblogtag" + }, + { + "label": ".deleteBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".deleteblog()", + "id": "backend_src_admin_blogs_controller_blogscontroller_deleteblog" + }, + { + "label": ".deleteBlogCategory()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L83", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".deleteblogcategory()", + "id": "backend_src_admin_blogs_controller_blogscontroller_deleteblogcategory" + }, + { + "label": ".deleteBlogTag()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L104", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".deleteblogtag()", + "id": "backend_src_admin_blogs_controller_blogscontroller_deleteblogtag" + }, + { + "label": ".deleteComment()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L174", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".deletecomment()", + "id": "backend_src_admin_blogs_controller_blogscontroller_deletecomment" + }, + { + "label": ".getAuthors()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".getauthors()", + "id": "backend_src_admin_blogs_controller_blogscontroller_getauthors" + }, + { + "label": ".getBlogById()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L111", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".getblogbyid()", + "id": "backend_src_admin_blogs_controller_blogscontroller_getblogbyid" + }, + { + "label": ".getBlogCategories()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".getblogcategories()", + "id": "backend_src_admin_blogs_controller_blogscontroller_getblogcategories" + }, + { + "label": ".getBlogs()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L39", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".getblogs()", + "id": "backend_src_admin_blogs_controller_blogscontroller_getblogs" + }, + { + "label": ".getBlogTags()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".getblogtags()", + "id": "backend_src_admin_blogs_controller_blogscontroller_getblogtags" + }, + { + "label": ".getComments()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L151", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".getcomments()", + "id": "backend_src_admin_blogs_controller_blogscontroller_getcomments" + }, + { + "label": ".updateBlog()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".updateblog()", + "id": "backend_src_admin_blogs_controller_blogscontroller_updateblog" + }, + { + "label": ".updateBlogCategory()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".updateblogcategory()", + "id": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory" + }, + { + "label": ".updateCommentStatus()", + "file_type": "code", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L165", + "_callable": true, + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": ".updatecommentstatus()", + "id": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L28", + "_callable": true, + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": ".constructor()", + "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": ".create()", + "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": ".findall()", + "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": ".findone()", + "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone" + }, + { + "label": ".review()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L71", + "_callable": true, + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": ".review()", + "id": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": ".constructor()", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": ".create()", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L94", + "_callable": true, + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": ".findall()", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L108", + "_callable": true, + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": ".findone()", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findone" + }, + { + "label": ".review()", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".review()", + "id": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": ".constructor()", + "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": ".create()", + "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": ".findall()", + "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": ".remove()", + "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L43", + "_callable": true, + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": ".update()", + "id": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": ".constructor()", + "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": ".create()", + "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": ".findall()", + "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_findall" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": ".remove()", + "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_remove" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": ".update()", + "id": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update" + }, + { + "label": "getJwtRefreshSecret()", + "file_type": "code", + "source_file": "backend/src/auth/auth.constants.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 48, + "community_name": "auth.module.ts", + "norm_label": "getjwtrefreshsecret()", + "id": "backend_src_auth_auth_constants_getjwtrefreshsecret" + }, + { + "label": "getJwtSecret()", + "file_type": "code", + "source_file": "backend/src/auth/auth.constants.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 48, + "community_name": "auth.module.ts", + "norm_label": "getjwtsecret()", + "id": "backend_src_auth_auth_constants_getjwtsecret" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "community": 48, + "community_name": "auth.module.ts", + "norm_label": ".constructor()", + "id": "backend_src_auth_jwt_strategy_jwtstrategy_constructor" + }, + { + "label": ".validate()", + "file_type": "code", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 115, + "community_name": "UsersService", + "norm_label": ".validate()", + "id": "backend_src_auth_jwt_strategy_jwtstrategy_validate" + }, + { + "label": ".addAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L131", + "_callable": true, + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": ".addaddress()", + "id": "backend_src_users_users_controller_userscontroller_addaddress" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L44", + "_callable": true, + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": ".constructor()", + "id": "backend_src_users_users_controller_userscontroller_constructor" + }, + { + "label": ".deleteAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L179", + "_callable": true, + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": ".deleteaddress()", + "id": "backend_src_users_users_controller_userscontroller_deleteaddress" + }, + { + "label": ".getProfile()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L68", + "_callable": true, + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": ".getprofile()", + "id": "backend_src_users_users_controller_userscontroller_getprofile" + }, + { + "label": ".setDefaultAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L198", + "_callable": true, + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": ".setdefaultaddress()", + "id": "backend_src_users_users_controller_userscontroller_setdefaultaddress" + }, + { + "label": ".topUpWallet()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L223", + "_callable": true, + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": ".topupwallet()", + "id": "backend_src_users_users_controller_userscontroller_topupwallet" + }, + { + "label": ".updateAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": ".updateaddress()", + "id": "backend_src_users_users_controller_userscontroller_updateaddress" + }, + { + "label": ".updateProfile()", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L103", + "_callable": true, + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": ".updateprofile()", + "id": "backend_src_users_users_controller_userscontroller_updateprofile" + }, + { + "label": ".addAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L210", + "_callable": true, + "_origin": "ast", + "community": 115, + "community_name": "UsersService", + "norm_label": ".addaddress()", + "id": "backend_src_users_users_service_usersservice_addaddress" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 115, + "community_name": "UsersService", + "norm_label": ".constructor()", + "id": "backend_src_users_users_service_usersservice_constructor" + }, + { + "label": ".deleteAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L258", + "_callable": true, + "_origin": "ast", + "community": 115, + "community_name": "UsersService", + "norm_label": ".deleteaddress()", + "id": "backend_src_users_users_service_usersservice_deleteaddress" + }, + { + "label": ".findById()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "community": 115, + "community_name": "UsersService", + "norm_label": ".findbyid()", + "id": "backend_src_users_users_service_usersservice_findbyid" + }, + { + "label": ".findByPhone()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L299", + "_callable": true, + "_origin": "ast", + "community": 115, + "community_name": "UsersService", + "norm_label": ".findbyphone()", + "id": "backend_src_users_users_service_usersservice_findbyphone" + }, + { + "label": ".setDefaultAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L264", + "_callable": true, + "_origin": "ast", + "community": 115, + "community_name": "UsersService", + "norm_label": ".setdefaultaddress()", + "id": "backend_src_users_users_service_usersservice_setdefaultaddress" + }, + { + "label": ".topUpWallet()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L275", + "_callable": true, + "_origin": "ast", + "community": 115, + "community_name": "UsersService", + "norm_label": ".topupwallet()", + "id": "backend_src_users_users_service_usersservice_topupwallet" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "community": 115, + "community_name": "UsersService", + "norm_label": ".update()", + "id": "backend_src_users_users_service_usersservice_update" + }, + { + "label": ".updateAddress()", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L232", + "_callable": true, + "_origin": "ast", + "community": 115, + "community_name": "UsersService", + "norm_label": ".updateaddress()", + "id": "backend_src_users_users_service_usersservice_updateaddress" + }, + { + "label": "IconPickerModal()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", + "source_location": "L90", + "_callable": true, + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "iconpickermodal()", + "id": "frontend_admin_panel_src_components_ui_iconpickermodal_iconpickermodal" + }, + { + "label": "RichTextEditor()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", + "source_location": "L76", + "_callable": true, + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "richtexteditor()", + "id": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditor" + }, + { + "label": "ToggleSwitch()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "toggleswitch()", + "id": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitch" + }, + { + "label": "createSeoSection()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L236", + "_callable": true, + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "createseosection()", + "id": "frontend_admin_panel_src_pages_uitexts_createseosection" + }, + { + "label": "UITexts()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L678", + "_callable": true, + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "uitexts()", + "id": "frontend_admin_panel_src_pages_uitexts_uitexts" + }, + { + "label": "Badge()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "badge()", + "id": "frontend_admin_panel_src_components_ui_badge_badge" + }, + { + "label": "Skeleton()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Skeleton.tsx", + "source_location": "L2", + "_callable": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "skeleton()", + "id": "frontend_admin_panel_src_components_ui_skeleton_skeleton" + }, + { + "label": "MonitoringPage()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "monitoringpage()", + "id": "frontend_admin_panel_src_pages_monitoringpage_monitoringpage" + }, + { + "label": "getPaymentMethodLabel()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "getpaymentmethodlabel()", + "id": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel" + }, + { + "label": "getPaymentStatusBadge()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L118", + "_callable": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "getpaymentstatusbadge()", + "id": "frontend_admin_panel_src_pages_orders_getpaymentstatusbadge" + }, + { + "label": "getShippingMethodLabel()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L135", + "_callable": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "getshippingmethodlabel()", + "id": "frontend_admin_panel_src_pages_orders_getshippingmethodlabel" + }, + { + "label": "Orders()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L169", + "_callable": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "orders()", + "id": "frontend_admin_panel_src_pages_orders_orders" + }, + { + "label": "toPersianDigits()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L163", + "_callable": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "topersiandigits()", + "id": "frontend_admin_panel_src_pages_orders_topersiandigits" + }, + { + "label": "Users()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "users()", + "id": "frontend_admin_panel_src_pages_users_users" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": ".constructor()", + "id": "backend_src_contact_contact_controller_contactcontroller_constructor" + }, + { + "label": ".getAllSubmissions()", + "file_type": "code", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": ".getallsubmissions()", + "id": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions" + }, + { + "label": ".getContactInfo()", + "file_type": "code", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": ".getcontactinfo()", + "id": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo" + }, + { + "label": ".submitContact()", + "file_type": "code", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": ".submitcontact()", + "id": "backend_src_contact_contact_controller_contactcontroller_submitcontact" + }, + { + "label": ".updateContactInfo()", + "file_type": "code", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L74", + "_callable": true, + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": ".updatecontactinfo()", + "id": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo" + }, + { + "label": ".updateSubmissionStatus()", + "file_type": "code", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L60", + "_callable": true, + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": ".updatesubmissionstatus()", + "id": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": ".constructor()", + "id": "backend_src_contact_contact_service_contactservice_constructor" + }, + { + "label": ".getAllSubmissions()", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L125", + "_callable": true, + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": ".getallsubmissions()", + "id": "backend_src_contact_contact_service_contactservice_getallsubmissions" + }, + { + "label": ".getContactInfo()", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L77", + "_callable": true, + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": ".getcontactinfo()", + "id": "backend_src_contact_contact_service_contactservice_getcontactinfo" + }, + { + "label": ".submitContactForm()", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L30", + "_callable": true, + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": ".submitcontactform()", + "id": "backend_src_contact_contact_service_contactservice_submitcontactform" + }, + { + "label": ".updateContactInfoItems()", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": ".updatecontactinfoitems()", + "id": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems" + }, + { + "label": ".updateSubmissionStatus()", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L148", + "_callable": true, + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": ".updatesubmissionstatus()", + "id": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": ".constructor()", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_constructor" + }, + { + "label": ".createTicket()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": ".createticket()", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_createticket" + }, + { + "label": ".getAdminTickets()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L89", + "_callable": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": ".getadmintickets()", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets" + }, + { + "label": ".getMyTickets()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": ".getmytickets()", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets" + }, + { + "label": ".getTicketDetails()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L61", + "_callable": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": ".getticketdetails()", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails" + }, + { + "label": ".replyTicket()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L73", + "_callable": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": ".replyticket()", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket" + }, + { + "label": ".updateTicketStatus()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L98", + "_callable": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": ".updateticketstatus()", + "id": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": ".constructor()", + "id": "backend_src_tickets_tickets_service_ticketsservice_constructor" + }, + { + "label": ".createTicket()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": ".createticket()", + "id": "backend_src_tickets_tickets_service_ticketsservice_createticket" + }, + { + "label": ".generateTicketNumber()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L23", + "_callable": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": ".generateticketnumber()", + "id": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber" + }, + { + "label": ".getAdminTickets()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L207", + "_callable": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": ".getadmintickets()", + "id": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets" + }, + { + "label": ".getTicketDetails()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L100", + "_callable": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": ".getticketdetails()", + "id": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails" + }, + { + "label": ".getUserTickets()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L79", + "_callable": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": ".getusertickets()", + "id": "backend_src_tickets_tickets_service_ticketsservice_getusertickets" + }, + { + "label": ".replyToTicket()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L142", + "_callable": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": ".replytoticket()", + "id": "backend_src_tickets_tickets_service_ticketsservice_replytoticket" + }, + { + "label": ".updateTicketStatus()", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L279", + "_callable": true, + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": ".updateticketstatus()", + "id": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "community": 68, + "community_name": "PaymentService", + "norm_label": ".constructor()", + "id": "backend_src_payment_payment_controller_paymentcontroller_constructor" + }, + { + "label": ".adminLiveInquiry()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L845", + "_callable": true, + "_origin": "ast", + "community": 68, + "community_name": "PaymentService", + "norm_label": ".adminliveinquiry()", + "id": "backend_src_payment_payment_service_paymentservice_adminliveinquiry" + }, + { + "label": ".adminManualReject()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L988", + "_callable": true, + "_origin": "ast", + "community": 68, + "community_name": "PaymentService", + "norm_label": ".adminmanualreject()", + "id": "backend_src_payment_payment_service_paymentservice_adminmanualreject" + }, + { + "label": ".adminManualVerify()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L925", + "_callable": true, + "_origin": "ast", + "community": 68, + "community_name": "PaymentService", + "norm_label": ".adminmanualverify()", + "id": "backend_src_payment_payment_service_paymentservice_adminmanualverify" + }, + { + "label": ".checkGatewayHealth()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L1014", + "_callable": true, + "_origin": "ast", + "community": 68, + "community_name": "PaymentService", + "norm_label": ".checkgatewayhealth()", + "id": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".constructor()", + "id": "backend_src_payment_payment_service_paymentservice_constructor" + }, + { + "label": ".getAdminTransactionStats()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L798", + "_callable": true, + "_origin": "ast", + "community": 68, + "community_name": "PaymentService", + "norm_label": ".getadmintransactionstats()", + "id": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats" + }, + { + "label": ".getTransaction()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L635", + "_callable": true, + "_origin": "ast", + "community": 0, + "community_name": "Roles", + "norm_label": ".gettransaction()", + "id": "backend_src_payment_payment_service_paymentservice_gettransaction" + }, + { + "label": ".getTransactionByTrackId()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L896", + "_callable": true, + "_origin": "ast", + "community": 68, + "community_name": "PaymentService", + "norm_label": ".gettransactionbytrackid()", + "id": "backend_src_payment_payment_service_paymentservice_gettransactionbytrackid" + }, + { + "label": ".inquiryDirectZibal()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L902", + "_callable": true, + "_origin": "ast", + "community": 68, + "community_name": "PaymentService", + "norm_label": ".inquirydirectzibal()", + "id": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal" + }, + { + "label": ".reconcilePendingTransactions()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L540", + "_callable": true, + "_origin": "ast", + "community": 68, + "community_name": "PaymentService", + "norm_label": ".reconcilependingtransactions()", + "id": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions" + }, + { + "label": ".verifyAndProcess()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L227", + "_callable": true, + "_origin": "ast", + "community": 68, + "community_name": "PaymentService", + "norm_label": ".verifyandprocess()", + "id": "backend_src_payment_payment_service_paymentservice_verifyandprocess" + }, + { + "label": ".getResultMessage()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L779", + "_callable": true, + "_origin": "ast", + "community": 68, + "community_name": "PaymentService", + "norm_label": ".getresultmessage()", + "id": "backend_src_payment_zibal_service_zibalservice_getresultmessage" + }, + { + "label": ".getStatusMessage()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L816", + "_callable": true, + "_origin": "ast", + "community": 68, + "community_name": "PaymentService", + "norm_label": ".getstatusmessage()", + "id": "backend_src_payment_zibal_service_zibalservice_getstatusmessage" + }, + { + "label": ".inquiryPayment()", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L260", + "_callable": true, + "_origin": "ast", + "community": 68, + "community_name": "PaymentService", + "norm_label": ".inquirypayment()", + "id": "backend_src_payment_zibal_service_zibalservice_inquirypayment" + }, + { + "label": ".getAdminTransactions()", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L685", + "_callable": true, + "_origin": "ast", + "community": 61, + "community_name": "payment.service.ts", + "norm_label": ".getadmintransactions()", + "id": "backend_src_payment_payment_service_paymentservice_getadmintransactions" + }, + { + "label": ".createReview()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "community": 10, + "community_name": "ReviewsService", + "norm_label": ".createreview()", + "id": "backend_src_reviews_reviews_controller_reviewscontroller_createreview" + }, + { + "label": ".createReview()", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 10, + "community_name": "ReviewsService", + "norm_label": ".createreview()", + "id": "backend_src_reviews_reviews_service_reviewsservice_createreview" + }, + { + "label": "ImagePreviewModal()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 106, + "community_name": "Media.tsx", + "norm_label": "imagepreviewmodal()", + "id": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal" + }, + { + "label": "getFileType()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "community": 106, + "community_name": "Media.tsx", + "norm_label": "getfiletype()", + "id": "frontend_admin_panel_src_pages_media_getfiletype" + }, + { + "label": "MediaManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "community": 106, + "community_name": "Media.tsx", + "norm_label": "mediamanager()", + "id": "frontend_admin_panel_src_pages_media_mediamanager" + }, + { + "label": "PrescriptionsManager()", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L21", + "_callable": true, + "_origin": "ast", + "community": 106, + "community_name": "Media.tsx", + "norm_label": "prescriptionsmanager()", + "id": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L19", + "_callable": true, + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": ".constructor()", + "id": "backend_src_wiki_wiki_controller_wikicontroller_constructor" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": ".findall()", + "id": "backend_src_wiki_wiki_controller_wikicontroller_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": ".findone()", + "id": "backend_src_wiki_wiki_controller_wikicontroller_findone" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": ".constructor()", + "id": "backend_src_wiki_wiki_service_wikiservice_constructor" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L10", + "_callable": true, + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": ".findall()", + "id": "backend_src_wiki_wiki_service_wikiservice_findall" + }, + { + "label": ".findOneByKey()", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": ".findonebykey()", + "id": "backend_src_wiki_wiki_service_wikiservice_findonebykey" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": ".constructor()", + "id": "backend_src_admin_pets_controller_petscontroller_constructor" + }, + { + "label": ".deletePet()", + "file_type": "code", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": ".deletepet()", + "id": "backend_src_admin_pets_controller_petscontroller_deletepet" + }, + { + "label": ".getPets()", + "file_type": "code", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": ".getpets()", + "id": "backend_src_admin_pets_controller_petscontroller_getpets" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": ".constructor()", + "id": "backend_src_admin_pets_service_petsservice_constructor" + }, + { + "label": ".deletePet()", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": ".deletepet()", + "id": "backend_src_admin_pets_service_petsservice_deletepet" + }, + { + "label": ".getPets()", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": ".getpets()", + "id": "backend_src_admin_pets_service_petsservice_getpets" + }, + { + "label": ".addHealthLog()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L260", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".addhealthlog()", + "id": "backend_src_pets_pets_service_petsservice_addhealthlog" + }, + { + "label": ".addReminder()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L198", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".addreminder()", + "id": "backend_src_pets_pets_service_petsservice_addreminder" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".constructor()", + "id": "backend_src_pets_pets_service_petsservice_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L26", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".create()", + "id": "backend_src_pets_pets_service_petsservice_create" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L150", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".findone()", + "id": "backend_src_pets_pets_service_petsservice_findone" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L191", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".remove()", + "id": "backend_src_pets_pets_service_petsservice_remove" + }, + { + "label": ".toggleReminder()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L211", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".togglereminder()", + "id": "backend_src_pets_pets_service_petsservice_togglereminder" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L161", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".update()", + "id": "backend_src_pets_pets_service_petsservice_update" + }, + { + "label": "AboutPage()", + "file_type": "code", + "source_file": "frontend/application/app/about/page.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "aboutpage()", + "id": "frontend_application_app_about_page_aboutpage" }, { "label": "generateMetadata()", "file_type": "code", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L9", + "source_file": "frontend/application/app/about/page.tsx", + "source_location": "L5", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_shop_slug_page_generatemetadata", - "community": 95, - "community_name": "blog/[slug]/page.tsx", - "norm_label": "generatemetadata()" + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_about_page_generatemetadata" + }, + { + "label": "Checkout()", + "file_type": "code", + "source_file": "frontend/application/app/checkout/page.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "checkout()", + "id": "frontend_application_app_checkout_page_checkout" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/checkout/page.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_checkout_page_generatemetadata" + }, + { + "label": "DashboardPage()", + "file_type": "code", + "source_file": "frontend/application/app/dashboard/page.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "dashboardpage()", + "id": "frontend_application_app_dashboard_page_dashboardpage" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/dashboard/page.tsx", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_dashboard_page_generatemetadata" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 237, + "community_name": "app/page.tsx", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_page_generatemetadata" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/privacy/page.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_privacy_page_generatemetadata" + }, + { + "label": "PrivacyPage()", + "file_type": "code", + "source_file": "frontend/application/app/privacy/page.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "privacypage()", + "id": "frontend_application_app_privacy_page_privacypage" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/profile/page.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_profile_page_generatemetadata" + }, + { + "label": "ProfilePage()", + "file_type": "code", + "source_file": "frontend/application/app/profile/page.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "profilepage()", + "id": "frontend_application_app_profile_page_profilepage" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/search/page.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_search_page_generatemetadata" + }, + { + "label": "SearchPage()", + "file_type": "code", + "source_file": "frontend/application/app/search/page.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "searchpage()", + "id": "frontend_application_app_search_page_searchpage" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/shop/page.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_shop_page_generatemetadata" + }, + { + "label": "Shop()", + "file_type": "code", + "source_file": "frontend/application/app/shop/page.tsx", + "source_location": "L34", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "shop()", + "id": "frontend_application_app_shop_page_shop" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_track_page_generatemetadata" + }, + { + "label": "TrackPage()", + "file_type": "code", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "trackpage()", + "id": "frontend_application_app_track_page_trackpage" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_trust_seals_page_generatemetadata" + }, + { + "label": "TrustSealsPage()", + "file_type": "code", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "trustsealspage()", + "id": "frontend_application_app_trust_seals_page_trustsealspage" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/wiki/page.tsx", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_wiki_page_generatemetadata" + }, + { + "label": "WikiPage()", + "file_type": "code", + "source_file": "frontend/application/app/wiki/page.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "wikipage()", + "id": "frontend_application_app_wiki_page_wikipage" + }, + { + "label": "ArchivePage()", + "file_type": "code", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L237", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "archivepage()", + "id": "frontend_application_components_archivepage_archivepage" + }, + { + "label": "getPageMetadata()", + "file_type": "code", + "source_file": "frontend/application/lib/seo.ts", + "source_location": "L173", + "_callable": true, + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "getpagemetadata()", + "id": "frontend_application_lib_seo_getpagemetadata" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L29", + "_callable": true, + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": ".constructor()", + "id": "backend_src_admin_wiki_controller_wikicontroller_constructor" + }, + { + "label": ".createTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L42", + "_callable": true, + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": ".createterm()", + "id": "backend_src_admin_wiki_controller_wikicontroller_createterm" + }, + { + "label": ".deleteTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L59", + "_callable": true, + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": ".deleteterm()", + "id": "backend_src_admin_wiki_controller_wikicontroller_deleteterm" + }, + { + "label": ".getTerms()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": ".getterms()", + "id": "backend_src_admin_wiki_controller_wikicontroller_getterms" + }, + { + "label": ".updateTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": ".updateterm()", + "id": "backend_src_admin_wiki_controller_wikicontroller_updateterm" + }, + { + "label": ".addHealthLog()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L285", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".addhealthlog()", + "id": "backend_src_pets_pets_controller_petscontroller_addhealthlog" + }, + { + "label": ".addReminder()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L259", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".addreminder()", + "id": "backend_src_pets_pets_controller_petscontroller_addreminder" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L56", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".constructor()", + "id": "backend_src_pets_pets_controller_petscontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L119", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".create()", + "id": "backend_src_pets_pets_controller_petscontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L155", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".findall()", + "id": "backend_src_pets_pets_controller_petscontroller_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L192", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".findone()", + "id": "backend_src_pets_pets_controller_petscontroller_findone" + }, + { + "label": ".remove()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L253", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".remove()", + "id": "backend_src_pets_pets_controller_petscontroller_remove" + }, + { + "label": ".toggleReminder()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L269", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".togglereminder()", + "id": "backend_src_pets_pets_controller_petscontroller_togglereminder" + }, + { + "label": ".update()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L223", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".update()", + "id": "backend_src_pets_pets_controller_petscontroller_update" + }, + { + "label": ".uploadPetImage()", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L81", + "_callable": true, + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": ".uploadpetimage()", + "id": "backend_src_pets_pets_controller_petscontroller_uploadpetimage" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": ".constructor()", + "id": "backend_src_seo_seo_controller_seocontroller_constructor" + }, + { + "label": ".getProductSchema()", + "file_type": "code", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L20", + "_callable": true, + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": ".getproductschema()", + "id": "backend_src_seo_seo_controller_seocontroller_getproductschema" + }, + { + "label": ".getSitemap()", + "file_type": "code", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": ".getsitemap()", + "id": "backend_src_seo_seo_controller_seocontroller_getsitemap" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": ".constructor()", + "id": "backend_src_seo_seo_service_seoservice_constructor" + }, + { + "label": ".getProductSchema()", + "file_type": "code", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L36", + "_callable": true, + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": ".getproductschema()", + "id": "backend_src_seo_seo_service_seoservice_getproductschema" + }, + { + "label": ".getSitemapUrls()", + "file_type": "code", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": ".getsitemapurls()", + "id": "backend_src_seo_seo_service_seoservice_getsitemapurls" + }, + { + "label": "escapeXml()", + "file_type": "code", + "source_file": "frontend/application/app/blog/rss.xml/route.ts", + "source_location": "L65", + "_callable": true, + "_origin": "ast", + "community": 78, + "community_name": "route.ts", + "norm_label": "escapexml()", + "id": "frontend_application_app_blog_rss_xml_route_escapexml" + }, + { + "label": "GET()", + "file_type": "code", + "source_file": "frontend/application/app/blog/rss.xml/route.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 78, + "community_name": "route.ts", + "norm_label": "get()", + "id": "frontend_application_app_blog_rss_xml_route_get" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 40, + "community_name": "MediaController", + "norm_label": ".constructor()", + "id": "backend_src_admin_media_service_mediaservice_constructor" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 8, + "community_name": "ReportsController", + "norm_label": ".constructor()", + "id": "backend_src_admin_reports_controller_reportscontroller_constructor" + }, + { + "label": ".getReports()", + "file_type": "code", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 8, + "community_name": "ReportsController", + "norm_label": ".getreports()", + "id": "backend_src_admin_reports_controller_reportscontroller_getreports" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L6", + "_callable": true, + "_origin": "ast", + "community": 8, + "community_name": "ReportsController", + "norm_label": ".constructor()", + "id": "backend_src_admin_reports_service_reportsservice_constructor" + }, + { + "label": ".getDashboardReports()", + "file_type": "code", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L8", + "_callable": true, + "_origin": "ast", + "community": 8, + "community_name": "ReportsController", + "norm_label": ".getdashboardreports()", + "id": "backend_src_admin_reports_service_reportsservice_getdashboardreports" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": ".constructor()", + "id": "backend_src_admin_wiki_service_wikiservice_constructor" + }, + { + "label": ".createTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L45", + "_callable": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": ".createterm()", + "id": "backend_src_admin_wiki_service_wikiservice_createterm" + }, + { + "label": ".deleteTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L57", + "_callable": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": ".deleteterm()", + "id": "backend_src_admin_wiki_service_wikiservice_deleteterm" + }, + { + "label": ".getTerms()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": ".getterms()", + "id": "backend_src_admin_wiki_service_wikiservice_getterms" + }, + { + "label": ".updateTerm()", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": ".updateterm()", + "id": "backend_src_admin_wiki_service_wikiservice_updateterm" + }, + { + "label": ".checkHealth()", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L54", + "_callable": true, + "_origin": "ast", + "community": 86, + "community_name": "zibal.service.ts", + "norm_label": ".checkhealth()", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth" + }, + { + "label": ".getGatewayName()", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L49", + "_callable": true, + "_origin": "ast", + "community": 86, + "community_name": "zibal.service.ts", + "norm_label": ".getgatewayname()", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname" + }, + { + "label": ".getStartUrl()", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "community": 86, + "community_name": "zibal.service.ts", + "norm_label": ".getstarturl()", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl" + }, + { + "label": ".inquiryPayment()", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L52", + "_callable": true, + "_origin": "ast", + "community": 86, + "community_name": "zibal.service.ts", + "norm_label": ".inquirypayment()", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment" + }, + { + "label": ".requestPayment()", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "community": 86, + "community_name": "zibal.service.ts", + "norm_label": ".requestpayment()", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment" + }, + { + "label": ".verifyPayment()", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L51", + "_callable": true, + "_origin": "ast", + "community": 86, + "community_name": "zibal.service.ts", + "norm_label": ".verifypayment()", + "id": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment" }, { "label": "ShopProductPage()", @@ -16832,10 +16305,706 @@ "source_location": "L93", "_callable": true, "_origin": "ast", - "id": "frontend_application_app_shop_slug_page_shopproductpage", "community": 95, "community_name": "blog/[slug]/page.tsx", - "norm_label": "shopproductpage()" + "norm_label": "shopproductpage()", + "id": "frontend_application_app_shop_slug_page_shopproductpage" + }, + { + "label": "PodcastInlinePlayer()", + "file_type": "code", + "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "podcastinlineplayer()", + "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayer" + }, + { + "label": "handleClickOutside()", + "file_type": "code", + "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", + "source_location": "L50", + "_callable": true, + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "handleclickoutside()", + "id": "frontend_application_components_podcastinlineplayer_podcastinlineplayer_handleclickoutside" + }, + { + "label": "ProductPage()", + "file_type": "code", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "productpage()", + "id": "frontend_application_components_productpage_productpage" + }, + { + "label": "ProductReviews()", + "file_type": "code", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L33", + "_callable": true, + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "productreviews()", + "id": "frontend_application_components_productreviews_productreviews" + }, + { + "label": "Tooltip()", + "file_type": "code", + "source_file": "frontend/application/components/Tooltip.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "tooltip()", + "id": "frontend_application_components_tooltip_tooltip" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "backend/prisma/seed-home.ts", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 89, + "community_name": "seed-products.ts", + "norm_label": "main()", + "id": "backend_prisma_seed_home_main" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "backend/prisma/seed.ts", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 89, + "community_name": "seed-products.ts", + "norm_label": "main()", + "id": "backend_prisma_seed_main" + }, + { + "label": "determineSuitableFor()", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L16", + "_callable": true, + "_origin": "ast", + "community": 89, + "community_name": "seed-products.ts", + "norm_label": "determinesuitablefor()", + "id": "backend_prisma_seed_products_determinesuitablefor" + }, + { + "label": "findOrCreateCategory()", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L128", + "_callable": true, + "_origin": "ast", + "community": 89, + "community_name": "seed-products.ts", + "norm_label": "findorcreatecategory()", + "id": "backend_prisma_seed_products_findorcreatecategory" + }, + { + "label": "getProductImageUrl()", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L41", + "_callable": true, + "_origin": "ast", + "community": 89, + "community_name": "seed-products.ts", + "norm_label": "getproductimageurl()", + "id": "backend_prisma_seed_products_getproductimageurl" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L268", + "_callable": true, + "_origin": "ast", + "community": 89, + "community_name": "seed-products.ts", + "norm_label": "main()", + "id": "backend_prisma_seed_products_main" + }, + { + "label": "parseSize()", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L31", + "_callable": true, + "_origin": "ast", + "community": 89, + "community_name": "seed-products.ts", + "norm_label": "parsesize()", + "id": "backend_prisma_seed_products_parsesize" + }, + { + "label": "slugify()", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 89, + "community_name": "seed-products.ts", + "norm_label": "slugify()", + "id": "backend_prisma_seed_products_slugify" + }, + { + "label": "HomeClient()", + "file_type": "code", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "homeclient()", + "id": "frontend_application_app_homeclient_homeclient" + }, + { + "label": "getHomeData()", + "file_type": "code", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L13", + "_callable": true, + "_origin": "ast", + "community": 237, + "community_name": "app/page.tsx", + "norm_label": "gethomedata()", + "id": "frontend_application_app_page_gethomedata" + }, + { + "label": "Home()", + "file_type": "code", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L32", + "_callable": true, + "_origin": "ast", + "community": 237, + "community_name": "app/page.tsx", + "norm_label": "home()", + "id": "frontend_application_app_page_home" + }, + { + "label": "BannerPlacement()", + "file_type": "code", + "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_location": "L12", + "_callable": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "bannerplacement()", + "id": "frontend_application_components_bannerplacement_bannerplacement" + }, + { + "label": "FAQSection()", + "file_type": "code", + "source_file": "frontend/application/components/FAQSection.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "faqsection()", + "id": "frontend_application_components_faqsection_faqsection" + }, + { + "label": "loadFaqs()", + "file_type": "code", + "source_file": "frontend/application/components/FAQSection.tsx", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "loadfaqs()", + "id": "frontend_application_components_faqsection_faqsection_loadfaqs" + }, + { + "label": "Hero()", + "file_type": "code", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L40", + "_callable": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "hero()", + "id": "frontend_application_components_hero_hero" + }, + { + "label": "StatCounter()", + "file_type": "code", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "statcounter()", + "id": "frontend_application_components_hero_statcounter" + }, + { + "label": ".getBanners()", + "file_type": "code", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L372", + "_callable": true, + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": ".getbanners()", + "id": "frontend_application_lib_services_productservice_productservice_getbanners" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L55", + "_callable": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": ".constructor()", + "id": "backend_src_orders_orders_controller_orderscontroller_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L85", + "_callable": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": ".create()", + "id": "backend_src_orders_orders_controller_orderscontroller_create" + }, + { + "label": ".findAll()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L146", + "_callable": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": ".findall()", + "id": "backend_src_orders_orders_controller_orderscontroller_findall" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L208", + "_callable": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": ".findone()", + "id": "backend_src_orders_orders_controller_orderscontroller_findone" + }, + { + "label": ".retryPayment()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L196", + "_callable": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": ".retrypayment()", + "id": "backend_src_orders_orders_controller_orderscontroller_retrypayment" + }, + { + "label": ".validateCoupon()", + "file_type": "code", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L110", + "_callable": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": ".validatecoupon()", + "id": "backend_src_orders_orders_controller_orderscontroller_validatecoupon" + }, + { + "label": ".checkAndSendRefillReminders()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L400", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".checkandsendrefillreminders()", + "id": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": ".constructor()", + "id": "backend_src_orders_orders_service_ordersservice_constructor" + }, + { + "label": ".create()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L101", + "_callable": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": ".create()", + "id": "backend_src_orders_orders_service_ordersservice_create" + }, + { + "label": ".findAllByUser()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L353", + "_callable": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": ".findallbyuser()", + "id": "backend_src_orders_orders_service_ordersservice_findallbyuser" + }, + { + "label": ".findOne()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L386", + "_callable": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": ".findone()", + "id": "backend_src_orders_orders_service_ordersservice_findone" + }, + { + "label": ".generateTrackingNumber()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L22", + "_callable": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": ".generatetrackingnumber()", + "id": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber" + }, + { + "label": ".releaseExpiredInventoryReservations()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L430", + "_callable": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": ".releaseexpiredinventoryreservations()", + "id": "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations" + }, + { + "label": ".retryPayment()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L452", + "_callable": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": ".retrypayment()", + "id": "backend_src_orders_orders_service_ordersservice_retrypayment" + }, + { + "label": ".updateStatus()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L322", + "_callable": true, + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": ".updatestatus()", + "id": "backend_src_orders_orders_service_ordersservice_updatestatus" + }, + { + "label": ".validateCoupon()", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": ".validatecoupon()", + "id": "backend_src_orders_orders_service_ordersservice_validatecoupon" + }, + { + "label": "B2BPage()", + "file_type": "code", + "source_file": "frontend/application/app/b2b/page.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "b2bpage()", + "id": "frontend_application_app_b2b_page_b2bpage" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/b2b/page.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_b2b_page_generatemetadata" + }, + { + "label": "ContactPage()", + "file_type": "code", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L15", + "_callable": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "contactpage()", + "id": "frontend_application_app_contact_page_contactpage" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L5", + "_callable": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_contact_page_generatemetadata" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L38", + "_callable": true, + "_origin": "ast", + "community": 148, + "community_name": "wiki/[slug]/page.tsx", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_wiki_slug_page_generatemetadata" + }, + { + "label": "getRelatedProducts()", + "file_type": "code", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L24", + "_callable": true, + "_origin": "ast", + "community": 148, + "community_name": "wiki/[slug]/page.tsx", + "norm_label": "getrelatedproducts()", + "id": "frontend_application_app_wiki_slug_page_getrelatedproducts" + }, + { + "label": "getWikiTerm()", + "file_type": "code", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L11", + "_callable": true, + "_origin": "ast", + "community": 148, + "community_name": "wiki/[slug]/page.tsx", + "norm_label": "getwikiterm()", + "id": "frontend_application_app_wiki_slug_page_getwikiterm" + }, + { + "label": "WikiTermPage()", + "file_type": "code", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L78", + "_callable": true, + "_origin": "ast", + "community": 148, + "community_name": "wiki/[slug]/page.tsx", + "norm_label": "wikitermpage()", + "id": "frontend_application_app_wiki_slug_page_wikitermpage" + }, + { + "label": "ContactFormClient()", + "file_type": "code", + "source_file": "frontend/application/components/ContactFormClient.tsx", + "source_location": "L14", + "_callable": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "contactformclient()", + "id": "frontend_application_components_contactformclient_contactformclient" + }, + { + "label": "fetchContactInfo()", + "file_type": "code", + "source_file": "frontend/application/components/ContactFormClient.tsx", + "source_location": "L25", + "_callable": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "fetchcontactinfo()", + "id": "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo" + }, + { + "label": "generateB2BServiceSchema()", + "file_type": "code", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L120", + "_callable": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "generateb2bserviceschema()", + "id": "frontend_application_lib_schema_generateb2bserviceschema" + }, + { + "label": "generateBreadcrumbSchema()", + "file_type": "code", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L222", + "_callable": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "generatebreadcrumbschema()", + "id": "frontend_application_lib_schema_generatebreadcrumbschema" + }, + { + "label": "generateLocalBusinessSchema()", + "file_type": "code", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L72", + "_callable": true, + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "generatelocalbusinessschema()", + "id": "frontend_application_lib_schema_generatelocalbusinessschema" + }, + { + "label": "generateMedicalWebPageSchema()", + "file_type": "code", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L159", + "_callable": true, + "_origin": "ast", + "community": 148, + "community_name": "wiki/[slug]/page.tsx", + "norm_label": "generatemedicalwebpageschema()", + "id": "frontend_application_lib_schema_generatemedicalwebpageschema" + }, + { + "label": "BlogPostPage()", + "file_type": "code", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L138", + "_callable": true, + "_origin": "ast", + "community": 95, + "community_name": "blog/[slug]/page.tsx", + "norm_label": "blogpostpage()", + "id": "frontend_application_app_blog_slug_page_blogpostpage" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L53", + "_callable": true, + "_origin": "ast", + "community": 95, + "community_name": "blog/[slug]/page.tsx", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_blog_slug_page_generatemetadata" + }, + { + "label": "getBlog()", + "file_type": "code", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L27", + "_callable": true, + "_origin": "ast", + "community": 95, + "community_name": "blog/[slug]/page.tsx", + "norm_label": "getblog()", + "id": "frontend_application_app_blog_slug_page_getblog" + }, + { + "label": "safeIso()", + "file_type": "code", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L7", + "_callable": true, + "_origin": "ast", + "community": 95, + "community_name": "blog/[slug]/page.tsx", + "norm_label": "safeiso()", + "id": "frontend_application_app_blog_slug_page_safeiso" + }, + { + "label": "safeLocalDate()", + "file_type": "code", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L17", + "_callable": true, + "_origin": "ast", + "community": 95, + "community_name": "blog/[slug]/page.tsx", + "norm_label": "safelocaldate()", + "id": "frontend_application_app_blog_slug_page_safelocaldate" + }, + { + "label": "generateMetadata()", + "file_type": "code", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L9", + "_callable": true, + "_origin": "ast", + "community": 95, + "community_name": "blog/[slug]/page.tsx", + "norm_label": "generatemetadata()", + "id": "frontend_application_app_shop_slug_page_generatemetadata" }, { "label": "BlogPostClient()", @@ -16844,10 +17013,10 @@ "source_location": "L26", "_callable": true, "_origin": "ast", - "id": "frontend_application_components_blogpostclient_blogpostclient", "community": 95, "community_name": "blog/[slug]/page.tsx", - "norm_label": "blogpostclient()" + "norm_label": "blogpostclient()", + "id": "frontend_application_components_blogpostclient_blogpostclient" }, { "label": "formatPageTitle()", @@ -16856,10 +17025,10 @@ "source_location": "L123", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_seo_formatpagetitle", "community": 95, "community_name": "blog/[slug]/page.tsx", - "norm_label": "formatpagetitle()" + "norm_label": "formatpagetitle()", + "id": "frontend_application_lib_seo_formatpagetitle" }, { "label": "getSeoConfig()", @@ -16868,190 +17037,106 @@ "source_location": "L32", "_callable": true, "_origin": "ast", - "id": "frontend_application_lib_seo_getseoconfig", "community": 95, "community_name": "blog/[slug]/page.tsx", - "norm_label": "getseoconfig()" + "norm_label": "getseoconfig()", + "id": "frontend_application_lib_seo_getseoconfig" }, { "label": ".addComment()", "file_type": "code", "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L77", + "source_location": "L79", "_callable": true, "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", "community": 99, "community_name": "BlogsController", - "norm_label": ".addcomment()" + "norm_label": ".addcomment()", + "id": "backend_src_blogs_blogs_controller_blogscontroller_addcomment" }, { "label": ".constructor()", "file_type": "code", "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L31", + "source_location": "L32", "_callable": true, "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_blogscontroller_constructor", "community": 99, "community_name": "BlogsController", - "norm_label": ".constructor()" + "norm_label": ".constructor()", + "id": "backend_src_blogs_blogs_controller_blogscontroller_constructor" }, { "label": ".findAll()", "file_type": "code", "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L36", + "source_location": "L37", "_callable": true, "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_blogscontroller_findall", "community": 99, "community_name": "BlogsController", - "norm_label": ".findall()" + "norm_label": ".findall()", + "id": "backend_src_blogs_blogs_controller_blogscontroller_findall" }, { "label": ".findCategories()", "file_type": "code", "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L42", + "source_location": "L43", "_callable": true, "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_blogscontroller_findcategories", "community": 99, "community_name": "BlogsController", - "norm_label": ".findcategories()" + "norm_label": ".findcategories()", + "id": "backend_src_blogs_blogs_controller_blogscontroller_findcategories" }, { "label": ".findComments()", "file_type": "code", "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L69", + "source_location": "L70", "_callable": true, "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_blogscontroller_findcomments", "community": 99, "community_name": "BlogsController", - "norm_label": ".findcomments()" + "norm_label": ".findcomments()", + "id": "backend_src_blogs_blogs_controller_blogscontroller_findcomments" }, { "label": ".findHomepage()", "file_type": "code", "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L55", + "source_location": "L56", "_callable": true, "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_blogscontroller_findhomepage", "community": 99, "community_name": "BlogsController", - "norm_label": ".findhomepage()" + "norm_label": ".findhomepage()", + "id": "backend_src_blogs_blogs_controller_blogscontroller_findhomepage" }, { "label": ".findOne()", "file_type": "code", "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L63", + "source_location": "L64", "_callable": true, "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_blogscontroller_findone", "community": 99, "community_name": "BlogsController", - "norm_label": ".findone()" + "norm_label": ".findone()", + "id": "backend_src_blogs_blogs_controller_blogscontroller_findone" }, { "label": ".findTags()", "file_type": "code", "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L48", + "source_location": "L49", "_callable": true, "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_blogscontroller_findtags", "community": 99, "community_name": "BlogsController", - "norm_label": ".findtags()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L17", - "_callable": true, - "_origin": "ast", - "id": "backend_src_home_home_controller_homecontroller_constructor", - "community": 99, - "community_name": "BlogsController", - "norm_label": ".constructor()" - }, - { - "label": ".getHomeData()", - "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_home_home_controller_homecontroller_gethomedata", - "community": 99, - "community_name": "BlogsController", - "norm_label": ".gethomedata()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L6", - "_callable": true, - "_origin": "ast", - "id": "backend_src_home_home_service_homeservice_constructor", - "community": 99, - "community_name": "BlogsController", - "norm_label": ".constructor()" - }, - { - "label": ".getHomeData()", - "file_type": "code", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L8", - "_callable": true, - "_origin": "ast", - "id": "backend_src_home_home_service_homeservice_gethomedata", - "community": 99, - "community_name": "BlogsController", - "norm_label": ".gethomedata()" - }, - { - "label": ".constructor()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L19", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_wikicontroller_constructor", - "community": 99, - "community_name": "BlogsController", - "norm_label": ".constructor()" - }, - { - "label": ".findAll()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L24", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_wikicontroller_findall", - "community": 99, - "community_name": "BlogsController", - "norm_label": ".findall()" - }, - { - "label": ".findOne()", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L32", - "_callable": true, - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_wikicontroller_findone", - "community": 99, - "community_name": "BlogsController", - "norm_label": ".findone()" + "norm_label": ".findtags()", + "id": "backend_src_blogs_blogs_controller_blogscontroller_findtags" }, { "label": "ApiBearerAuth", @@ -17059,10 +17144,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_apibearerauth", "community": 0, "community_name": "Roles", - "norm_label": "apibearerauth" + "norm_label": "apibearerauth", + "id": "backend_src_payment_payment_controller_ts_apibearerauth" }, { "label": "ApiOperation", @@ -17070,10 +17155,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_apioperation", "community": 0, "community_name": "Roles", - "norm_label": "apioperation" + "norm_label": "apioperation", + "id": "backend_src_payment_payment_controller_ts_apioperation" }, { "label": "ApiTags", @@ -17081,10 +17166,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_apitags", "community": 0, "community_name": "Roles", - "norm_label": "apitags" + "norm_label": "apitags", + "id": "backend_src_payment_payment_controller_ts_apitags" }, { "label": "Body", @@ -17092,10 +17177,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_body", "community": 0, "community_name": "Roles", - "norm_label": "body" + "norm_label": "body", + "id": "backend_src_payment_payment_controller_ts_body" }, { "label": "Controller", @@ -17103,10 +17188,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_controller", "community": 0, "community_name": "Roles", - "norm_label": "controller" + "norm_label": "controller", + "id": "backend_src_payment_payment_controller_ts_controller" }, { "label": "Get", @@ -17114,10 +17199,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_get", "community": 0, "community_name": "Roles", - "norm_label": "get" + "norm_label": "get", + "id": "backend_src_payment_payment_controller_ts_get" }, { "label": "Param", @@ -17125,10 +17210,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_param", "community": 0, "community_name": "Roles", - "norm_label": "param" + "norm_label": "param", + "id": "backend_src_payment_payment_controller_ts_param" }, { "label": "Post", @@ -17136,10 +17221,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_post", "community": 0, "community_name": "Roles", - "norm_label": "post" + "norm_label": "post", + "id": "backend_src_payment_payment_controller_ts_post" }, { "label": "Put", @@ -17147,10 +17232,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_put", "community": 0, "community_name": "Roles", - "norm_label": "put" + "norm_label": "put", + "id": "backend_src_payment_payment_controller_ts_put" }, { "label": "Query", @@ -17158,10 +17243,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_query", "community": 0, "community_name": "Roles", - "norm_label": "query" + "norm_label": "query", + "id": "backend_src_payment_payment_controller_ts_query" }, { "label": "UseGuards", @@ -17169,10 +17254,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_useguards", "community": 0, "community_name": "Roles", - "norm_label": "useguards" + "norm_label": "useguards", + "id": "backend_src_payment_payment_controller_ts_useguards" }, { "label": "app.module.ts", @@ -17180,10 +17265,32 @@ "source_file": "backend/src/app.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_app_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "app.module.ts" + "norm_label": "app.module.ts", + "id": "backend_src_app_module" + }, + { + "label": "b2b.module.ts", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "b2b.module.ts", + "id": "backend_src_b2b_b2b_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_b2b_b2b_module_ts_module" }, { "label": "banners.module.ts", @@ -17191,10 +17298,10 @@ "source_file": "backend/src/banners/banners.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_banners_banners_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "banners.module.ts" + "norm_label": "banners.module.ts", + "id": "backend_src_banners_banners_module" }, { "label": "Module", @@ -17202,10 +17309,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_banners_banners_module_ts_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "module" + "norm_label": "module", + "id": "backend_src_banners_banners_module_ts_module" }, { "label": "cms.module.ts", @@ -17213,10 +17320,10 @@ "source_file": "backend/src/cms/cms.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_cms_cms_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "cms.module.ts" + "norm_label": "cms.module.ts", + "id": "backend_src_cms_cms_module" }, { "label": "Module", @@ -17224,10 +17331,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_cms_cms_module_ts_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "module" + "norm_label": "module", + "id": "backend_src_cms_cms_module_ts_module" }, { "label": "sms.module.ts", @@ -17235,10 +17342,10 @@ "source_file": "backend/src/common/sms.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_common_sms_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "sms.module.ts" + "norm_label": "sms.module.ts", + "id": "backend_src_common_sms_module" }, { "label": "Global", @@ -17246,10 +17353,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_common_sms_module_ts_global", "community": 1, "community_name": "app.module.ts", - "norm_label": "global" + "norm_label": "global", + "id": "backend_src_common_sms_module_ts_global" }, { "label": "Module", @@ -17257,10 +17364,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_common_sms_module_ts_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "module" + "norm_label": "module", + "id": "backend_src_common_sms_module_ts_module" }, { "label": "contact.module.ts", @@ -17268,10 +17375,10 @@ "source_file": "backend/src/contact/contact.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_contact_contact_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "contact.module.ts" + "norm_label": "contact.module.ts", + "id": "backend_src_contact_contact_module" }, { "label": "Module", @@ -17279,10 +17386,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_contact_contact_module_ts_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "module" + "norm_label": "module", + "id": "backend_src_contact_contact_module_ts_module" }, { "label": "doctors.module.ts", @@ -17290,10 +17397,10 @@ "source_file": "backend/src/doctors/doctors.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_doctors_doctors_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "doctors.module.ts" + "norm_label": "doctors.module.ts", + "id": "backend_src_doctors_doctors_module" }, { "label": "Module", @@ -17301,10 +17408,32 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_doctors_module_ts_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "module" + "norm_label": "module", + "id": "backend_src_doctors_doctors_module_ts_module" + }, + { + "label": "faq.module.ts", + "file_type": "code", + "source_file": "backend/src/faq/faq.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": "faq.module.ts", + "id": "backend_src_faq_faq_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": "module", + "id": "backend_src_faq_faq_module_ts_module" }, { "label": "ingredients.module.ts", @@ -17312,10 +17441,10 @@ "source_file": "backend/src/ingredients/ingredients.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_ingredients_ingredients_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "ingredients.module.ts" + "norm_label": "ingredients.module.ts", + "id": "backend_src_ingredients_ingredients_module" }, { "label": "Module", @@ -17323,10 +17452,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_ingredients_ingredients_module_ts_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "module" + "norm_label": "module", + "id": "backend_src_ingredients_ingredients_module_ts_module" }, { "label": "menu.module.ts", @@ -17334,10 +17463,10 @@ "source_file": "backend/src/menu/menu.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_menu_menu_module", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "menu.module.ts" + "community": 23, + "community_name": "MenuService", + "norm_label": "menu.module.ts", + "id": "backend_src_menu_menu_module" }, { "label": "Module", @@ -17345,10 +17474,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_menu_menu_module_ts_module", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "module" + "community": 23, + "community_name": "MenuService", + "norm_label": "module", + "id": "backend_src_menu_menu_module_ts_module" }, { "label": "payment.module.ts", @@ -17356,10 +17485,10 @@ "source_file": "backend/src/payment/payment.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_payment_payment_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "payment.module.ts" + "norm_label": "payment.module.ts", + "id": "backend_src_payment_payment_module" }, { "label": "Module", @@ -17367,10 +17496,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_module_ts_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "module" + "norm_label": "module", + "id": "backend_src_payment_payment_module_ts_module" }, { "label": "prescriptions.module.ts", @@ -17378,10 +17507,10 @@ "source_file": "backend/src/prescriptions/prescriptions.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "prescriptions.module.ts" + "norm_label": "prescriptions.module.ts", + "id": "backend_src_prescriptions_prescriptions_module" }, { "label": "Module", @@ -17389,10 +17518,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_module_ts_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "module" + "norm_label": "module", + "id": "backend_src_prescriptions_prescriptions_module_ts_module" }, { "label": "prisma.module.ts", @@ -17400,10 +17529,10 @@ "source_file": "backend/src/prisma/prisma.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_prisma_prisma_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "prisma.module.ts" + "norm_label": "prisma.module.ts", + "id": "backend_src_prisma_prisma_module" }, { "label": "Global", @@ -17411,10 +17540,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_prisma_prisma_module_ts_global", "community": 1, "community_name": "app.module.ts", - "norm_label": "global" + "norm_label": "global", + "id": "backend_src_prisma_prisma_module_ts_global" }, { "label": "Module", @@ -17422,32 +17551,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_prisma_prisma_module_ts_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "module" - }, - { - "label": "reviews.module.ts", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_reviews_reviews_module", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "reviews.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_module_ts_module", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "module" + "norm_label": "module", + "id": "backend_src_prisma_prisma_module_ts_module" }, { "label": "settings.module.ts", @@ -17455,10 +17562,10 @@ "source_file": "backend/src/settings/settings.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_settings_settings_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "settings.module.ts" + "norm_label": "settings.module.ts", + "id": "backend_src_settings_settings_module" }, { "label": "Module", @@ -17466,10 +17573,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_settings_settings_module_ts_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "module" + "norm_label": "module", + "id": "backend_src_settings_settings_module_ts_module" }, { "label": "smart-advisor.module.ts", @@ -17477,10 +17584,10 @@ "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "smart-advisor.module.ts" + "norm_label": "smart-advisor.module.ts", + "id": "backend_src_smart_advisor_smart_advisor_module" }, { "label": "Module", @@ -17488,10 +17595,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_module_ts_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "module" + "norm_label": "module", + "id": "backend_src_smart_advisor_smart_advisor_module_ts_module" }, { "label": "testimonials.module.ts", @@ -17499,10 +17606,10 @@ "source_file": "backend/src/testimonials/testimonials.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_testimonials_testimonials_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "testimonials.module.ts" + "norm_label": "testimonials.module.ts", + "id": "backend_src_testimonials_testimonials_module" }, { "label": "Module", @@ -17510,32 +17617,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_testimonials_testimonials_module_ts_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "module" - }, - { - "label": "videos.module.ts", - "file_type": "code", - "source_file": "backend/src/videos/videos.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_videos_videos_module", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "videos.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_videos_module_ts_module", - "community": 1, - "community_name": "app.module.ts", - "norm_label": "module" + "norm_label": "module", + "id": "backend_src_testimonials_testimonials_module_ts_module" }, { "label": "wholesale.module.ts", @@ -17543,10 +17628,10 @@ "source_file": "backend/src/wholesale/wholesale.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_wholesale_wholesale_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "wholesale.module.ts" + "norm_label": "wholesale.module.ts", + "id": "backend_src_wholesale_wholesale_module" }, { "label": "Module", @@ -17554,10 +17639,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_wholesale_wholesale_module_ts_module", "community": 1, "community_name": "app.module.ts", - "norm_label": "module" + "norm_label": "module", + "id": "backend_src_wholesale_wholesale_module_ts_module" }, { "label": "ApiBearerAuth", @@ -17565,10 +17650,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_apibearerauth", "community": 10, "community_name": "ReviewsService", - "norm_label": "apibearerauth" + "norm_label": "apibearerauth", + "id": "backend_src_reviews_reviews_controller_ts_apibearerauth" }, { "label": "ApiOperation", @@ -17576,10 +17661,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_apioperation", "community": 10, "community_name": "ReviewsService", - "norm_label": "apioperation" + "norm_label": "apioperation", + "id": "backend_src_reviews_reviews_controller_ts_apioperation" }, { "label": "ApiTags", @@ -17587,10 +17672,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_apitags", "community": 10, "community_name": "ReviewsService", - "norm_label": "apitags" + "norm_label": "apitags", + "id": "backend_src_reviews_reviews_controller_ts_apitags" }, { "label": "Body", @@ -17598,10 +17683,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_body", "community": 10, "community_name": "ReviewsService", - "norm_label": "body" + "norm_label": "body", + "id": "backend_src_reviews_reviews_controller_ts_body" }, { "label": "Controller", @@ -17609,10 +17694,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_controller", "community": 10, "community_name": "ReviewsService", - "norm_label": "controller" + "norm_label": "controller", + "id": "backend_src_reviews_reviews_controller_ts_controller" }, { "label": "Delete", @@ -17620,10 +17705,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_delete", "community": 10, "community_name": "ReviewsService", - "norm_label": "delete" + "norm_label": "delete", + "id": "backend_src_reviews_reviews_controller_ts_delete" }, { "label": "Get", @@ -17631,10 +17716,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_get", "community": 10, "community_name": "ReviewsService", - "norm_label": "get" + "norm_label": "get", + "id": "backend_src_reviews_reviews_controller_ts_get" }, { "label": "Param", @@ -17642,10 +17727,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_param", "community": 10, "community_name": "ReviewsService", - "norm_label": "param" + "norm_label": "param", + "id": "backend_src_reviews_reviews_controller_ts_param" }, { "label": "Patch", @@ -17653,21 +17738,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_patch", "community": 10, "community_name": "ReviewsService", - "norm_label": "patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_post", - "community": 10, - "community_name": "ReviewsService", - "norm_label": "post" + "norm_label": "patch", + "id": "backend_src_reviews_reviews_controller_ts_patch" }, { "label": "Query", @@ -17675,21 +17749,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_query", "community": 10, "community_name": "ReviewsService", - "norm_label": "query" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_req", - "community": 10, - "community_name": "ReviewsService", - "norm_label": "req" + "norm_label": "query", + "id": "backend_src_reviews_reviews_controller_ts_query" }, { "label": "UseGuards", @@ -17697,21 +17760,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_reviews_reviews_controller_ts_useguards", "community": 10, "community_name": "ReviewsService", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_reviews_service_ts_injectable", - "community": 10, - "community_name": "ReviewsService", - "norm_label": "injectable" + "norm_label": "useguards", + "id": "backend_src_reviews_reviews_controller_ts_useguards" }, { "label": "16-deep-audit-summary.md", @@ -17719,10 +17771,11 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary", "community": 100, "community_name": "Deep Audit Summary Report", - "norm_label": "16-deep-audit-summary.md" + "norm_label": "16-deep-audit-summary.md", + "node_kind": "page", + "id": "docs_audit_16_deep_audit_summary" }, { "label": "1. Audit Overview", @@ -17730,10 +17783,11 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L3", "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_1_audit_overview", "community": 100, "community_name": "Deep Audit Summary Report", - "norm_label": "1. audit overview" + "norm_label": "1. audit overview", + "node_kind": "heading", + "id": "docs_audit_16_deep_audit_summary_1_audit_overview" }, { "label": "2. Findings Metrics", @@ -17741,10 +17795,11 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L12", "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_2_findings_metrics", "community": 100, "community_name": "Deep Audit Summary Report", - "norm_label": "2. findings metrics" + "norm_label": "2. findings metrics", + "node_kind": "heading", + "id": "docs_audit_16_deep_audit_summary_2_findings_metrics" }, { "label": "3. Inspected Scope & Command Log", @@ -17752,10 +17807,11 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L41", "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", "community": 100, "community_name": "Deep Audit Summary Report", - "norm_label": "3. inspected scope & command log" + "norm_label": "3. inspected scope & command log", + "node_kind": "heading", + "id": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log" }, { "label": "4. Key Business & Integration Questions", @@ -17763,10 +17819,11 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L62", "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_4_key_business_integration_questions", "community": 100, "community_name": "Deep Audit Summary Report", - "norm_label": "4. key business & integration questions" + "norm_label": "4. key business & integration questions", + "node_kind": "heading", + "id": "docs_audit_16_deep_audit_summary_4_key_business_integration_questions" }, { "label": "5. Audit Limitations & Integrity Confirmation", @@ -17774,10 +17831,11 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L69", "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_5_audit_limitations_integrity_confirmation", "community": 100, "community_name": "Deep Audit Summary Report", - "norm_label": "5. audit limitations & integrity confirmation" + "norm_label": "5. audit limitations & integrity confirmation", + "node_kind": "heading", + "id": "docs_audit_16_deep_audit_summary_5_audit_limitations_integrity_confirmation" }, { "label": "6. Exact Next Recommended Phase", @@ -17785,10 +17843,11 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L75", "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_6_exact_next_recommended_phase", "community": 100, "community_name": "Deep Audit Summary Report", - "norm_label": "6. exact next recommended phase" + "norm_label": "6. exact next recommended phase", + "node_kind": "heading", + "id": "docs_audit_16_deep_audit_summary_6_exact_next_recommended_phase" }, { "label": "Blocked Commands & Reasons", @@ -17796,10 +17855,11 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L55", "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_blocked_commands_reasons", "community": 100, "community_name": "Deep Audit Summary Report", - "norm_label": "blocked commands & reasons" + "norm_label": "blocked commands & reasons", + "node_kind": "heading", + "id": "docs_audit_16_deep_audit_summary_blocked_commands_reasons" }, { "label": "By Confidence", @@ -17807,10 +17867,11 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L21", "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_by_confidence", "community": 100, "community_name": "Deep Audit Summary Report", - "norm_label": "by confidence" + "norm_label": "by confidence", + "node_kind": "heading", + "id": "docs_audit_16_deep_audit_summary_by_confidence" }, { "label": "By Domain", @@ -17818,10 +17879,11 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L27", "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_by_domain", "community": 100, "community_name": "Deep Audit Summary Report", - "norm_label": "by domain" + "norm_label": "by domain", + "node_kind": "heading", + "id": "docs_audit_16_deep_audit_summary_by_domain" }, { "label": "By Severity", @@ -17829,10 +17891,11 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L14", "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_by_severity", "community": 100, "community_name": "Deep Audit Summary Report", - "norm_label": "by severity" + "norm_label": "by severity", + "node_kind": "heading", + "id": "docs_audit_16_deep_audit_summary_by_severity" }, { "label": "Deep Audit Summary Report", @@ -17840,10 +17903,11 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", "community": 100, "community_name": "Deep Audit Summary Report", - "norm_label": "deep audit summary report" + "norm_label": "deep audit summary report", + "node_kind": "heading", + "id": "docs_audit_16_deep_audit_summary_deep_audit_summary_report" }, { "label": "Executed Commands & Results", @@ -17851,10 +17915,11 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L49", "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_executed_commands_results", "community": 100, "community_name": "Deep Audit Summary Report", - "norm_label": "executed commands & results" + "norm_label": "executed commands & results", + "node_kind": "heading", + "id": "docs_audit_16_deep_audit_summary_executed_commands_results" }, { "label": "Inspected Scopes", @@ -17862,10 +17927,11 @@ "source_file": "docs/audit/16-deep-audit-summary.md", "source_location": "L43", "_origin": "ast", - "id": "docs_audit_16_deep_audit_summary_inspected_scopes", "community": 100, "community_name": "Deep Audit Summary Report", - "norm_label": "inspected scopes" + "norm_label": "inspected scopes", + "node_kind": "heading", + "id": "docs_audit_16_deep_audit_summary_inspected_scopes" }, { "label": "04_architect.md", @@ -17873,10 +17939,11 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_agents_04_architect", "community": 101, "community_name": "Operational Rules & Boundaries", - "norm_label": "04_architect.md" + "norm_label": "04_architect.md", + "node_kind": "page", + "id": "ai_agency_agents_04_architect" }, { "label": "1. Stack Detection (Brownfield)", @@ -17884,10 +17951,11 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L20", "_origin": "ast", - "id": "ai_agency_agents_04_architect_1_stack_detection_brownfield", "community": 101, "community_name": "Operational Rules & Boundaries", - "norm_label": "1. stack detection (brownfield)" + "norm_label": "1. stack detection (brownfield)", + "node_kind": "heading", + "id": "ai_agency_agents_04_architect_1_stack_detection_brownfield" }, { "label": "2. Stack Selection (Greenfield)", @@ -17895,10 +17963,11 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L27", "_origin": "ast", - "id": "ai_agency_agents_04_architect_2_stack_selection_greenfield", "community": 101, "community_name": "Operational Rules & Boundaries", - "norm_label": "2. stack selection (greenfield)" + "norm_label": "2. stack selection (greenfield)", + "node_kind": "heading", + "id": "ai_agency_agents_04_architect_2_stack_selection_greenfield" }, { "label": "3. Single Non-Negotiable Stack Choice", @@ -17906,10 +17975,11 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L40", "_origin": "ast", - "id": "ai_agency_agents_04_architect_3_single_non_negotiable_stack_choice", "community": 101, "community_name": "Operational Rules & Boundaries", - "norm_label": "3. single non-negotiable stack choice" + "norm_label": "3. single non-negotiable stack choice", + "node_kind": "heading", + "id": "ai_agency_agents_04_architect_3_single_non_negotiable_stack_choice" }, { "label": "4. Tech Stack Must Be Written to state.json", @@ -17917,10 +17987,11 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L45", "_origin": "ast", - "id": "ai_agency_agents_04_architect_4_tech_stack_must_be_written_to_state_json", "community": 101, "community_name": "Operational Rules & Boundaries", - "norm_label": "4. tech stack must be written to state.json" + "norm_label": "4. tech stack must be written to state.json", + "node_kind": "heading", + "id": "ai_agency_agents_04_architect_4_tech_stack_must_be_written_to_state_json" }, { "label": "5. Directory Layout", @@ -17928,10 +17999,11 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L61", "_origin": "ast", - "id": "ai_agency_agents_04_architect_5_directory_layout", "community": 101, "community_name": "Operational Rules & Boundaries", - "norm_label": "5. directory layout" + "norm_label": "5. directory layout", + "node_kind": "heading", + "id": "ai_agency_agents_04_architect_5_directory_layout" }, { "label": "6. OpenAPI / API Contract", @@ -17939,10 +18011,11 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L65", "_origin": "ast", - "id": "ai_agency_agents_04_architect_6_openapi_api_contract", "community": 101, "community_name": "Operational Rules & Boundaries", - "norm_label": "6. openapi / api contract" + "norm_label": "6. openapi / api contract", + "node_kind": "heading", + "id": "ai_agency_agents_04_architect_6_openapi_api_contract" }, { "label": "7. Forbidden Actions", @@ -17950,10 +18023,11 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L71", "_origin": "ast", - "id": "ai_agency_agents_04_architect_7_forbidden_actions", "community": 101, "community_name": "Operational Rules & Boundaries", - "norm_label": "7. forbidden actions" + "norm_label": "7. forbidden actions", + "node_kind": "heading", + "id": "ai_agency_agents_04_architect_7_forbidden_actions" }, { "label": "Expected JSON Output Schema", @@ -17961,10 +18035,11 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L88", "_origin": "ast", - "id": "ai_agency_agents_04_architect_expected_json_output_schema", "community": 101, "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" + "norm_label": "expected json output schema", + "node_kind": "heading", + "id": "ai_agency_agents_04_architect_expected_json_output_schema" }, { "label": "Operational Rules & Boundaries", @@ -17972,10 +18047,11 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L18", "_origin": "ast", - "id": "ai_agency_agents_04_architect_operational_rules_boundaries", "community": 101, "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" + "norm_label": "operational rules & boundaries", + "node_kind": "heading", + "id": "ai_agency_agents_04_architect_operational_rules_boundaries" }, { "label": "Required Output Artifacts (What files to write/update)", @@ -17983,10 +18059,11 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L79", "_origin": "ast", - "id": "ai_agency_agents_04_architect_required_output_artifacts_what_files_to_write_update", "community": 101, "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" + "norm_label": "required output artifacts (what files to write/update)", + "node_kind": "heading", + "id": "ai_agency_agents_04_architect_required_output_artifacts_what_files_to_write_update" }, { "label": "Role & Core Objective", @@ -17994,10 +18071,11 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_agents_04_architect_role_core_objective", "community": 101, "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" + "norm_label": "role & core objective", + "node_kind": "heading", + "id": "ai_agency_agents_04_architect_role_core_objective" }, { "label": "Strict Input Specifications (What files to read)", @@ -18005,10 +18083,11 @@ "source_file": ".ai_agency/agents/04_architect.md", "source_location": "L9", "_origin": "ast", - "id": "ai_agency_agents_04_architect_strict_input_specifications_what_files_to_read", "community": 101, "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" + "norm_label": "strict input specifications (what files to read)", + "node_kind": "heading", + "id": "ai_agency_agents_04_architect_strict_input_specifications_what_files_to_read" }, { "label": "jest", @@ -18016,10 +18095,10 @@ "source_file": "backend/package.json", "source_location": "L79", "_origin": "ast", - "id": "backend_package_jest", "community": 102, "community_name": "jest", - "norm_label": "jest" + "norm_label": "jest", + "id": "backend_package_jest" }, { "label": "collectCoverageFrom", @@ -18027,10 +18106,10 @@ "source_file": "backend/package.json", "source_location": "L90", "_origin": "ast", - "id": "backend_package_jest_collectcoveragefrom", "community": 102, "community_name": "jest", - "norm_label": "collectcoveragefrom" + "norm_label": "collectcoveragefrom", + "id": "backend_package_jest_collectcoveragefrom" }, { "label": "coverageDirectory", @@ -18038,10 +18117,10 @@ "source_file": "backend/package.json", "source_location": "L93", "_origin": "ast", - "id": "backend_package_jest_coveragedirectory", "community": 102, "community_name": "jest", - "norm_label": "coveragedirectory" + "norm_label": "coveragedirectory", + "id": "backend_package_jest_coveragedirectory" }, { "label": "moduleFileExtensions", @@ -18049,10 +18128,10 @@ "source_file": "backend/package.json", "source_location": "L80", "_origin": "ast", - "id": "backend_package_jest_modulefileextensions", "community": 102, "community_name": "jest", - "norm_label": "modulefileextensions" + "norm_label": "modulefileextensions", + "id": "backend_package_jest_modulefileextensions" }, { "label": "rootDir", @@ -18060,10 +18139,10 @@ "source_file": "backend/package.json", "source_location": "L85", "_origin": "ast", - "id": "backend_package_jest_rootdir", "community": 102, "community_name": "jest", - "norm_label": "rootdir" + "norm_label": "rootdir", + "id": "backend_package_jest_rootdir" }, { "label": "testEnvironment", @@ -18071,10 +18150,10 @@ "source_file": "backend/package.json", "source_location": "L94", "_origin": "ast", - "id": "backend_package_jest_testenvironment", "community": 102, "community_name": "jest", - "norm_label": "testenvironment" + "norm_label": "testenvironment", + "id": "backend_package_jest_testenvironment" }, { "label": "testRegex", @@ -18082,10 +18161,10 @@ "source_file": "backend/package.json", "source_location": "L86", "_origin": "ast", - "id": "backend_package_jest_testregex", "community": 102, "community_name": "jest", - "norm_label": "testregex" + "norm_label": "testregex", + "id": "backend_package_jest_testregex" }, { "label": "transform", @@ -18093,10 +18172,10 @@ "source_file": "backend/package.json", "source_location": "L87", "_origin": "ast", - "id": "backend_package_jest_transform", "community": 102, "community_name": "jest", - "norm_label": "transform" + "norm_label": "transform", + "id": "backend_package_jest_transform" }, { "label": "^.+\\\\.(t|j)s$", @@ -18104,10 +18183,10 @@ "source_file": "backend/package.json", "source_location": "L88", "_origin": "ast", - "id": "backend_package_transform_t_j_s", "community": 102, "community_name": "jest", - "norm_label": "^.+\\\\.(t|j)s$" + "norm_label": "^.+\\\\.(t|j)s$", + "id": "backend_package_transform_t_j_s" }, { "label": "ts", @@ -18115,10 +18194,10 @@ "source_file": "backend/package.json", "source_location": "L80", "_origin": "ast", - "id": "backend_package_json_ref_ts", "community": 102, "community_name": "jest", - "norm_label": "ts" + "norm_label": "ts", + "id": "backend_package_json_ref_ts" }, { "label": "js", @@ -18126,10 +18205,10 @@ "source_file": "backend/package.json", "source_location": "L80", "_origin": "ast", - "id": "ref_js", "community": 102, "community_name": "jest", - "norm_label": "js" + "norm_label": "js", + "id": "ref_js" }, { "label": "json", @@ -18137,10 +18216,10 @@ "source_file": "backend/package.json", "source_location": "L80", "_origin": "ast", - "id": "ref_json", "community": 102, "community_name": "jest", - "norm_label": "json" + "norm_label": "json", + "id": "ref_json" }, { "label": "**/*.(t|j)s", @@ -18148,10 +18227,10 @@ "source_file": "backend/package.json", "source_location": "L90", "_origin": "ast", - "id": "ref_t_j_s", "community": 102, "community_name": "jest", - "norm_label": "**/*.(t|j)s" + "norm_label": "**/*.(t|j)s", + "id": "ref_t_j_s" }, { "label": "phase3.2-change-log.md", @@ -18159,10 +18238,11 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_phase3_2_change_log", "community": 103, "community_name": "Comprehensive Change Log", - "norm_label": "phase3.2-change-log.md" + "norm_label": "phase3.2-change-log.md", + "node_kind": "page", + "id": "docs_audit_phase3_2_change_log" }, { "label": "10. `TASK-VERIFY-001`", @@ -18170,10 +18250,11 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L109", "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_10_task_verify_001", "community": 103, "community_name": "Comprehensive Change Log", - "norm_label": "10. `task-verify-001`" + "norm_label": "10. `task-verify-001`", + "node_kind": "heading", + "id": "docs_audit_phase3_2_change_log_10_task_verify_001" }, { "label": "1. `TASK-SEC-001`", @@ -18181,10 +18262,11 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L10", "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_1_task_sec_001", "community": 103, "community_name": "Comprehensive Change Log", - "norm_label": "1. `task-sec-001`" + "norm_label": "1. `task-sec-001`", + "node_kind": "heading", + "id": "docs_audit_phase3_2_change_log_1_task_sec_001" }, { "label": "2. `TASK-SEC-002`", @@ -18192,10 +18274,11 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L21", "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_2_task_sec_002", "community": 103, "community_name": "Comprehensive Change Log", - "norm_label": "2. `task-sec-002`" + "norm_label": "2. `task-sec-002`", + "node_kind": "heading", + "id": "docs_audit_phase3_2_change_log_2_task_sec_002" }, { "label": "3. `TASK-SEC-003`", @@ -18203,10 +18286,11 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L32", "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_3_task_sec_003", "community": 103, "community_name": "Comprehensive Change Log", - "norm_label": "3. `task-sec-003`" + "norm_label": "3. `task-sec-003`", + "node_kind": "heading", + "id": "docs_audit_phase3_2_change_log_3_task_sec_003" }, { "label": "4. `TASK-FIN-001`", @@ -18214,10 +18298,11 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L43", "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_4_task_fin_001", "community": 103, "community_name": "Comprehensive Change Log", - "norm_label": "4. `task-fin-001`" + "norm_label": "4. `task-fin-001`", + "node_kind": "heading", + "id": "docs_audit_phase3_2_change_log_4_task_fin_001" }, { "label": "5. `TASK-BUILD-001`", @@ -18225,10 +18310,11 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L54", "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_5_task_build_001", "community": 103, "community_name": "Comprehensive Change Log", - "norm_label": "5. `task-build-001`" + "norm_label": "5. `task-build-001`", + "node_kind": "heading", + "id": "docs_audit_phase3_2_change_log_5_task_build_001" }, { "label": "6. `TASK-AUTH-001`", @@ -18236,10 +18322,11 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L65", "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_6_task_auth_001", "community": 103, "community_name": "Comprehensive Change Log", - "norm_label": "6. `task-auth-001`" + "norm_label": "6. `task-auth-001`", + "node_kind": "heading", + "id": "docs_audit_phase3_2_change_log_6_task_auth_001" }, { "label": "7. `TASK-FE-001`", @@ -18247,10 +18334,11 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L76", "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_7_task_fe_001", "community": 103, "community_name": "Comprehensive Change Log", - "norm_label": "7. `task-fe-001`" + "norm_label": "7. `task-fe-001`", + "node_kind": "heading", + "id": "docs_audit_phase3_2_change_log_7_task_fe_001" }, { "label": "8. `TASK-DEVOPS-001`", @@ -18258,10 +18346,11 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L87", "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_8_task_devops_001", "community": 103, "community_name": "Comprehensive Change Log", - "norm_label": "8. `task-devops-001`" + "norm_label": "8. `task-devops-001`", + "node_kind": "heading", + "id": "docs_audit_phase3_2_change_log_8_task_devops_001" }, { "label": "9. `TASK-DOC-001`", @@ -18269,10 +18358,11 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L98", "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_9_task_doc_001", "community": 103, "community_name": "Comprehensive Change Log", - "norm_label": "9. `task-doc-001`" + "norm_label": "9. `task-doc-001`", + "node_kind": "heading", + "id": "docs_audit_phase3_2_change_log_9_task_doc_001" }, { "label": "Comprehensive Change Log", @@ -18280,10 +18370,11 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L8", "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_comprehensive_change_log", "community": 103, "community_name": "Comprehensive Change Log", - "norm_label": "comprehensive change log" + "norm_label": "comprehensive change log", + "node_kind": "heading", + "id": "docs_audit_phase3_2_change_log_comprehensive_change_log" }, { "label": "Phase 3.2 \u2014 Implementation Readiness Change Log", @@ -18291,10 +18382,11 @@ "source_file": "docs/audit/phase3.2-change-log.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log", "community": 103, "community_name": "Comprehensive Change Log", - "norm_label": "phase 3.2 \u2014 implementation readiness change log" + "norm_label": "phase 3.2 \u2014 implementation readiness change log", + "node_kind": "heading", + "id": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log" }, { "label": "PriceInput.tsx", @@ -18302,10 +18394,10 @@ "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_priceinput", "community": 104, "community_name": "Coupons.tsx", - "norm_label": "priceinput.tsx" + "norm_label": "priceinput.tsx", + "id": "frontend_admin_panel_src_components_ui_priceinput" }, { "label": "Coupons.tsx", @@ -18313,10 +18405,10 @@ "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_coupons", "community": 104, "community_name": "Coupons.tsx", - "norm_label": "coupons.tsx" + "norm_label": "coupons.tsx", + "id": "frontend_admin_panel_src_pages_coupons" }, { "label": "FinancialSettingsPage.tsx", @@ -18324,21 +18416,10 @@ "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_financialsettingspage", "community": 104, "community_name": "Coupons.tsx", - "norm_label": "financialsettingspage.tsx" - }, - { - "label": "ShippingSettingsPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_shippingsettingspage", - "community": 104, - "community_name": "Coupons.tsx", - "norm_label": "shippingsettingspage.tsx" + "norm_label": "financialsettingspage.tsx", + "id": "frontend_admin_panel_src_pages_financialsettingspage" }, { "label": "Coupons", @@ -18346,10 +18427,10 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L14", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_coupons", "community": 104, "community_name": "Coupons.tsx", - "norm_label": "coupons" + "norm_label": "coupons", + "id": "frontend_admin_panel_src_routes_adminroutes_coupons" }, { "label": "FinancialSettingsPage", @@ -18357,21 +18438,10 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L34", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", "community": 104, "community_name": "Coupons.tsx", - "norm_label": "financialsettingspage" - }, - { - "label": "ShippingSettingsPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L37", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_shippingsettingspage", - "community": 104, - "community_name": "Coupons.tsx", - "norm_label": "shippingsettingspage" + "norm_label": "financialsettingspage", + "id": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage" }, { "label": "07_qa_engineer.md", @@ -18379,10 +18449,11 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer", "community": 105, "community_name": "Operational Rules & Boundaries", - "norm_label": "07_qa_engineer.md" + "norm_label": "07_qa_engineer.md", + "node_kind": "page", + "id": "ai_agency_agents_07_qa_engineer" }, { "label": "1. Detect Test Runner from Tech Stack", @@ -18390,10 +18461,11 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L18", "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_1_detect_test_runner_from_tech_stack", "community": 105, "community_name": "Operational Rules & Boundaries", - "norm_label": "1. detect test runner from tech stack" + "norm_label": "1. detect test runner from tech stack", + "node_kind": "heading", + "id": "ai_agency_agents_07_qa_engineer_1_detect_test_runner_from_tech_stack" }, { "label": "2. Execution Output Capture (Mandatory)", @@ -18401,10 +18473,11 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L33", "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_2_execution_output_capture_mandatory", "community": 105, "community_name": "Operational Rules & Boundaries", - "norm_label": "2. execution output capture (mandatory)" + "norm_label": "2. execution output capture (mandatory)", + "node_kind": "heading", + "id": "ai_agency_agents_07_qa_engineer_2_execution_output_capture_mandatory" }, { "label": "3. Acceptance Criteria Verification", @@ -18412,10 +18485,11 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L41", "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_3_acceptance_criteria_verification", "community": 105, "community_name": "Operational Rules & Boundaries", - "norm_label": "3. acceptance criteria verification" + "norm_label": "3. acceptance criteria verification", + "node_kind": "heading", + "id": "ai_agency_agents_07_qa_engineer_3_acceptance_criteria_verification" }, { "label": "4. Failure Routing Protocol", @@ -18423,10 +18497,11 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L48", "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_4_failure_routing_protocol", "community": 105, "community_name": "Operational Rules & Boundaries", - "norm_label": "4. failure routing protocol" + "norm_label": "4. failure routing protocol", + "node_kind": "heading", + "id": "ai_agency_agents_07_qa_engineer_4_failure_routing_protocol" }, { "label": "5. Success Routing Protocol", @@ -18434,10 +18509,11 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L64", "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_5_success_routing_protocol", "community": 105, "community_name": "Operational Rules & Boundaries", - "norm_label": "5. success routing protocol" + "norm_label": "5. success routing protocol", + "node_kind": "heading", + "id": "ai_agency_agents_07_qa_engineer_5_success_routing_protocol" }, { "label": "6. Forbidden Actions", @@ -18445,10 +18521,11 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L74", "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_6_forbidden_actions", "community": 105, "community_name": "Operational Rules & Boundaries", - "norm_label": "6. forbidden actions" + "norm_label": "6. forbidden actions", + "node_kind": "heading", + "id": "ai_agency_agents_07_qa_engineer_6_forbidden_actions" }, { "label": "Expected JSON Output Schema", @@ -18456,10 +18533,11 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L91", "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_expected_json_output_schema", "community": 105, "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" + "norm_label": "expected json output schema", + "node_kind": "heading", + "id": "ai_agency_agents_07_qa_engineer_expected_json_output_schema" }, { "label": "Operational Rules & Boundaries", @@ -18467,10 +18545,11 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L16", "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", "community": 105, "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" + "norm_label": "operational rules & boundaries", + "node_kind": "heading", + "id": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries" }, { "label": "Required Output Artifacts (What files to write/update)", @@ -18478,10 +18557,11 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L82", "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_required_output_artifacts_what_files_to_write_update", "community": 105, "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" + "norm_label": "required output artifacts (what files to write/update)", + "node_kind": "heading", + "id": "ai_agency_agents_07_qa_engineer_required_output_artifacts_what_files_to_write_update" }, { "label": "Role & Core Objective", @@ -18489,10 +18569,11 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_role_core_objective", "community": 105, "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" + "norm_label": "role & core objective", + "node_kind": "heading", + "id": "ai_agency_agents_07_qa_engineer_role_core_objective" }, { "label": "Strict Input Specifications (What files to read)", @@ -18500,3343 +18581,11 @@ "source_file": ".ai_agency/agents/07_qa_engineer.md", "source_location": "L7", "_origin": "ast", - "id": "ai_agency_agents_07_qa_engineer_strict_input_specifications_what_files_to_read", "community": 105, "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "Reports.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports", - "community": 106, - "community_name": "Reports.tsx", - "norm_label": "reports.tsx" - }, - { - "label": "COLORS", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reports_colors", - "community": 106, - "community_name": "Reports.tsx", - "norm_label": "colors" - }, - { - "label": "Reports", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L16", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_reports", - "community": 106, - "community_name": "Reports.tsx", - "norm_label": "reports" - }, - { - "label": "@types/supertest", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L62", - "_origin": "ast", - "id": "backend_package_devdependencies_types_supertest", - "community": 107, - "community_name": "@types/supertest", - "norm_label": "@types/supertest" - }, - { - "label": "@types/supertest", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L62", - "_origin": "ast", - "id": "types_supertest", - "community": 107, - "community_name": "@types/supertest", - "norm_label": "@types/supertest" - }, - { - "label": "admin.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_admin_service_spec", - "community": 108, - "community_name": "PrismaService", - "norm_label": "admin.service.spec.ts" - }, - { - "label": "admin/pets.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_pets_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "admin/pets.service.ts" - }, - { - "label": "admin/wiki.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_wiki_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "admin/wiki.service.ts" - }, - { - "label": "auth.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/auth/auth.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_auth_service_spec", - "community": 108, - "community_name": "PrismaService", - "norm_label": "auth.service.spec.ts" - }, - { - "label": "banners.service.ts", - "file_type": "code", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_banners_banners_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "banners.service.ts" - }, - { - "label": "metrics.controller.ts", - "file_type": "code", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_metrics_controller", - "community": 108, - "community_name": "PrismaService", - "norm_label": "metrics.controller.ts" - }, - { - "label": "sms.service.ts", - "file_type": "code", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_services_sms_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "sms.service.ts" - }, - { - "label": "contact.service.ts", - "file_type": "code", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_contact_contact_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "contact.service.ts" - }, - { - "label": "ingredients.service.ts", - "file_type": "code", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "ingredients.service.ts" - }, - { - "label": "menu.service.ts", - "file_type": "code", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_menu_menu_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "menu.service.ts" - }, - { - "label": "orders.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/orders/orders.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_orders_orders_service_spec", - "community": 108, - "community_name": "PrismaService", - "norm_label": "orders.service.spec.ts" - }, - { - "label": "payment.service.ts", - "file_type": "code", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_payment_payment_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "payment.service.ts" - }, - { - "label": "zibal-ebank.service.ts", - "file_type": "code", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "zibal-ebank.service.ts" - }, - { - "label": "pets.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_pets_pets_service_spec", - "community": 108, - "community_name": "PrismaService", - "norm_label": "pets.service.spec.ts" - }, - { - "label": "prescriptions.service.ts", - "file_type": "code", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "prescriptions.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_service_ts_injectable", - "community": 108, - "community_name": "PrismaService", - "norm_label": "injectable" - }, - { - "label": "prisma.service.ts", - "file_type": "code", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_prisma_prisma_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "prisma.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prisma_prisma_service_ts_injectable", - "community": 108, - "community_name": "PrismaService", - "norm_label": "injectable" - }, - { - "label": "redis.service.ts", - "file_type": "code", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_redis_redis_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "redis.service.ts" - }, - { - "label": "default-ui-texts.ts", - "file_type": "code", - "source_file": "backend/src/settings/default-ui-texts.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_settings_default_ui_texts", - "community": 108, - "community_name": "PrismaService", - "norm_label": "default-ui-texts.ts" - }, - { - "label": "DEFAULT_UI_TEXTS", - "file_type": "code", - "source_file": "backend/src/settings/default-ui-texts.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_settings_default_ui_texts_default_ui_texts", - "community": 108, - "community_name": "PrismaService", - "norm_label": "default_ui_texts" - }, - { - "label": "settings.service.ts", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_settings_settings_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "settings.service.ts" - }, - { - "label": "CANONICAL_ALIASES", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L13", - "_origin": "ast", - "id": "backend_src_settings_settings_service_canonical_aliases", - "community": 108, - "community_name": "PrismaService", - "norm_label": "canonical_aliases" - }, - { - "label": "settings.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/settings/settings.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_settings_settings_service_spec", - "community": 108, - "community_name": "PrismaService", - "norm_label": "settings.service.spec.ts" - }, - { - "label": "smart-advisor.service.ts", - "file_type": "code", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "smart-advisor.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_service_ts_injectable", - "community": 108, - "community_name": "PrismaService", - "norm_label": "injectable" - }, - { - "label": "testimonials.service.ts", - "file_type": "code", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "testimonials.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_service_ts_injectable", - "community": 108, - "community_name": "PrismaService", - "norm_label": "injectable" - }, - { - "label": "users.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/users/users.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_users_users_service_spec", - "community": 108, - "community_name": "PrismaService", - "norm_label": "users.service.spec.ts" - }, - { - "label": "videos.service.ts", - "file_type": "code", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_videos_videos_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "videos.service.ts" - }, - { - "label": "wholesale.service.ts", - "file_type": "code", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_service", - "community": 108, - "community_name": "PrismaService", - "norm_label": "wholesale.service.ts" - }, - { - "label": "26-phase2-integrity-repair-report.md", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report", - "community": 109, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "26-phase2-integrity-repair-report.md" - }, - { - "label": "1.1 Authoritative Source File Inventory Rebuilt", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L12", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_1_1_authoritative_source_file_inventory_rebuilt", - "community": 109, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "1.1 authoritative source file inventory rebuilt" - }, - { - "label": "1.2 Raw Finding Dispositions Reconciled", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L18", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_1_2_raw_finding_dispositions_reconciled", - "community": 109, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "1.2 raw finding dispositions reconciled" - }, - { - "label": "1.3 Finding Identifier Normalization", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L27", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_1_3_finding_identifier_normalization", - "community": 109, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "1.3 finding identifier normalization" - }, - { - "label": "1.4 Rejected Finding Cleanup", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L34", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_1_4_rejected_finding_cleanup", - "community": 109, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "1.4 rejected finding cleanup" - }, - { - "label": "1. Summary of Integrity Repairs Performed", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L10", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", - "community": 109, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "1. summary of integrity repairs performed" - }, - { - "label": "2. Final Verified Finding Metrics", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L39", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics", - "community": 109, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "2. final verified finding metrics" - }, - { - "label": "3. Reference and Compiler Integrity Results", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L57", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_3_reference_and_compiler_integrity_results", - "community": 109, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "3. reference and compiler integrity results" - }, - { - "label": "4. Quality Gate Conclusion", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L64", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_4_quality_gate_conclusion", - "community": 109, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "4. quality gate conclusion" - }, - { - "label": "By Confidence", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L49", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_by_confidence", - "community": 109, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "by confidence" - }, - { - "label": "By Severity", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L41", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_by_severity", - "community": 109, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "by severity" - }, - { - "label": "Phase 2.6 Integrity Repair & Audit Quality Gate Report", - "file_type": "document", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", - "community": 109, - "community_name": "1. Summary of Integrity Repairs Performed", - "norm_label": "phase 2.6 integrity repair & audit quality gate report" - }, - { - "label": "ConfirmModal.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_confirmmodal", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "confirmmodal.tsx" - }, - { - "label": "MediaSelector.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_mediaselector", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "mediaselector.tsx" - }, - { - "label": "Modal.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_modal", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "modal.tsx" - }, - { - "label": "maxWidthClasses", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", - "source_location": "L16", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_modal_maxwidthclasses", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "maxwidthclasses" - }, - { - "label": "Pagination.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_pagination", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "pagination.tsx" - }, - { - "label": "Spinner.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_spinner", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "spinner.tsx" - }, - { - "label": "BannersManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_bannersmanager", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "bannersmanager.tsx" - }, - { - "label": "Categories.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_categories", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "categories.tsx" - }, - { - "label": "DoctorsManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_doctorsmanager", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "doctorsmanager.tsx" - }, - { - "label": "FAQManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_faqmanager", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "faqmanager.tsx" - }, - { - "label": "IngredientsManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_ingredientsmanager", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "ingredientsmanager.tsx" - }, - { - "label": "Media.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_media", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "media.tsx" - }, - { - "label": "Pets.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_pets", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "pets.tsx" - }, - { - "label": "Products.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_products", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "products.tsx" - }, - { - "label": "SslSettingsPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_sslsettingspage", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "sslsettingspage.tsx" - }, - { - "label": "TestimonialsManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_testimonialsmanager", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "testimonialsmanager.tsx" - }, - { - "label": "Videos.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_videos", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "videos.tsx" - }, - { - "label": "Wiki.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wiki", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "wiki.tsx" - }, - { - "label": "FAQManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L45", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_faqmanager", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "faqmanager" - }, - { - "label": "Videos", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L25", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_videos", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "videos" - }, - { - "label": "Wiki", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L19", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_wiki", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "wiki" - }, - { - "label": "BASE_DOMAIN", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L7", - "_origin": "ast", - "id": "frontend_admin_panel_src_services_api_base_domain", - "community": 11, - "community_name": "Spinner.tsx", - "norm_label": "base_domain" - }, - { - "label": "01_auditor.md", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor", - "community": 110, - "community_name": "Operational Rules & Boundaries", - "norm_label": "01_auditor.md" - }, - { - "label": "1. Detect Tech Stack First (Universal)", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L19", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_1_detect_tech_stack_first_universal", - "community": 110, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. detect tech stack first (universal)" - }, - { - "label": "2. Explicit Scoring Methodology (Universal)", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L30", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_2_explicit_scoring_methodology_universal", - "community": 110, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. explicit scoring methodology (universal)" - }, - { - "label": "3. Code Coverage Ratio Rule", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L47", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_3_code_coverage_ratio_rule", - "community": 110, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. code coverage ratio rule" - }, - { - "label": "4. Deep Directory Scanning", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L54", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_4_deep_directory_scanning", - "community": 110, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. deep directory scanning" - }, - { - "label": "5. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L58", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_5_forbidden_actions", - "community": 110, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. forbidden actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L74", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_expected_json_output_schema", - "community": 110, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L17", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "community": 110, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L66", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_required_output_artifacts_what_files_to_write_update", - "community": 110, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_role_core_objective", - "community": 110, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L7", - "_origin": "ast", - "id": "ai_agency_agents_01_auditor_strict_input_specifications_what_files_to_read", - "community": 110, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "10_tech_writer.md", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer", - "community": 111, - "community_name": "Operational Rules & Boundaries", - "norm_label": "10_tech_writer.md" - }, - { - "label": "1. Mark Active Task as Complete", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L23", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_1_mark_active_task_as_complete", - "community": 111, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. mark active task as complete" - }, - { - "label": "2. Documentation Updates", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L30", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_2_documentation_updates", - "community": 111, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. documentation updates" - }, - { - "label": "3. Dynamic Routing Protocol (CRITICAL)", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L44", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_3_dynamic_routing_protocol_critical", - "community": 111, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. dynamic routing protocol (critical)" - }, - { - "label": "4. Backlog Insufficiency Check", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L72", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_4_backlog_insufficiency_check", - "community": 111, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. backlog insufficiency check" - }, - { - "label": "5. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L77", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_5_forbidden_actions", - "community": 111, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. forbidden actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L96", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_expected_json_output_schema", - "community": 111, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L21", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", - "community": 111, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L84", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_required_output_artifacts_what_files_to_write_update", - "community": 111, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_role_core_objective", - "community": 111, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L11", - "_origin": "ast", - "id": "ai_agency_agents_10_tech_writer_strict_input_specifications_what_files_to_read", - "community": 111, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "11_deploy.md", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy", - "community": 112, - "community_name": "Operational Rules & Boundaries", - "norm_label": "11_deploy.md" - }, - { - "label": "1. Pre-Deployment Checklist", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L22", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_1_pre_deployment_checklist", - "community": 112, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. pre-deployment checklist" - }, - { - "label": "2. Build Verification", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L37", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_2_build_verification", - "community": 112, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. build verification" - }, - { - "label": "3. Deployment Strategy (Based on Target)", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L52", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_3_deployment_strategy_based_on_target", - "community": 112, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. deployment strategy (based on target)" - }, - { - "label": "4. Post-Deployment Health Check", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L75", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_4_post_deployment_health_check", - "community": 112, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. post-deployment health check" - }, - { - "label": "5. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L82", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_5_forbidden_actions", - "community": 112, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. forbidden actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L102", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_expected_json_output_schema", - "community": 112, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L20", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "community": 112, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L90", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_required_output_artifacts_what_files_to_write_update", - "community": 112, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_role_core_objective", - "community": 112, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L9", - "_origin": "ast", - "id": "ai_agency_agents_11_deploy_strict_input_specifications_what_files_to_read", - "community": 112, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "create-review.dto.ts", - "file_type": "code", - "source_file": "backend/src/reviews/dto/create-review.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_reviews_dto_create_review_dto", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": "create-review.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_dto_create_review_dto_ts_apiproperty", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": "apiproperty" - }, - { - "label": "IsInt", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_dto_create_review_dto_ts_isint", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": "isint" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_dto_create_review_dto_ts_isnotempty", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_dto_create_review_dto_ts_isoptional", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_dto_create_review_dto_ts_isstring", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": "isstring" - }, - { - "label": "Min", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_dto_create_review_dto_ts_min", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": "min" - }, - { - "label": "update-review.dto.ts", - "file_type": "code", - "source_file": "backend/src/reviews/dto/update-review.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_reviews_dto_update_review_dto", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": "update-review.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_dto_update_review_dto_ts_apiproperty", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": "apiproperty" - }, - { - "label": "IsIn", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_dto_update_review_dto_ts_isin", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": "isin" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_dto_update_review_dto_ts_isoptional", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_reviews_dto_update_review_dto_ts_isstring", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": "isstring" - }, - { - "label": "reviews.controller.ts", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_reviews_reviews_controller", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": "reviews.controller.ts" - }, - { - "label": "reviews.service.ts", - "file_type": "code", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_reviews_reviews_service", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": "reviews.service.ts" - }, - { - "label": "Max", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "max", - "community": 113, - "community_name": "reviews.controller.ts", - "norm_label": "max" - }, - { - "label": "app.controller.ts", - "file_type": "code", - "source_file": "backend/src/app.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_app_controller", - "community": 114, - "community_name": "AppService", - "norm_label": "app.controller.ts" - }, - { - "label": "app.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/app.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_app_controller_spec", - "community": 114, - "community_name": "AppService", - "norm_label": "app.controller.spec.ts" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_app_controller_ts_controller", - "community": 114, - "community_name": "AppService", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_app_controller_ts_get", - "community": 114, - "community_name": "AppService", - "norm_label": "get" - }, - { - "label": "app.service.ts", - "file_type": "code", - "source_file": "backend/src/app.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_app_service", - "community": 114, - "community_name": "AppService", - "norm_label": "app.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_app_service_ts_injectable", - "community": 114, - "community_name": "AppService", - "norm_label": "injectable" - }, - { - "label": "@types/react-dom", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L27", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_types_react_dom", - "community": 115, - "community_name": "@types/react-dom", - "norm_label": "@types/react-dom" - }, - { - "label": "@types/react-dom", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L27", - "_origin": "ast", - "id": "frontend_application_package_json_types_react_dom", - "community": 115, - "community_name": "@types/react-dom", - "norm_label": "@types/react-dom" - }, - { - "label": "vazirmatn-v33.003/CHANGELOG.md", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog", - "community": 116, - "community_name": "Vazirmatn Changelog", - "norm_label": "vazirmatn-v33.003/changelog.md" - }, - { - "label": "32.0.0", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L85", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_0_0", - "community": 116, - "community_name": "Vazirmatn Changelog", - "norm_label": "32.0.0" - }, - { - "label": "32.1", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L77", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_1", - "community": 116, - "community_name": "Vazirmatn Changelog", - "norm_label": "32.1" - }, - { - "label": "32.101", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L69", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_101", - "community": 116, - "community_name": "Vazirmatn Changelog", - "norm_label": "32.101" - }, - { - "label": "32.102", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L57", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_102", - "community": 116, - "community_name": "Vazirmatn Changelog", - "norm_label": "32.102" - }, - { - "label": "33.000", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L31", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_000", - "community": 116, - "community_name": "Vazirmatn Changelog", - "norm_label": "33.000" - }, - { - "label": "33.001", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L23", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_001", - "community": 116, - "community_name": "Vazirmatn Changelog", - "norm_label": "33.001" - }, - { - "label": "33.002", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L11", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_002", - "community": 116, - "community_name": "Vazirmatn Changelog", - "norm_label": "33.002" - }, - { - "label": "33.003", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L3", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_003", - "community": 116, - "community_name": "Vazirmatn Changelog", - "norm_label": "33.003" - }, - { - "label": "Old Vazir Changelog", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L158", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_old_vazir_changelog", - "community": 116, - "community_name": "Vazirmatn Changelog", - "norm_label": "old vazir changelog" - }, - { - "label": "Vazirmatn Changelog", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "community": 116, - "community_name": "Vazirmatn Changelog", - "norm_label": "vazirmatn changelog" - }, - { - "label": "vazirmatn-v33.003/README.md", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme", - "community": 117, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "vazirmatn-v33.003/readme.md" - }, - { - "label": "Arch Linux ([AUR](https://aur.archlinux.org/packages/vazirmatn-fonts))", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L41", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_arch_linux_aur_https_aur_archlinux_org_packages_vazirmatn_fonts", - "community": 117, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "arch linux ([aur](https://aur.archlinux.org/packages/vazirmatn-fonts))" - }, - { - "label": "Authors", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L60", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_authors", - "community": 117, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "authors" - }, - { - "label": "Build", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L46", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_build", - "community": 117, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "build" - }, - { - "label": "CDN", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L27", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_cdn", - "community": 117, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "cdn" - }, - { - "label": "Download", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L11", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_download", - "community": 117, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "download" - }, - { - "label": "Install", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L9", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", - "community": 117, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "install" - }, - { - "label": "License", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L57", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_license", - "community": 117, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "license" - }, - { - "label": "[npm](https://www.npmjs.com/package/vazirmatn)", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_npm_https_www_npmjs_com_package_vazirmatn", - "community": 117, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "[npm](https://www.npmjs.com/package/vazirmatn)" - }, - { - "label": "Thank you", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L50", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_thank_you", - "community": 117, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "thank you" - }, - { - "label": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "community": 117, - "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "norm_label": "vazirmatn font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646" - }, - { - "label": "02_ceo.md", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo", - "community": 118, - "community_name": "Operational Rules & Boundaries", - "norm_label": "02_ceo.md" - }, - { - "label": "1. Mode & Direction Decision", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L17", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_1_mode_direction_decision", - "community": 118, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. mode & direction decision" - }, - { - "label": "2. Brownfield Strategic Evaluation", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L25", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_2_brownfield_strategic_evaluation", - "community": 118, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. brownfield strategic evaluation" - }, - { - "label": "3. Risk Assessment", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L32", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_3_risk_assessment", - "community": 118, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. risk assessment" - }, - { - "label": "4. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L39", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_4_forbidden_actions", - "community": 118, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. forbidden actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L56", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_expected_json_output_schema", - "community": 118, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L15", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_operational_rules_boundaries", - "community": 118, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L47", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_required_output_artifacts_what_files_to_write_update", - "community": 118, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_role_core_objective", - "community": 118, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L7", - "_origin": "ast", - "id": "ai_agency_agents_02_ceo_strict_input_specifications_what_files_to_read", - "community": 118, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "prisma/tsconfig.json", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L1", - "_origin": "ast", - "id": "backend_prisma_tsconfig", - "community": 119, - "community_name": "compilerOptions", - "norm_label": "prisma/tsconfig.json" - }, - { - "label": "compilerOptions", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L2", - "_origin": "ast", - "id": "backend_prisma_tsconfig_compileroptions", - "community": 119, - "community_name": "compilerOptions", - "norm_label": "compileroptions" - }, - { - "label": "esModuleInterop", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L5", - "_origin": "ast", - "id": "backend_prisma_tsconfig_compileroptions_esmoduleinterop", - "community": 119, - "community_name": "compilerOptions", - "norm_label": "esmoduleinterop" - }, - { - "label": "module", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L3", - "_origin": "ast", - "id": "backend_prisma_tsconfig_compileroptions_module", - "community": 119, - "community_name": "compilerOptions", - "norm_label": "module" - }, - { - "label": "moduleResolution", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L4", - "_origin": "ast", - "id": "backend_prisma_tsconfig_compileroptions_moduleresolution", - "community": 119, - "community_name": "compilerOptions", - "norm_label": "moduleresolution" - }, - { - "label": "skipLibCheck", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L6", - "_origin": "ast", - "id": "backend_prisma_tsconfig_compileroptions_skiplibcheck", - "community": 119, - "community_name": "compilerOptions", - "norm_label": "skiplibcheck" - }, - { - "label": "types", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L7", - "_origin": "ast", - "id": "backend_prisma_tsconfig_compileroptions_types", - "community": 119, - "community_name": "compilerOptions", - "norm_label": "types" - }, - { - "label": "include", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L9", - "_origin": "ast", - "id": "backend_prisma_tsconfig_include", - "community": 119, - "community_name": "compilerOptions", - "norm_label": "include" - }, - { - "label": "node", - "file_type": "concept", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L7", - "_origin": "ast", - "id": "backend_prisma_tsconfig_json_ref_node", - "community": 119, - "community_name": "compilerOptions", - "norm_label": "node" - }, - { - "label": "./**/*.ts", - "file_type": "concept", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L9", - "_origin": "ast", - "id": "backend_prisma_tsconfig_json_ref_ts", - "community": 119, - "community_name": "compilerOptions", - "norm_label": "./**/*.ts" - }, - { - "label": "loading.tsx", - "file_type": "code", - "source_file": "frontend/application/app/loading.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_loading", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "loading.tsx" - }, - { - "label": "FeaturedProducts.tsx", - "file_type": "code", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_featuredproducts", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "featuredproducts.tsx" - }, - { - "label": "PetProfile.tsx", - "file_type": "code", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_petprofile", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "petprofile.tsx" - }, - { - "label": "components/Skeleton.tsx", - "file_type": "code", - "source_file": "frontend/application/components/Skeleton.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_skeleton", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "components/skeleton.tsx" - }, - { - "label": "FeaturedProducts.test.tsx", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_tests_featuredproducts_test", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "featuredproducts.test.tsx" - }, - { - "label": "mockProducts", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", - "source_location": "L19", - "_origin": "ast", - "id": "frontend_application_components_tests_featuredproducts_test_mockproducts", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "mockproducts" - }, - { - "label": "usePetStore.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_store_usepetstore", - "community": 12, - "community_name": "PetProfile.tsx", - "norm_label": "usepetstore.ts" - }, - { - "label": "tsconfig.seed.json", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L1", - "_origin": "ast", - "id": "backend_prisma_tsconfig_seed", - "community": 120, - "community_name": "compilerOptions", - "norm_label": "tsconfig.seed.json" - }, - { - "label": "compilerOptions", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L2", - "_origin": "ast", - "id": "backend_prisma_tsconfig_seed_compileroptions", - "community": 120, - "community_name": "compilerOptions", - "norm_label": "compileroptions" - }, - { - "label": "esModuleInterop", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L5", - "_origin": "ast", - "id": "backend_prisma_tsconfig_seed_compileroptions_esmoduleinterop", - "community": 120, - "community_name": "compilerOptions", - "norm_label": "esmoduleinterop" - }, - { - "label": "module", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L3", - "_origin": "ast", - "id": "backend_prisma_tsconfig_seed_compileroptions_module", - "community": 120, - "community_name": "compilerOptions", - "norm_label": "module" - }, - { - "label": "moduleResolution", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L4", - "_origin": "ast", - "id": "backend_prisma_tsconfig_seed_compileroptions_moduleresolution", - "community": 120, - "community_name": "compilerOptions", - "norm_label": "moduleresolution" - }, - { - "label": "skipLibCheck", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L6", - "_origin": "ast", - "id": "backend_prisma_tsconfig_seed_compileroptions_skiplibcheck", - "community": 120, - "community_name": "compilerOptions", - "norm_label": "skiplibcheck" - }, - { - "label": "types", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L7", - "_origin": "ast", - "id": "backend_prisma_tsconfig_seed_compileroptions_types", - "community": 120, - "community_name": "compilerOptions", - "norm_label": "types" - }, - { - "label": "include", - "file_type": "code", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L9", - "_origin": "ast", - "id": "backend_prisma_tsconfig_seed_include", - "community": 120, - "community_name": "compilerOptions", - "norm_label": "include" - }, - { - "label": "node", - "file_type": "concept", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L7", - "_origin": "ast", - "id": "backend_prisma_tsconfig_seed_json_ref_node", - "community": 120, - "community_name": "compilerOptions", - "norm_label": "node" - }, - { - "label": "./**/*.ts", - "file_type": "concept", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L9", - "_origin": "ast", - "id": "backend_prisma_tsconfig_seed_json_ref_ts", - "community": 120, - "community_name": "compilerOptions", - "norm_label": "./**/*.ts" - }, - { - "label": "backend/README.md", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "backend_readme", - "community": 121, - "community_name": "backend/README.md", - "norm_label": "backend/readme.md" - }, - { - "label": "Compile and run the project", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L34", - "_origin": "ast", - "id": "backend_readme_compile_and_run_the_project", - "community": 121, - "community_name": "backend/README.md", - "norm_label": "compile and run the project" - }, - { - "label": "Deployment", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L60", - "_origin": "ast", - "id": "backend_readme_deployment", - "community": 121, - "community_name": "backend/README.md", - "norm_label": "deployment" - }, - { - "label": "Description", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L24", - "_origin": "ast", - "id": "backend_readme_description", - "community": 121, - "community_name": "backend/README.md", - "norm_label": "description" - }, - { - "label": "License", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L96", - "_origin": "ast", - "id": "backend_readme_license", - "community": 121, - "community_name": "backend/README.md", - "norm_label": "license" - }, - { - "label": "Project setup", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L28", - "_origin": "ast", - "id": "backend_readme_project_setup", - "community": 121, - "community_name": "backend/README.md", - "norm_label": "project setup" - }, - { - "label": "Resources", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L73", - "_origin": "ast", - "id": "backend_readme_resources", - "community": 121, - "community_name": "backend/README.md", - "norm_label": "resources" - }, - { - "label": "Run tests", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L47", - "_origin": "ast", - "id": "backend_readme_run_tests", - "community": 121, - "community_name": "backend/README.md", - "norm_label": "run tests" - }, - { - "label": "Stay in touch", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L90", - "_origin": "ast", - "id": "backend_readme_stay_in_touch", - "community": 121, - "community_name": "backend/README.md", - "norm_label": "stay in touch" - }, - { - "label": "Support", - "file_type": "document", - "source_file": "backend/README.md", - "source_location": "L86", - "_origin": "ast", - "id": "backend_readme_support", - "community": 121, - "community_name": "backend/README.md", - "norm_label": "support" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_service_ts_injectable", - "community": 123, - "community_name": "BlogsService", - "norm_label": "injectable" - }, - { - "label": "00-repository-map.md", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_00_repository_map", - "community": 124, - "community_name": "Repository Map", - "norm_label": "00-repository-map.md" - }, - { - "label": "1. Active Customer Storefront: React 19 + Vite Application", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L17", - "_origin": "ast", - "id": "docs_audit_00_repository_map_1_active_customer_storefront_react_19_vite_application", - "community": 124, - "community_name": "Repository Map", - "norm_label": "1. active customer storefront: react 19 + vite application" - }, - { - "label": "2. Active Backend Service: NestJS Application", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L23", - "_origin": "ast", - "id": "docs_audit_00_repository_map_2_active_backend_service_nestjs_application", - "community": 124, - "community_name": "Repository Map", - "norm_label": "2. active backend service: nestjs application" - }, - { - "label": "3. Excluded Placeholder / Non-Auditable Directories", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L29", - "_origin": "ast", - "id": "docs_audit_00_repository_map_3_excluded_placeholder_non_auditable_directories", - "community": 124, - "community_name": "Repository Map", - "norm_label": "3. excluded placeholder / non-auditable directories" - }, - { - "label": "Active Applications & Non-Auditable Scopes", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L15", - "_origin": "ast", - "id": "docs_audit_00_repository_map_active_applications_non_auditable_scopes", - "community": 124, - "community_name": "Repository Map", - "norm_label": "active applications & non-auditable scopes" - }, - { - "label": "Documentation Governance", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L61", - "_origin": "ast", - "id": "docs_audit_00_repository_map_documentation_governance", - "community": 124, - "community_name": "Repository Map", - "norm_label": "documentation governance" - }, - { - "label": "Important Configuration & Infrastructure Files", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L50", - "_origin": "ast", - "id": "docs_audit_00_repository_map_important_configuration_infrastructure_files", - "community": 124, - "community_name": "Repository Map", - "norm_label": "important configuration & infrastructure files" - }, - { - "label": "Mandatory Global Audit Exclusions", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L35", - "_origin": "ast", - "id": "docs_audit_00_repository_map_mandatory_global_audit_exclusions", - "community": 124, - "community_name": "Repository Map", - "norm_label": "mandatory global audit exclusions" - }, - { - "label": "Repository Map", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_00_repository_map_repository_map", - "community": 124, - "community_name": "Repository Map", - "norm_label": "repository map" - }, - { - "label": "Repository Structure & Overview", - "file_type": "document", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_00_repository_map_repository_structure_overview", - "community": 124, - "community_name": "Repository Map", - "norm_label": "repository structure & overview" - }, - { - "label": "validate_integrity.js", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_validate_integrity", - "community": 125, - "community_name": "validate_integrity.js", - "norm_label": "validate_integrity.js" - }, - { - "label": "dispSum", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L16", - "_origin": "ast", - "id": "docs_audit_validate_integrity_dispsum", - "community": 125, - "community_name": "validate_integrity.js", - "norm_label": "dispsum" - }, - { - "label": "errors", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L7", - "_origin": "ast", - "id": "docs_audit_validate_integrity_errors", - "community": 125, - "community_name": "validate_integrity.js", - "norm_label": "errors" - }, - { - "label": "invalidNewIds", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L27", - "_origin": "ast", - "id": "docs_audit_validate_integrity_invalidnewids", - "community": 125, - "community_name": "validate_integrity.js", - "norm_label": "invalidnewids" - }, - { - "label": "manifest", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_validate_integrity_manifest", - "community": 125, - "community_name": "validate_integrity.js", - "norm_label": "manifest" - }, - { - "label": "report", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L43", - "_origin": "ast", - "id": "docs_audit_validate_integrity_report", - "community": 125, - "community_name": "validate_integrity.js", - "norm_label": "report" - }, - { - "label": "trackedFiles", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L4", - "_origin": "ast", - "id": "docs_audit_validate_integrity_trackedfiles", - "community": 125, - "community_name": "validate_integrity.js", - "norm_label": "trackedfiles" - }, - { - "label": "uninspected", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L38", - "_origin": "ast", - "id": "docs_audit_validate_integrity_uninspected", - "community": 125, - "community_name": "validate_integrity.js", - "norm_label": "uninspected" - }, - { - "label": "verifiedIndex", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L5", - "_origin": "ast", - "id": "docs_audit_validate_integrity_verifiedindex", - "community": 125, - "community_name": "validate_integrity.js", - "norm_label": "verifiedindex" - }, - { - "label": "warnings", - "file_type": "code", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L8", - "_origin": "ast", - "id": "docs_audit_validate_integrity_warnings", - "community": 125, - "community_name": "validate_integrity.js", - "norm_label": "warnings" - }, - { - "label": "admin-panel/package.json", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_package", - "community": 126, - "community_name": "admin-panel/package.json", - "norm_label": "admin-panel/package.json" - }, - { - "label": "name", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L2", - "_origin": "ast", - "id": "frontend_admin_panel_package_name", - "community": 126, - "community_name": "admin-panel/package.json", - "norm_label": "name" - }, - { - "label": "private", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L3", - "_origin": "ast", - "id": "frontend_admin_panel_package_private", - "community": 126, - "community_name": "admin-panel/package.json", - "norm_label": "private" - }, - { - "label": "scripts", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L6", - "_origin": "ast", - "id": "frontend_admin_panel_package_scripts", - "community": 126, - "community_name": "admin-panel/package.json", - "norm_label": "scripts" - }, - { - "label": "build", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L8", - "_origin": "ast", - "id": "frontend_admin_panel_package_scripts_build", - "community": 126, - "community_name": "admin-panel/package.json", - "norm_label": "build" - }, - { - "label": "dev", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L7", - "_origin": "ast", - "id": "frontend_admin_panel_package_scripts_dev", - "community": 126, - "community_name": "admin-panel/package.json", - "norm_label": "dev" - }, - { - "label": "lint", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L9", - "_origin": "ast", - "id": "frontend_admin_panel_package_scripts_lint", - "community": 126, - "community_name": "admin-panel/package.json", - "norm_label": "lint" - }, - { - "label": "preview", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L10", - "_origin": "ast", - "id": "frontend_admin_panel_package_scripts_preview", - "community": 126, - "community_name": "admin-panel/package.json", - "norm_label": "preview" - }, - { - "label": "type", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_admin_panel_package_type", - "community": 126, - "community_name": "admin-panel/package.json", - "norm_label": "type" - }, - { - "label": "version", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_admin_panel_package_version", - "community": 126, - "community_name": "admin-panel/package.json", - "norm_label": "version" - }, - { - "label": "admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme", - "community": 127, - "community_name": "Sahel-Font", - "norm_label": "admin-panel/public/fonts/sahel-font-v3.4.0/readme.md" - }, - { - "label": "Arch Linux", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L119", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_arch_linux", - "community": 127, - "community_name": "Sahel-Font", - "norm_label": "arch linux" - }, - { - "label": "Contributors", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L127", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_contributors", - "community": 127, - "community_name": "Sahel-Font", - "norm_label": "contributors" - }, - { - "label": "Install", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L103", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install", - "community": 127, - "community_name": "Sahel-Font", - "norm_label": "install" - }, - { - "label": "Known problems for variable version", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", - "community": 127, - "community_name": "Sahel-Font", - "norm_label": "known problems for variable version" - }, - { - "label": "License", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L131", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_license", - "community": 127, - "community_name": "Sahel-Font", - "norm_label": "license" - }, - { - "label": "Sahel-Font", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "community": 127, - "community_name": "Sahel-Font", - "norm_label": "sahel-font" - }, - { - "label": "To Do (variable)", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_to_do_variable", - "community": 127, - "community_name": "Sahel-Font", - "norm_label": "to do (variable)" - }, - { - "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L83", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable", - "community": 127, - "community_name": "Sahel-Font", - "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable" - }, - { - "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L24", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", - "community": 127, - "community_name": "Sahel-Font", - "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_apibearerauth", - "community": 128, - "community_name": "AdminService", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_apioperation", - "community": 128, - "community_name": "AdminService", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_apitags", - "community": 128, - "community_name": "AdminService", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_body", - "community": 128, - "community_name": "AdminService", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_controller", - "community": 128, - "community_name": "AdminService", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_delete", - "community": 128, - "community_name": "AdminService", - "norm_label": "delete" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_param", - "community": 128, - "community_name": "AdminService", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_post", - "community": 128, - "community_name": "AdminService", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_put", - "community": 128, - "community_name": "AdminService", - "norm_label": "put" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_useguards", - "community": 128, - "community_name": "AdminService", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_service_ts_injectable", - "community": 128, - "community_name": "AdminService", - "norm_label": "injectable" - }, - { - "label": "RouteErrorBoundary.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_routeerrorboundary", - "community": 129, - "community_name": "RouteErrorBoundary", - "norm_label": "routeerrorboundary.tsx" - }, - { - "label": "generate-openapi.ts", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "generate-openapi.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_app_module_ts_module", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "module" - }, - { - "label": "http-exception.filter.ts", - "file_type": "code", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_filters_http_exception_filter", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "http-exception.filter.ts" - }, - { - "label": "Catch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_filters_http_exception_filter_ts_catch", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "catch" - }, - { - "label": "prisma-exception.filter.ts", - "file_type": "code", - "source_file": "backend/src/common/filters/prisma-exception.filter.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_filters_prisma_exception_filter", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "prisma-exception.filter.ts" - }, - { - "label": "Catch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_filters_prisma_exception_filter_ts_catch", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "catch" - }, - { - "label": "decimal.interceptor.ts", - "file_type": "code", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_interceptors_decimal_interceptor", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "decimal.interceptor.ts" - }, - { - "label": "decimal.interceptor.spec.ts", - "file_type": "code", - "source_file": "backend/src/common/interceptors/decimal.interceptor.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_interceptors_decimal_interceptor_spec", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "decimal.interceptor.spec.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_interceptors_decimal_interceptor_ts_injectable", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "injectable" - }, - { - "label": "error-response.schema.ts", - "file_type": "code", - "source_file": "backend/src/common/schemas/error-response.schema.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_schemas_error_response_schema", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "error-response.schema.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_schemas_error_response_schema_ts_apiproperty", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "apiproperty" - }, - { - "label": "main.ts", - "file_type": "code", - "source_file": "backend/src/main.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_main", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "main.ts" - }, - { - "label": "app_module_1", - "file_type": "code", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L42", - "_origin": "ast", - "id": "backend_test_app_audit_verification_e2e_spec_app_module_1", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "app_module_1" - }, - { - "label": "client_1", - "file_type": "code", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L44", - "_origin": "ast", - "id": "backend_test_app_audit_verification_e2e_spec_client_1", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "client_1" - }, - { - "label": "common_1", - "file_type": "code", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L40", - "_origin": "ast", - "id": "backend_test_app_audit_verification_e2e_spec_common_1", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "common_1" - }, - { - "label": "decimal_interceptor_1", - "file_type": "code", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L47", - "_origin": "ast", - "id": "backend_test_app_audit_verification_e2e_spec_decimal_interceptor_1", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "decimal_interceptor_1" - }, - { - "label": "fs", - "file_type": "code", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L48", - "_origin": "ast", - "id": "backend_test_app_audit_verification_e2e_spec_fs", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "fs" - }, - { - "label": "http_exception_filter_1", - "file_type": "code", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L45", - "_origin": "ast", - "id": "backend_test_app_audit_verification_e2e_spec_http_exception_filter_1", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "http_exception_filter_1" - }, - { - "label": "app-audit-verification.e2e-spec.js", - "file_type": "code", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L1", - "_origin": "ast", - "id": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "app-audit-verification.e2e-spec.js" - }, - { - "label": "jwt_1", - "file_type": "code", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L43", - "_origin": "ast", - "id": "backend_test_app_audit_verification_e2e_spec_jwt_1", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "jwt_1" - }, - { - "label": "path", - "file_type": "code", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L49", - "_origin": "ast", - "id": "backend_test_app_audit_verification_e2e_spec_path", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "path" - }, - { - "label": "prisma_exception_filter_1", - "file_type": "code", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L46", - "_origin": "ast", - "id": "backend_test_app_audit_verification_e2e_spec_prisma_exception_filter_1", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "prisma_exception_filter_1" - }, - { - "label": "supertest_1", - "file_type": "code", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L41", - "_origin": "ast", - "id": "backend_test_app_audit_verification_e2e_spec_supertest_1", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "supertest_1" - }, - { - "label": "testing_1", - "file_type": "code", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L39", - "_origin": "ast", - "id": "backend_test_app_audit_verification_e2e_spec_testing_1", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "testing_1" - }, - { - "label": "app-audit-verification.e2e-spec.ts", - "file_type": "code", - "source_file": "backend/test/app-audit-verification.e2e-spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "app-audit-verification.e2e-spec.ts" - }, - { - "label": "app.e2e-spec.ts", - "file_type": "code", - "source_file": "backend/test/app.e2e-spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_test_app_e2e_spec_ts_backend_test_app_e2e_spec", - "community": 13, - "community_name": "app-audit-verification.e2e-spec.js", - "norm_label": "app.e2e-spec.ts" - }, - { - "label": "application/public/fonts/sahel-font-v3.4.0/README.md", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme", - "community": 130, - "community_name": "Sahel-Font", - "norm_label": "application/public/fonts/sahel-font-v3.4.0/readme.md" - }, - { - "label": "Arch Linux", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L119", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_arch_linux", - "community": 130, - "community_name": "Sahel-Font", - "norm_label": "arch linux" - }, - { - "label": "Contributors", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L127", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_contributors", - "community": 130, - "community_name": "Sahel-Font", - "norm_label": "contributors" - }, - { - "label": "Install", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L103", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install", - "community": 130, - "community_name": "Sahel-Font", - "norm_label": "install" - }, - { - "label": "Known problems for variable version", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", - "community": 130, - "community_name": "Sahel-Font", - "norm_label": "known problems for variable version" - }, - { - "label": "License", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L131", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_license", - "community": 130, - "community_name": "Sahel-Font", - "norm_label": "license" - }, - { - "label": "Sahel-Font", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "community": 130, - "community_name": "Sahel-Font", - "norm_label": "sahel-font" - }, - { - "label": "To Do (variable)", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_to_do_variable", - "community": 130, - "community_name": "Sahel-Font", - "norm_label": "to do (variable)" - }, - { - "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L83", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable", - "community": 130, - "community_name": "Sahel-Font", - "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable" - }, - { - "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", - "file_type": "document", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L24", - "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", - "community": 130, - "community_name": "Sahel-Font", - "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628" - }, - { - "label": "00_intake.md", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_00_intake", - "community": 131, - "community_name": "Role & Core Objective", - "norm_label": "00_intake.md" - }, - { - "label": "1. Ask \u2014 Don't Assume", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L30", - "_origin": "ast", - "id": "ai_agency_agents_00_intake_1_ask_don_t_assume", - "community": 131, - "community_name": "Role & Core Objective", - "norm_label": "1. ask \u2014 don't assume" - }, - { - "label": "2. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L58", - "_origin": "ast", - "id": "ai_agency_agents_00_intake_2_forbidden_actions", - "community": 131, - "community_name": "Role & Core Objective", - "norm_label": "2. forbidden actions" - }, - { - "label": "Brownfield Detection", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L17", - "_origin": "ast", - "id": "ai_agency_agents_00_intake_brownfield_detection", - "community": 131, - "community_name": "Role & Core Objective", - "norm_label": "brownfield detection" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L105", - "_origin": "ast", - "id": "ai_agency_agents_00_intake_expected_json_output_schema", - "community": 131, - "community_name": "Role & Core Objective", - "norm_label": "expected json output schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L28", - "_origin": "ast", - "id": "ai_agency_agents_00_intake_operational_rules_boundaries", - "community": 131, - "community_name": "Role & Core Objective", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L65", - "_origin": "ast", - "id": "ai_agency_agents_00_intake_required_output_artifacts_what_files_to_write_update", - "community": 131, - "community_name": "Role & Core Objective", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_00_intake_role_core_objective", - "community": 131, - "community_name": "Role & Core Objective", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L9", - "_origin": "ast", - "id": "ai_agency_agents_00_intake_strict_input_specifications_what_files_to_read", - "community": 131, - "community_name": "Role & Core Objective", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "orchestrate.py", - "file_type": "code", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_orchestrate", - "community": 132, - "community_name": "orchestrate.py", - "norm_label": "orchestrate.py" - }, - { - "label": "backend/package.json", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L1", - "_origin": "ast", - "id": "backend_package", - "community": 133, - "community_name": "backend/package.json", - "norm_label": "backend/package.json" - }, - { - "label": "author", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L5", - "_origin": "ast", - "id": "backend_package_author", - "community": 133, - "community_name": "backend/package.json", - "norm_label": "author" - }, - { - "label": "description", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L4", - "_origin": "ast", - "id": "backend_package_description", - "community": 133, - "community_name": "backend/package.json", - "norm_label": "description" - }, - { - "label": "license", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L7", - "_origin": "ast", - "id": "backend_package_license", - "community": 133, - "community_name": "backend/package.json", - "norm_label": "license" - }, - { - "label": "name", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L2", - "_origin": "ast", - "id": "backend_package_name", - "community": 133, - "community_name": "backend/package.json", - "norm_label": "name" - }, - { - "label": "prisma", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L96", - "_origin": "ast", - "id": "backend_package_prisma", - "community": 133, - "community_name": "backend/package.json", - "norm_label": "prisma" - }, - { - "label": "seed", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L97", - "_origin": "ast", - "id": "backend_package_prisma_seed", - "community": 133, - "community_name": "backend/package.json", - "norm_label": "seed" - }, - { - "label": "private", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L6", - "_origin": "ast", - "id": "backend_package_private", - "community": 133, - "community_name": "backend/package.json", - "norm_label": "private" - }, - { - "label": "version", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L3", - "_origin": "ast", - "id": "backend_package_version", - "community": 133, - "community_name": "backend/package.json", - "norm_label": "version" + "norm_label": "strict input specifications (what files to read)", + "node_kind": "heading", + "id": "ai_agency_agents_07_qa_engineer_strict_input_specifications_what_files_to_read" }, { "label": "blog/page.tsx", @@ -21844,10 +18593,10 @@ "source_file": "frontend/application/app/blog/page.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_blog_page", "community": 134, "community_name": "blog/page.tsx", - "norm_label": "blog/page.tsx" + "norm_label": "blog/page.tsx", + "id": "frontend_application_app_blog_page" }, { "label": "revalidate", @@ -21855,406 +18604,10 @@ "source_file": "frontend/application/app/blog/page.tsx", "source_location": "L13", "_origin": "ast", - "id": "frontend_application_app_blog_page_revalidate", "community": 134, "community_name": "blog/page.tsx", - "norm_label": "revalidate" - }, - { - "label": "exports.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports", - "community": 135, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "exports.md" - }, - { - "label": "graphify reference: extra exports and benchmark", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "community": 135, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "graphify reference: extra exports and benchmark" - }, - { - "label": "Step 6b - Wiki (only if --wiki flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L5", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports_step_6b_wiki_only_if_wiki_flag", - "community": 135, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 6b - wiki (only if --wiki flag)" - }, - { - "label": "Step 7 - Neo4j export (only if --neo4j or --neo4j-push flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L15", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports_step_7_neo4j_export_only_if_neo4j_or_neo4j_push_flag", - "community": 135, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7 - neo4j export (only if --neo4j or --neo4j-push flag)" - }, - { - "label": "Step 7a - FalkorDB export (only if --falkordb or --falkordb-push flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L31", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports_step_7a_falkordb_export_only_if_falkordb_or_falkordb_push_flag", - "community": 135, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7a - falkordb export (only if --falkordb or --falkordb-push flag)" - }, - { - "label": "Step 7b - SVG export (only if --svg flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L47", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports_step_7b_svg_export_only_if_svg_flag", - "community": 135, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7b - svg export (only if --svg flag)" - }, - { - "label": "Step 7c - GraphML export (only if --graphml flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L53", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports_step_7c_graphml_export_only_if_graphml_flag", - "community": 135, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7c - graphml export (only if --graphml flag)" - }, - { - "label": "Step 7d - MCP server (only if --mcp flag)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L59", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports_step_7d_mcp_server_only_if_mcp_flag", - "community": 135, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 7d - mcp server (only if --mcp flag)" - }, - { - "label": "Step 8 - Token reduction benchmark (only if total_words > 5000)", - "file_type": "document", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L79", - "_origin": "ast", - "id": "claude_skills_graphify_references_exports_step_8_token_reduction_benchmark_only_if_total_words_5000", - "community": 135, - "community_name": "graphify reference: extra exports and benchmark", - "norm_label": "step 8 - token reduction benchmark (only if total_words > 5000)" - }, - { - "label": "21-phase2-quality-gate-summary.md", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary", - "community": 136, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "21-phase2-quality-gate-summary.md" - }, - { - "label": "1. Executive Summary", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary_1_executive_summary", - "community": 136, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "1. executive summary" - }, - { - "label": "2. Final Verified Finding Breakdown", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L16", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", - "community": 136, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "2. final verified finding breakdown" - }, - { - "label": "3. Source Coverage & Diagnostic Metrics", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L31", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary_3_source_coverage_diagnostic_metrics", - "community": 136, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "3. source coverage & diagnostic metrics" - }, - { - "label": "4. Integrity Check & Quality Gate Status", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L40", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary_4_integrity_check_quality_gate_status", - "community": 136, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "4. integrity check & quality gate status" - }, - { - "label": "5. Exact Next Recommended Phase", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L47", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary_5_exact_next_recommended_phase", - "community": 136, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "5. exact next recommended phase" - }, - { - "label": "By Confidence", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L25", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary_by_confidence", - "community": 136, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "by confidence" - }, - { - "label": "By Severity", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L18", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary_by_severity", - "community": 136, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "by severity" - }, - { - "label": "Phase 2 Final Quality Gate Summary Report", - "file_type": "document", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", - "community": 136, - "community_name": "Phase 2 Final Quality Gate Summary Report", - "norm_label": "phase 2 final quality gate summary report" - }, - { - "label": "phase3.1-change-log.md", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log", - "community": 137, - "community_name": "Task Modifications Log", - "norm_label": "phase3.1-change-log.md" - }, - { - "label": "1. `TASK-AUTH-001`", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L10", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log_1_task_auth_001", - "community": 137, - "community_name": "Task Modifications Log", - "norm_label": "1. `task-auth-001`" - }, - { - "label": "2. `TASK-FIN-001`", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L19", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log_2_task_fin_001", - "community": 137, - "community_name": "Task Modifications Log", - "norm_label": "2. `task-fin-001`" - }, - { - "label": "3. `DECISION-002`", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L28", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log_3_decision_002", - "community": 137, - "community_name": "Task Modifications Log", - "norm_label": "3. `decision-002`" - }, - { - "label": "4. `TASK-VERIFY-001`", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L37", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log_4_task_verify_001", - "community": 137, - "community_name": "Task Modifications Log", - "norm_label": "4. `task-verify-001`" - }, - { - "label": "5. `TASK-SEC-001` & `TASK-SEC-002`", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L46", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log_5_task_sec_001_task_sec_002", - "community": 137, - "community_name": "Task Modifications Log", - "norm_label": "5. `task-sec-001` & `task-sec-002`" - }, - { - "label": "6. `TASK-BUILD-001` & Execution Waves", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L55", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log_6_task_build_001_execution_waves", - "community": 137, - "community_name": "Task Modifications Log", - "norm_label": "6. `task-build-001` & execution waves" - }, - { - "label": "Phase 3.1 \u2014 Master Task Backlog Change Log", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log", - "community": 137, - "community_name": "Task Modifications Log", - "norm_label": "phase 3.1 \u2014 master task backlog change log" - }, - { - "label": "Task Modifications Log", - "file_type": "document", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L8", - "_origin": "ast", - "id": "docs_audit_phase3_1_change_log_task_modifications_log", - "community": 137, - "community_name": "Task Modifications Log", - "norm_label": "task modifications log" - }, - { - "label": "shabnam-font-v5.0.1/README.md", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme", - "community": 138, - "community_name": "Install", - "norm_label": "shabnam-font-v5.0.1/readme.md" - }, - { - "label": "Arch Linux", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L110", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_arch_linux", - "community": 138, - "community_name": "Install", - "norm_label": "arch linux" - }, - { - "label": "bower", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L80", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_bower", - "community": 138, - "community_name": "Install", - "norm_label": "bower" - }, - { - "label": "Install", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L76", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", - "community": 138, - "community_name": "Install", - "norm_label": "install" - }, - { - "label": "npm", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L86", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_npm", - "community": 138, - "community_name": "Install", - "norm_label": "npm" - }, - { - "label": "Shabnam Font", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", - "community": 138, - "community_name": "Install", - "norm_label": "shabnam font" - }, - { - "label": "yarn", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L91", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_yarn", - "community": 138, - "community_name": "Install", - "norm_label": "yarn" - }, - { - "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628:", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", - "community": 138, - "community_name": "Install", - "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628:" - }, - { - "label": "\u0646\u0645\u0648\u0646\u0647 \u0645\u062a\u0646 Sample:", - "file_type": "document", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0646\u0645\u0648\u0646\u0647_\u0645\u062a\u0646_sample", - "community": 138, - "community_name": "Install", - "norm_label": "\u0646\u0645\u0648\u0646\u0647 \u0645\u062a\u0646 sample:" + "norm_label": "revalidate", + "id": "frontend_application_app_blog_page_revalidate" }, { "label": "layout.tsx", @@ -22262,10 +18615,10 @@ "source_file": "frontend/application/app/layout.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_layout", "community": 139, "community_name": "layout.tsx", - "norm_label": "layout.tsx" + "norm_label": "layout.tsx", + "id": "frontend_application_app_layout" }, { "label": "fonts.ts", @@ -22273,10 +18626,10 @@ "source_file": "frontend/application/lib/fonts.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_lib_fonts", "community": 139, "community_name": "layout.tsx", - "norm_label": "fonts.ts" + "norm_label": "fonts.ts", + "id": "frontend_application_lib_fonts" }, { "label": "lalezar", @@ -22284,10 +18637,10 @@ "source_file": "frontend/application/lib/fonts.ts", "source_location": "L16", "_origin": "ast", - "id": "frontend_application_lib_fonts_lalezar", "community": 139, "community_name": "layout.tsx", - "norm_label": "lalezar" + "norm_label": "lalezar", + "id": "frontend_application_lib_fonts_lalezar" }, { "label": "vazirmatn", @@ -22295,615 +18648,1122 @@ "source_file": "frontend/application/lib/fonts.ts", "source_location": "L3", "_origin": "ast", - "id": "frontend_application_lib_fonts_vazirmatn", "community": 139, "community_name": "layout.tsx", - "norm_label": "vazirmatn" + "norm_label": "vazirmatn", + "id": "frontend_application_lib_fonts_vazirmatn" }, { - "label": "B2BLandingClient.tsx", + "label": "admin/blogs.service.ts", "file_type": "code", - "source_file": "frontend/application/components/B2BLandingClient.tsx", + "source_file": "backend/src/admin/blogs.service.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_b2blandingclient", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "b2blandingclient.tsx" + "community": 147, + "community_name": "RevalidationService", + "norm_label": "admin/blogs.service.ts", + "id": "backend_src_admin_blogs_service" }, { - "label": "BlogPreviewSection.tsx", + "label": "categories.service.ts", "file_type": "code", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_file": "backend/src/admin/categories.service.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_blogpreviewsection", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "blogpreviewsection.tsx" + "community": 108, + "community_name": "PrismaService", + "norm_label": "categories.service.ts", + "id": "backend_src_admin_categories_service" }, { - "label": "ContactFormClient.tsx", + "label": "auth.service.spec.ts", "file_type": "code", - "source_file": "frontend/application/components/ContactFormClient.tsx", + "source_file": "backend/src/auth/auth.service.spec.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_contactformclient", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "contactformclient.tsx" + "community": 108, + "community_name": "PrismaService", + "norm_label": "auth.service.spec.ts", + "id": "backend_src_auth_auth_service_spec" }, { - "label": "FAQSection.tsx", + "label": "b2b.service.ts", "file_type": "code", - "source_file": "frontend/application/components/FAQSection.tsx", + "source_file": "backend/src/b2b/b2b.service.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_faqsection", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "faqsection.tsx" + "community": 108, + "community_name": "PrismaService", + "norm_label": "b2b.service.ts", + "id": "backend_src_b2b_b2b_service" }, { - "label": "TestimonialsSection.tsx", + "label": "banners.service.ts", "file_type": "code", - "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_file": "backend/src/banners/banners.service.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_testimonialssection", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "testimonialssection.tsx" + "community": 108, + "community_name": "PrismaService", + "norm_label": "banners.service.ts", + "id": "backend_src_banners_banners_service" }, { - "label": "lib/services/api.ts", + "label": "metrics.controller.ts", "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", + "source_file": "backend/src/common/metrics.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_lib_services_api", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "lib/services/api.ts" + "community": 108, + "community_name": "PrismaService", + "norm_label": "metrics.controller.ts", + "id": "backend_src_common_metrics_controller" }, { - "label": "api", + "label": "sms.service.ts", "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L26", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1", "_origin": "ast", - "id": "frontend_application_lib_services_api_api", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "api" + "community": 108, + "community_name": "PrismaService", + "norm_label": "sms.service.ts", + "id": "backend_src_common_services_sms_service" + }, + { + "label": "contact.service.ts", + "file_type": "code", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "contact.service.ts", + "id": "backend_src_contact_contact_service" + }, + { + "label": "faq.service.ts", + "file_type": "code", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "faq.service.ts", + "id": "backend_src_faq_faq_service" + }, + { + "label": "ingredients.service.ts", + "file_type": "code", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "ingredients.service.ts", + "id": "backend_src_ingredients_ingredients_service" + }, + { + "label": "menu.service.ts", + "file_type": "code", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "menu.service.ts", + "id": "backend_src_menu_menu_service" + }, + { + "label": "orders.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/orders/orders.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "orders.service.spec.ts", + "id": "backend_src_orders_orders_service_spec" + }, + { + "label": "payment.service.ts", + "file_type": "code", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 61, + "community_name": "payment.service.ts", + "norm_label": "payment.service.ts", + "id": "backend_src_payment_payment_service" + }, + { + "label": "zibal-ebank.service.ts", + "file_type": "code", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "zibal-ebank.service.ts", + "id": "backend_src_payment_zibal_ebank_service" + }, + { + "label": "pets.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "pets.service.spec.ts", + "id": "backend_src_pets_pets_service_spec" + }, + { + "label": "prescriptions.service.ts", + "file_type": "code", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "prescriptions.service.ts", + "id": "backend_src_prescriptions_prescriptions_service" + }, + { + "label": "prisma.service.ts", + "file_type": "code", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "prisma.service.ts", + "id": "backend_src_prisma_prisma_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "injectable", + "id": "backend_src_prisma_prisma_service_ts_injectable" + }, + { + "label": "default-ui-texts.ts", + "file_type": "code", + "source_file": "backend/src/settings/default-ui-texts.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "default-ui-texts.ts", + "id": "backend_src_settings_default_ui_texts" + }, + { + "label": "DEFAULT_UI_TEXTS", + "file_type": "code", + "source_file": "backend/src/settings/default-ui-texts.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "default_ui_texts", + "id": "backend_src_settings_default_ui_texts_default_ui_texts" + }, + { + "label": "settings.service.ts", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "settings.service.ts", + "id": "backend_src_settings_settings_service" + }, + { + "label": "CANONICAL_ALIASES", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L13", + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "canonical_aliases", + "id": "backend_src_settings_settings_service_canonical_aliases" + }, + { + "label": "settings.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/settings/settings.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "settings.service.spec.ts", + "id": "backend_src_settings_settings_service_spec" + }, + { + "label": "smart-advisor.service.ts", + "file_type": "code", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "smart-advisor.service.ts", + "id": "backend_src_smart_advisor_smart_advisor_service" + }, + { + "label": "testimonials.service.ts", + "file_type": "code", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "testimonials.service.ts", + "id": "backend_src_testimonials_testimonials_service" + }, + { + "label": "users.service.ts", + "file_type": "code", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "users.service.ts", + "id": "backend_src_users_users_service" + }, + { + "label": "users.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/users/users.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "users.service.spec.ts", + "id": "backend_src_users_users_service_spec" + }, + { + "label": "wholesale.service.ts", + "file_type": "code", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "wholesale.service.ts", + "id": "backend_src_wholesale_wholesale_service" + }, + { + "label": "26-phase2-integrity-repair-report.md", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L1", + "_origin": "ast", + "community": 109, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "26-phase2-integrity-repair-report.md", + "node_kind": "page", + "id": "docs_audit_26_phase2_integrity_repair_report" + }, + { + "label": "1.1 Authoritative Source File Inventory Rebuilt", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L12", + "_origin": "ast", + "community": 109, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "1.1 authoritative source file inventory rebuilt", + "node_kind": "heading", + "id": "docs_audit_26_phase2_integrity_repair_report_1_1_authoritative_source_file_inventory_rebuilt" + }, + { + "label": "1.2 Raw Finding Dispositions Reconciled", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L18", + "_origin": "ast", + "community": 109, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "1.2 raw finding dispositions reconciled", + "node_kind": "heading", + "id": "docs_audit_26_phase2_integrity_repair_report_1_2_raw_finding_dispositions_reconciled" + }, + { + "label": "1.3 Finding Identifier Normalization", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L27", + "_origin": "ast", + "community": 109, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "1.3 finding identifier normalization", + "node_kind": "heading", + "id": "docs_audit_26_phase2_integrity_repair_report_1_3_finding_identifier_normalization" + }, + { + "label": "1.4 Rejected Finding Cleanup", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L34", + "_origin": "ast", + "community": 109, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "1.4 rejected finding cleanup", + "node_kind": "heading", + "id": "docs_audit_26_phase2_integrity_repair_report_1_4_rejected_finding_cleanup" + }, + { + "label": "1. Summary of Integrity Repairs Performed", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L10", + "_origin": "ast", + "community": 109, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "1. summary of integrity repairs performed", + "node_kind": "heading", + "id": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed" + }, + { + "label": "2. Final Verified Finding Metrics", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L39", + "_origin": "ast", + "community": 109, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "2. final verified finding metrics", + "node_kind": "heading", + "id": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics" + }, + { + "label": "3. Reference and Compiler Integrity Results", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L57", + "_origin": "ast", + "community": 109, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "3. reference and compiler integrity results", + "node_kind": "heading", + "id": "docs_audit_26_phase2_integrity_repair_report_3_reference_and_compiler_integrity_results" + }, + { + "label": "4. Quality Gate Conclusion", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L64", + "_origin": "ast", + "community": 109, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "4. quality gate conclusion", + "node_kind": "heading", + "id": "docs_audit_26_phase2_integrity_repair_report_4_quality_gate_conclusion" + }, + { + "label": "By Confidence", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L49", + "_origin": "ast", + "community": 109, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "by confidence", + "node_kind": "heading", + "id": "docs_audit_26_phase2_integrity_repair_report_by_confidence" + }, + { + "label": "By Severity", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L41", + "_origin": "ast", + "community": 109, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "by severity", + "node_kind": "heading", + "id": "docs_audit_26_phase2_integrity_repair_report_by_severity" + }, + { + "label": "Phase 2.6 Integrity Repair & Audit Quality Gate Report", + "file_type": "document", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L1", + "_origin": "ast", + "community": 109, + "community_name": "1. Summary of Integrity Repairs Performed", + "norm_label": "phase 2.6 integrity repair & audit quality gate report", + "node_kind": "heading", + "id": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report" + }, + { + "label": "ConfirmModal.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "confirmmodal.tsx", + "id": "frontend_admin_panel_src_components_ui_confirmmodal" + }, + { + "label": "MediaSelector.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "mediaselector.tsx", + "id": "frontend_admin_panel_src_components_ui_mediaselector" + }, + { + "label": "Pagination.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "pagination.tsx", + "id": "frontend_admin_panel_src_components_ui_pagination" + }, + { + "label": "BannersManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "bannersmanager.tsx", + "id": "frontend_admin_panel_src_pages_bannersmanager" + }, + { + "label": "Blogs.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "blogs.tsx", + "id": "frontend_admin_panel_src_pages_blogs" + }, + { + "label": "Categories.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "categories.tsx", + "id": "frontend_admin_panel_src_pages_categories" + }, + { + "label": "IngredientsManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "ingredientsmanager.tsx", + "id": "frontend_admin_panel_src_pages_ingredientsmanager" + }, + { + "label": "Pets.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "pets.tsx", + "id": "frontend_admin_panel_src_pages_pets" + }, + { + "label": "Products.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "products.tsx", + "id": "frontend_admin_panel_src_pages_products" + }, + { + "label": "TestimonialsManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "testimonialsmanager.tsx", + "id": "frontend_admin_panel_src_pages_testimonialsmanager" + }, + { + "label": "Videos.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "videos.tsx", + "id": "frontend_admin_panel_src_pages_videos" + }, + { + "label": "WholesaleApplications.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "wholesaleapplications.tsx", + "id": "frontend_admin_panel_src_pages_wholesaleapplications" + }, + { + "label": "BannersManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L27", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "bannersmanager", + "id": "frontend_admin_panel_src_routes_adminroutes_bannersmanager" + }, + { + "label": "Blogs", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L18", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "blogs", + "id": "frontend_admin_panel_src_routes_adminroutes_blogs" + }, + { + "label": "Categories", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L17", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "categories", + "id": "frontend_admin_panel_src_routes_adminroutes_categories" + }, + { + "label": "IngredientsManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L30", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "ingredientsmanager", + "id": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager" + }, + { + "label": "Pets", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L20", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "pets", + "id": "frontend_admin_panel_src_routes_adminroutes_pets" + }, + { + "label": "Products", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L12", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "products", + "id": "frontend_admin_panel_src_routes_adminroutes_products" + }, + { + "label": "TestimonialsManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L29", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "testimonialsmanager", + "id": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager" + }, + { + "label": "Videos", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L25", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "videos", + "id": "frontend_admin_panel_src_routes_adminroutes_videos" + }, + { + "label": "WholesaleApplications", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L24", + "_origin": "ast", + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "wholesaleapplications", + "id": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications" }, { "label": "BASE_DOMAIN", "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_application_lib_services_api_base_domain", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "base_domain" - }, - { - "label": "baseURL", - "file_type": "code", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L13", - "_origin": "ast", - "id": "frontend_application_lib_services_api_baseurl", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "baseurl" - }, - { - "label": "authService.ts", - "file_type": "code", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_services_authservice", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "authservice.ts" - }, - { - "label": "orderService.ts", - "file_type": "code", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_services_orderservice", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "orderservice.ts" - }, - { - "label": "ticketService.ts", - "file_type": "code", - "source_file": "frontend/application/lib/services/ticketService.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_services_ticketservice", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "ticketservice.ts" - }, - { - "label": "ticketService", - "file_type": "code", - "source_file": "frontend/application/lib/services/ticketService.ts", - "source_location": "L43", - "_origin": "ast", - "id": "frontend_application_lib_services_ticketservice_ticketservice", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "ticketservice" - }, - { - "label": "settingsStore.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_store_settingsstore", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "settingsstore.ts" - }, - { - "label": "cartStore.test.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_store_tests_cartstore_test", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "cartstore.test.ts" - }, - { - "label": "mockProduct", - "file_type": "code", - "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", - "source_location": "L20", - "_origin": "ast", - "id": "frontend_application_lib_store_tests_cartstore_test_mockproduct", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "mockproduct" - }, - { - "label": "settingsStore.test.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_store_tests_settingsstore_test", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "settingsstore.test.ts" - }, - { - "label": "userStore.test.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_store_tests_userstore_test", - "community": 14, - "community_name": "lib/services/api.ts", - "norm_label": "userstore.test.ts" - }, - { - "label": "ErrorBoundary.tsx", - "file_type": "code", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_errorboundary", - "community": 140, - "community_name": "ErrorBoundary", - "norm_label": "errorboundary.tsx" - }, - { - "label": "application/package.json", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_package", - "community": 141, - "community_name": "application/package.json", - "norm_label": "application/package.json" - }, - { - "label": "name", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L2", - "_origin": "ast", - "id": "frontend_application_package_name", - "community": 141, - "community_name": "application/package.json", - "norm_label": "name" - }, - { - "label": "private", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_application_package_private", - "community": 141, - "community_name": "application/package.json", - "norm_label": "private" - }, - { - "label": "scripts", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_application_package_scripts", - "community": 141, - "community_name": "application/package.json", - "norm_label": "scripts" - }, - { - "label": "build", - "file_type": "code", - "source_file": "frontend/application/package.json", + "source_file": "frontend/admin-panel/src/services/api.ts", "source_location": "L7", "_origin": "ast", - "id": "frontend_application_package_scripts_build", - "community": 141, - "community_name": "application/package.json", - "norm_label": "build" + "community": 11, + "community_name": "MediaSelector.tsx", + "norm_label": "base_domain", + "id": "frontend_admin_panel_src_services_api_base_domain" }, { - "label": "dev", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L6", - "_origin": "ast", - "id": "frontend_application_package_scripts_dev", - "community": 141, - "community_name": "application/package.json", - "norm_label": "dev" - }, - { - "label": "lint", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L9", - "_origin": "ast", - "id": "frontend_application_package_scripts_lint", - "community": 141, - "community_name": "application/package.json", - "norm_label": "lint" - }, - { - "label": "start", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L8", - "_origin": "ast", - "id": "frontend_application_package_scripts_start", - "community": 141, - "community_name": "application/package.json", - "norm_label": "start" - }, - { - "label": "version", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L3", - "_origin": "ast", - "id": "frontend_application_package_version", - "community": 141, - "community_name": "application/package.json", - "norm_label": "version" - }, - { - "label": "start-dev.js", - "file_type": "code", - "source_file": "scripts/start-dev.js", + "label": "01_auditor.md", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", "source_location": "L1", "_origin": "ast", - "id": "scripts_start_dev", - "community": 142, - "community_name": "start-dev.js", - "norm_label": "start-dev.js" + "community": 110, + "community_name": "Operational Rules & Boundaries", + "norm_label": "01_auditor.md", + "node_kind": "page", + "id": "ai_agency_agents_01_auditor" }, { - "label": "backend", - "file_type": "code", - "source_file": "scripts/start-dev.js", - "source_location": "L35", + "label": "1. Detect Tech Stack First (Universal)", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L19", "_origin": "ast", - "id": "scripts_start_dev_backend", - "community": 142, - "community_name": "start-dev.js", - "norm_label": "backend" + "community": 110, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. detect tech stack first (universal)", + "node_kind": "heading", + "id": "ai_agency_agents_01_auditor_1_detect_tech_stack_first_universal" }, { - "label": "distMainPath", - "file_type": "code", - "source_file": "scripts/start-dev.js", - "source_location": "L9", + "label": "2. Explicit Scoring Methodology (Universal)", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L30", "_origin": "ast", - "id": "scripts_start_dev_distmainpath", - "community": 142, - "community_name": "start-dev.js", - "norm_label": "distmainpath" + "community": 110, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. explicit scoring methodology (universal)", + "node_kind": "heading", + "id": "ai_agency_agents_01_auditor_2_explicit_scoring_methodology_universal" }, { - "label": "fs", - "file_type": "code", - "source_file": "scripts/start-dev.js", - "source_location": "L3", + "label": "3. Code Coverage Ratio Rule", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L47", "_origin": "ast", - "id": "scripts_start_dev_fs", - "community": 142, - "community_name": "start-dev.js", - "norm_label": "fs" + "community": 110, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. code coverage ratio rule", + "node_kind": "heading", + "id": "ai_agency_agents_01_auditor_3_code_coverage_ratio_rule" }, { - "label": "http", - "file_type": "code", - "source_file": "scripts/start-dev.js", - "source_location": "L2", + "label": "4. Deep Directory Scanning", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L54", "_origin": "ast", - "id": "scripts_start_dev_http", - "community": 142, - "community_name": "start-dev.js", - "norm_label": "http" + "community": 110, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. deep directory scanning", + "node_kind": "heading", + "id": "ai_agency_agents_01_auditor_4_deep_directory_scanning" }, { - "label": "path", - "file_type": "code", - "source_file": "scripts/start-dev.js", - "source_location": "L4", + "label": "5. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L58", "_origin": "ast", - "id": "scripts_start_dev_path", - "community": 142, - "community_name": "start-dev.js", - "norm_label": "path" + "community": 110, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. forbidden actions", + "node_kind": "heading", + "id": "ai_agency_agents_01_auditor_5_forbidden_actions" }, { - "label": "{ spawn, execSync }", - "file_type": "code", - "source_file": "scripts/start-dev.js", + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L74", + "_origin": "ast", + "community": 110, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "node_kind": "heading", + "id": "ai_agency_agents_01_auditor_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L17", + "_origin": "ast", + "community": 110, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "node_kind": "heading", + "id": "ai_agency_agents_01_auditor_operational_rules_boundaries" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L66", + "_origin": "ast", + "community": 110, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "node_kind": "heading", + "id": "ai_agency_agents_01_auditor_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", "source_location": "L1", "_origin": "ast", - "id": "scripts_start_dev_spawn_execsync", - "community": 142, - "community_name": "start-dev.js", - "norm_label": "{ spawn, execsync }" + "community": 110, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "node_kind": "heading", + "id": "ai_agency_agents_01_auditor_role_core_objective" }, { - "label": "app_module_1", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L7", + "_origin": "ast", + "community": 110, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "node_kind": "heading", + "id": "ai_agency_agents_01_auditor_strict_input_specifications_what_files_to_read" + }, + { + "label": "10_tech_writer.md", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L1", + "_origin": "ast", + "community": 111, + "community_name": "Operational Rules & Boundaries", + "norm_label": "10_tech_writer.md", + "node_kind": "page", + "id": "ai_agency_agents_10_tech_writer" + }, + { + "label": "1. Mark Active Task as Complete", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L23", + "_origin": "ast", + "community": 111, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. mark active task as complete", + "node_kind": "heading", + "id": "ai_agency_agents_10_tech_writer_1_mark_active_task_as_complete" + }, + { + "label": "2. Documentation Updates", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L30", + "_origin": "ast", + "community": 111, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. documentation updates", + "node_kind": "heading", + "id": "ai_agency_agents_10_tech_writer_2_documentation_updates" + }, + { + "label": "3. Dynamic Routing Protocol (CRITICAL)", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L44", + "_origin": "ast", + "community": 111, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. dynamic routing protocol (critical)", + "node_kind": "heading", + "id": "ai_agency_agents_10_tech_writer_3_dynamic_routing_protocol_critical" + }, + { + "label": "4. Backlog Insufficiency Check", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L72", + "_origin": "ast", + "community": 111, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. backlog insufficiency check", + "node_kind": "heading", + "id": "ai_agency_agents_10_tech_writer_4_backlog_insufficiency_check" + }, + { + "label": "5. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L77", + "_origin": "ast", + "community": 111, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. forbidden actions", + "node_kind": "heading", + "id": "ai_agency_agents_10_tech_writer_5_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L96", + "_origin": "ast", + "community": 111, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "node_kind": "heading", + "id": "ai_agency_agents_10_tech_writer_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L21", + "_origin": "ast", + "community": 111, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "node_kind": "heading", + "id": "ai_agency_agents_10_tech_writer_operational_rules_boundaries" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L84", + "_origin": "ast", + "community": 111, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "node_kind": "heading", + "id": "ai_agency_agents_10_tech_writer_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L1", + "_origin": "ast", + "community": 111, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "node_kind": "heading", + "id": "ai_agency_agents_10_tech_writer_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L11", + "_origin": "ast", + "community": 111, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "node_kind": "heading", + "id": "ai_agency_agents_10_tech_writer_strict_input_specifications_what_files_to_read" + }, + { + "label": "11_deploy.md", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L1", + "_origin": "ast", + "community": 112, + "community_name": "Operational Rules & Boundaries", + "norm_label": "11_deploy.md", + "node_kind": "page", + "id": "ai_agency_agents_11_deploy" + }, + { + "label": "1. Pre-Deployment Checklist", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L22", + "_origin": "ast", + "community": 112, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. pre-deployment checklist", + "node_kind": "heading", + "id": "ai_agency_agents_11_deploy_1_pre_deployment_checklist" + }, + { + "label": "2. Build Verification", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", "source_location": "L37", "_origin": "ast", - "id": "backend_scripts_generate_openapi_app_module_1", - "community": 143, - "community_name": "generate-openapi.js", - "norm_label": "app_module_1" + "community": 112, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. build verification", + "node_kind": "heading", + "id": "ai_agency_agents_11_deploy_2_build_verification" }, { - "label": "core_1", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L36", + "label": "3. Deployment Strategy (Based on Target)", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L52", "_origin": "ast", - "id": "backend_scripts_generate_openapi_core_1", - "community": 143, - "community_name": "generate-openapi.js", - "norm_label": "core_1" + "community": 112, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. deployment strategy (based on target)", + "node_kind": "heading", + "id": "ai_agency_agents_11_deploy_3_deployment_strategy_based_on_target" }, { - "label": "fs", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L39", + "label": "4. Post-Deployment Health Check", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L75", "_origin": "ast", - "id": "backend_scripts_generate_openapi_fs", - "community": 143, - "community_name": "generate-openapi.js", - "norm_label": "fs" + "community": 112, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. post-deployment health check", + "node_kind": "heading", + "id": "ai_agency_agents_11_deploy_4_post_deployment_health_check" }, { - "label": "generate-openapi.js", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", + "label": "5. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L82", + "_origin": "ast", + "community": 112, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. forbidden actions", + "node_kind": "heading", + "id": "ai_agency_agents_11_deploy_5_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L102", + "_origin": "ast", + "community": 112, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "node_kind": "heading", + "id": "ai_agency_agents_11_deploy_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L20", + "_origin": "ast", + "community": 112, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "node_kind": "heading", + "id": "ai_agency_agents_11_deploy_operational_rules_boundaries" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L90", + "_origin": "ast", + "community": 112, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "node_kind": "heading", + "id": "ai_agency_agents_11_deploy_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", "source_location": "L1", "_origin": "ast", - "id": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", - "community": 143, - "community_name": "generate-openapi.js", - "norm_label": "generate-openapi.js" + "community": 112, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "node_kind": "heading", + "id": "ai_agency_agents_11_deploy_role_core_objective" }, { - "label": "path", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L40", + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L9", "_origin": "ast", - "id": "backend_scripts_generate_openapi_path", - "community": 143, - "community_name": "generate-openapi.js", - "norm_label": "path" + "community": 112, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "node_kind": "heading", + "id": "ai_agency_agents_11_deploy_strict_input_specifications_what_files_to_read" }, { - "label": "swagger_1", + "label": "create-review.dto.ts", "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L38", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_swagger_1", - "community": 143, - "community_name": "generate-openapi.js", - "norm_label": "swagger_1" - }, - { - "label": "yaml", - "file_type": "code", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L41", - "_origin": "ast", - "id": "backend_scripts_generate_openapi_yaml", - "community": 143, - "community_name": "generate-openapi.js", - "norm_label": "yaml" - }, - { - "label": "@testing-library/react", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L24", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_testing_library_react", - "community": 144, - "community_name": "@testing-library/react", - "norm_label": "@testing-library/react" - }, - { - "label": "@testing-library/react", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L24", - "_origin": "ast", - "id": "testing_library_react", - "community": 144, - "community_name": "@testing-library/react", - "norm_label": "@testing-library/react" - }, - { - "label": "admin.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/admin.controller.ts", + "source_file": "backend/src/reviews/dto/create-review.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_admin_admin_controller", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "admin.controller.ts" + "community": 113, + "community_name": "CreateReviewDto", + "norm_label": "create-review.dto.ts", + "id": "backend_src_reviews_dto_create_review_dto" }, { - "label": "admin.controller.spec.ts", + "label": "update-review.dto.ts", "file_type": "code", - "source_file": "backend/src/admin/admin.controller.spec.ts", + "source_file": "backend/src/reviews/dto/update-review.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_admin_admin_controller_spec", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "admin.controller.spec.ts" - }, - { - "label": "admin.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_admin_service", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "admin.service.ts" - }, - { - "label": "product.dto.ts", - "file_type": "code", - "source_file": "backend/src/admin/dto/product.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_dto_product_dto", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "product.dto.ts" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_product_dto_ts_apipropertyoptional", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsArray", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_product_dto_ts_isarray", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "isarray" - }, - { - "label": "IsBoolean", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_product_dto_ts_isboolean", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "isboolean" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_product_dto_ts_isnumber", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_product_dto_ts_isoptional", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_product_dto_ts_isstring", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "isstring" - }, - { - "label": "user.dto.ts", - "file_type": "code", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_dto_user_dto", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "user.dto.ts" + "community": 113, + "community_name": "CreateReviewDto", + "norm_label": "update-review.dto.ts", + "id": "backend_src_reviews_dto_update_review_dto" }, { "label": "ApiProperty", @@ -22911,54 +19771,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_ts_apiproperty", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "apiproperty" + "community": 113, + "community_name": "CreateReviewDto", + "norm_label": "apiproperty", + "id": "backend_src_reviews_dto_update_review_dto_ts_apiproperty" }, { - "label": "ApiPropertyOptional", + "label": "IsIn", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_ts_apipropertyoptional", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsEmail", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_ts_isemail", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "isemail" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_ts_isnotempty", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_ts_isnumber", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "isnumber" + "community": 113, + "community_name": "CreateReviewDto", + "norm_label": "isin", + "id": "backend_src_reviews_dto_update_review_dto_ts_isin" }, { "label": "IsOptional", @@ -22966,10 +19793,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_ts_isoptional", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "isoptional" + "community": 113, + "community_name": "CreateReviewDto", + "norm_label": "isoptional", + "id": "backend_src_reviews_dto_update_review_dto_ts_isoptional" }, { "label": "IsString", @@ -22977,131 +19804,32 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_ts_isstring", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "isstring" + "community": 113, + "community_name": "CreateReviewDto", + "norm_label": "isstring", + "id": "backend_src_reviews_dto_update_review_dto_ts_isstring" }, { - "label": "MinLength", + "label": "reviews.controller.ts", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_user_dto_ts_minlength", - "community": 145, - "community_name": "admin.service.ts", - "norm_label": "minlength" - }, - { - "label": "01-system-discovery.md", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", + "source_file": "backend/src/reviews/reviews.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_01_system_discovery", - "community": 146, - "community_name": "System Discovery", - "norm_label": "01-system-discovery.md" + "community": 18, + "community_name": "JwtAuthGuard", + "norm_label": "reviews.controller.ts", + "id": "backend_src_reviews_reviews_controller" }, { - "label": "Active Core Applications", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L6", - "_origin": "ast", - "id": "docs_audit_01_system_discovery_active_core_applications", - "community": 146, - "community_name": "System Discovery", - "norm_label": "active core applications" - }, - { - "label": "Current Architecture", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_01_system_discovery_current_architecture", - "community": 146, - "community_name": "System Discovery", - "norm_label": "current architecture" - }, - { - "label": "Evidence-Based Status Matrix", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L36", - "_origin": "ast", - "id": "docs_audit_01_system_discovery_evidence_based_status_matrix", - "community": 146, - "community_name": "System Discovery", - "norm_label": "evidence-based status matrix" - }, - { - "label": "Excluded / Non-Auditable Artifacts", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L12", - "_origin": "ast", - "id": "docs_audit_01_system_discovery_excluded_non_auditable_artifacts", - "community": 146, - "community_name": "System Discovery", - "norm_label": "excluded / non-auditable artifacts" - }, - { - "label": "Major Business Domains Discovered", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L18", - "_origin": "ast", - "id": "docs_audit_01_system_discovery_major_business_domains_discovered", - "community": 146, - "community_name": "System Discovery", - "norm_label": "major business domains discovered" - }, - { - "label": "System Discovery", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", + "label": "reviews.module.ts", + "file_type": "code", + "source_file": "backend/src/reviews/reviews.module.ts", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_01_system_discovery_system_discovery", - "community": 146, - "community_name": "System Discovery", - "norm_label": "system discovery" - }, - { - "label": "Technical Architecture Summary", - "file_type": "document", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L27", - "_origin": "ast", - "id": "docs_audit_01_system_discovery_technical_architecture_summary", - "community": 146, - "community_name": "System Discovery", - "norm_label": "technical architecture summary" - }, - { - "label": "revalidation.module.ts", - "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_module", - "community": 147, - "community_name": "RevalidationService", - "norm_label": "revalidation.module.ts" - }, - { - "label": "Global", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_module_ts_global", - "community": 147, - "community_name": "RevalidationService", - "norm_label": "global" + "community": 1, + "community_name": "app.module.ts", + "norm_label": "reviews.module.ts", + "id": "backend_src_reviews_reviews_module" }, { "label": "Module", @@ -23109,21 +19837,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_module_ts_module", - "community": 147, - "community_name": "RevalidationService", - "norm_label": "module" + "community": 1, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_reviews_reviews_module_ts_module" }, { - "label": "revalidation.service.ts", + "label": "reviews.service.ts", "file_type": "code", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_file": "backend/src/reviews/reviews.service.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service", - "community": 147, - "community_name": "RevalidationService", - "norm_label": "revalidation.service.ts" + "community": 113, + "community_name": "CreateReviewDto", + "norm_label": "reviews.service.ts", + "id": "backend_src_reviews_reviews_service" }, { "label": "Injectable", @@ -23131,307 +19859,1262 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_common_revalidation_revalidation_service_ts_injectable", - "community": 147, - "community_name": "RevalidationService", - "norm_label": "injectable" + "community": 10, + "community_name": "ReviewsService", + "norm_label": "injectable", + "id": "backend_src_reviews_reviews_service_ts_injectable" }, { - "label": "wiki/[slug]/page.tsx", + "label": "app.controller.ts", "file_type": "code", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_file": "backend/src/app.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_wiki_slug_page", - "community": 148, - "community_name": "wiki/[slug]/page.tsx", - "norm_label": "wiki/[slug]/page.tsx" + "community": 114, + "community_name": "AppService", + "norm_label": "app.controller.ts", + "id": "backend_src_app_controller" }, { - "label": "SmsSettingsPage.tsx", + "label": "app.controller.spec.ts", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_file": "backend/src/app.controller.spec.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smssettingspage", - "community": 149, - "community_name": "SmsSettingsPage.tsx", - "norm_label": "smssettingspage.tsx" + "community": 114, + "community_name": "AppService", + "norm_label": "app.controller.spec.ts", + "id": "backend_src_app_controller_spec" }, { - "label": "SmsSettingsPage", + "label": "Controller", "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L39", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_smssettingspage", - "community": 149, - "community_name": "SmsSettingsPage.tsx", - "norm_label": "smssettingspage" + "community": 114, + "community_name": "AppService", + "norm_label": "controller", + "id": "backend_src_app_controller_ts_controller" }, { - "label": "ProtectedRoute.tsx", + "label": "Get", "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 114, + "community_name": "AppService", + "norm_label": "get", + "id": "backend_src_app_controller_ts_get" + }, + { + "label": "app.service.ts", + "file_type": "code", + "source_file": "backend/src/app.service.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_components_protectedroute", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "protectedroute.tsx" + "community": 114, + "community_name": "AppService", + "norm_label": "app.service.ts", + "id": "backend_src_app_service" }, { - "label": "B2BManager.tsx", + "label": "Injectable", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_b2bmanager", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "b2bmanager.tsx" + "community": 114, + "community_name": "AppService", + "norm_label": "injectable", + "id": "backend_src_app_service_ts_injectable" }, { - "label": "Login.tsx", + "label": "@types/react-dom", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Login.tsx", - "source_location": "L1", + "source_file": "frontend/application/package.json", + "source_location": "L27", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_login", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "login.tsx" + "community": 50, + "community_name": "devDependencies", + "norm_label": "@types/react-dom", + "id": "frontend_application_package_devdependencies_types_react_dom" }, { - "label": "SeoSettingsPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L1", + "label": "@types/react-dom", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L27", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_seosettingspage", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "seosettingspage.tsx" + "community": 50, + "community_name": "devDependencies", + "norm_label": "@types/react-dom", + "id": "frontend_application_package_json_types_react_dom" }, { - "label": "SmartAdvisorManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_smartadvisormanager", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "smartadvisormanager.tsx" - }, - { - "label": "SystemSettingsPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_systemsettingspage", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "systemsettingspage.tsx" - }, - { - "label": "B2BManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L32", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_b2bmanager", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "b2bmanager" - }, - { - "label": "SeoSettingsPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_seosettingspage", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "seosettingspage" - }, - { - "label": "SmartAdvisorManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L28", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "smartadvisormanager" - }, - { - "label": "SystemSettingsPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L38", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "systemsettingspage" - }, - { - "label": "src/services/api.ts", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_services_api", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "src/services/api.ts" - }, - { - "label": "failedQueue", - "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L32", - "_origin": "ast", - "id": "frontend_admin_panel_src_services_api_failedqueue", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "failedqueue" - }, - { - "label": "adminAuthStore.ts", - "file_type": "code", - "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_store_adminauthstore", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "adminauthstore.ts" - }, - { - "label": "useAdminAuthStore", - "file_type": "code", - "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "useadminauthstore" - }, - { - "label": "admin.ts", - "file_type": "code", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_types_admin", - "community": 15, - "community_name": "src/services/api.ts", - "norm_label": "admin.ts" - }, - { - "label": "prd.md", + "label": "vazirmatn-v33.003/CHANGELOG.md", "file_type": "document", - "source_file": ".ai_agency/specs/prd.md", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_prd", - "community": 150, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "prd.md" + "community": 116, + "community_name": "Vazirmatn Changelog", + "norm_label": "vazirmatn-v33.003/changelog.md", + "node_kind": "page", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog" }, { - "label": "1. Executive Vision", + "label": "32.0.0", "file_type": "document", - "source_file": ".ai_agency/specs/prd.md", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L85", + "_origin": "ast", + "community": 116, + "community_name": "Vazirmatn Changelog", + "norm_label": "32.0.0", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_0_0" + }, + { + "label": "32.1", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L77", + "_origin": "ast", + "community": 116, + "community_name": "Vazirmatn Changelog", + "norm_label": "32.1", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_1" + }, + { + "label": "32.101", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L69", + "_origin": "ast", + "community": 116, + "community_name": "Vazirmatn Changelog", + "norm_label": "32.101", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_101" + }, + { + "label": "32.102", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L57", + "_origin": "ast", + "community": 116, + "community_name": "Vazirmatn Changelog", + "norm_label": "32.102", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_102" + }, + { + "label": "33.000", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L31", + "_origin": "ast", + "community": 116, + "community_name": "Vazirmatn Changelog", + "norm_label": "33.000", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_000" + }, + { + "label": "33.001", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L23", + "_origin": "ast", + "community": 116, + "community_name": "Vazirmatn Changelog", + "norm_label": "33.001", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_001" + }, + { + "label": "33.002", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L11", + "_origin": "ast", + "community": 116, + "community_name": "Vazirmatn Changelog", + "norm_label": "33.002", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_002" + }, + { + "label": "33.003", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", "source_location": "L3", "_origin": "ast", - "id": "ai_agency_specs_prd_1_executive_vision", - "community": 150, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "1. executive vision" + "community": 116, + "community_name": "Vazirmatn Changelog", + "norm_label": "33.003", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_003" }, { - "label": "2. Target Audience", + "label": "Old Vazir Changelog", "file_type": "document", - "source_file": ".ai_agency/specs/prd.md", - "source_location": "L6", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L158", "_origin": "ast", - "id": "ai_agency_specs_prd_2_target_audience", - "community": 150, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "2. target audience" + "community": 116, + "community_name": "Vazirmatn Changelog", + "norm_label": "old vazir changelog", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_old_vazir_changelog" }, { - "label": "3. Functional Requirements", + "label": "Vazirmatn Changelog", "file_type": "document", - "source_file": ".ai_agency/specs/prd.md", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L1", + "_origin": "ast", + "community": 116, + "community_name": "Vazirmatn Changelog", + "norm_label": "vazirmatn changelog", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog" + }, + { + "label": "vazirmatn-v33.003/README.md", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 117, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "vazirmatn-v33.003/readme.md", + "node_kind": "page", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme" + }, + { + "label": "Arch Linux ([AUR](https://aur.archlinux.org/packages/vazirmatn-fonts))", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L41", + "_origin": "ast", + "community": 117, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "arch linux ([aur](https://aur.archlinux.org/packages/vazirmatn-fonts))", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_arch_linux_aur_https_aur_archlinux_org_packages_vazirmatn_fonts" + }, + { + "label": "Authors", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L60", + "_origin": "ast", + "community": 117, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "authors", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_authors" + }, + { + "label": "Build", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L46", + "_origin": "ast", + "community": 117, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "build", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_build" + }, + { + "label": "CDN", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L27", + "_origin": "ast", + "community": 117, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "cdn", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_cdn" + }, + { + "label": "Download", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L11", + "_origin": "ast", + "community": 117, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "download", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_download" + }, + { + "label": "Install", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", "source_location": "L9", "_origin": "ast", - "id": "ai_agency_specs_prd_3_functional_requirements", - "community": 150, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "3. functional requirements" + "community": 117, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "install", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install" }, { - "label": "4. Non-Functional Requirements (Performance, Security)", + "label": "License", "file_type": "document", - "source_file": ".ai_agency/specs/prd.md", - "source_location": "L12", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L57", "_origin": "ast", - "id": "ai_agency_specs_prd_4_non_functional_requirements_performance_security", - "community": 150, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "4. non-functional requirements (performance, security)" + "community": 117, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "license", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_license" }, { - "label": "5. Epic / Feature Breakdown", + "label": "[npm](https://www.npmjs.com/package/vazirmatn)", "file_type": "document", - "source_file": ".ai_agency/specs/prd.md", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L17", + "_origin": "ast", + "community": 117, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "[npm](https://www.npmjs.com/package/vazirmatn)", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_npm_https_www_npmjs_com_package_vazirmatn" + }, + { + "label": "Thank you", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L50", + "_origin": "ast", + "community": 117, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "thank you", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_thank_you" + }, + { + "label": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 117, + "community_name": "Vazirmatn Font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "norm_label": "vazirmatn font \u0641\u0648\u0646\u062a \u0648\u0632\u06cc\u0631\u0645\u062a\u0646", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646" + }, + { + "label": "02_ceo.md", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L1", + "_origin": "ast", + "community": 118, + "community_name": "Operational Rules & Boundaries", + "norm_label": "02_ceo.md", + "node_kind": "page", + "id": "ai_agency_agents_02_ceo" + }, + { + "label": "1. Mode & Direction Decision", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L17", + "_origin": "ast", + "community": 118, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. mode & direction decision", + "node_kind": "heading", + "id": "ai_agency_agents_02_ceo_1_mode_direction_decision" + }, + { + "label": "2. Brownfield Strategic Evaluation", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L25", + "_origin": "ast", + "community": 118, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. brownfield strategic evaluation", + "node_kind": "heading", + "id": "ai_agency_agents_02_ceo_2_brownfield_strategic_evaluation" + }, + { + "label": "3. Risk Assessment", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L32", + "_origin": "ast", + "community": 118, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. risk assessment", + "node_kind": "heading", + "id": "ai_agency_agents_02_ceo_3_risk_assessment" + }, + { + "label": "4. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L39", + "_origin": "ast", + "community": 118, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. forbidden actions", + "node_kind": "heading", + "id": "ai_agency_agents_02_ceo_4_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L56", + "_origin": "ast", + "community": 118, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "node_kind": "heading", + "id": "ai_agency_agents_02_ceo_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", "source_location": "L15", "_origin": "ast", - "id": "ai_agency_specs_prd_5_epic_feature_breakdown", - "community": 150, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "5. epic / feature breakdown" + "community": 118, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "node_kind": "heading", + "id": "ai_agency_agents_02_ceo_operational_rules_boundaries" }, { - "label": "Product Requirement Document (PRD)", + "label": "Required Output Artifacts (What files to write/update)", "file_type": "document", - "source_file": ".ai_agency/specs/prd.md", - "source_location": "L1", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L47", "_origin": "ast", - "id": "ai_agency_specs_prd_product_requirement_document_prd", - "community": 150, - "community_name": "Product Requirement Document (PRD)", - "norm_label": "product requirement document (prd)" + "community": 118, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "node_kind": "heading", + "id": "ai_agency_agents_02_ceo_required_output_artifacts_what_files_to_write_update" }, { - "label": "auth.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/auth/auth.controller.spec.ts", + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", "source_location": "L1", "_origin": "ast", - "id": "backend_src_auth_auth_controller_spec", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "auth.controller.spec.ts" + "community": 118, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "node_kind": "heading", + "id": "ai_agency_agents_02_ceo_role_core_objective" }, { - "label": "auth.service.ts", + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L7", + "_origin": "ast", + "community": 118, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "node_kind": "heading", + "id": "ai_agency_agents_02_ceo_strict_input_specifications_what_files_to_read" + }, + { + "label": "prisma/tsconfig.json", "file_type": "code", - "source_file": "backend/src/auth/auth.service.ts", + "source_file": "backend/prisma/tsconfig.json", "source_location": "L1", "_origin": "ast", - "id": "backend_src_auth_auth_service", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "auth.service.ts" + "community": 119, + "community_name": "compilerOptions", + "norm_label": "prisma/tsconfig.json", + "id": "backend_prisma_tsconfig" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L2", + "_origin": "ast", + "community": 119, + "community_name": "compilerOptions", + "norm_label": "compileroptions", + "id": "backend_prisma_tsconfig_compileroptions" + }, + { + "label": "esModuleInterop", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "community": 119, + "community_name": "compilerOptions", + "norm_label": "esmoduleinterop", + "id": "backend_prisma_tsconfig_compileroptions_esmoduleinterop" + }, + { + "label": "module", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L3", + "_origin": "ast", + "community": 119, + "community_name": "compilerOptions", + "norm_label": "module", + "id": "backend_prisma_tsconfig_compileroptions_module" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "community": 119, + "community_name": "compilerOptions", + "norm_label": "moduleresolution", + "id": "backend_prisma_tsconfig_compileroptions_moduleresolution" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L6", + "_origin": "ast", + "community": 119, + "community_name": "compilerOptions", + "norm_label": "skiplibcheck", + "id": "backend_prisma_tsconfig_compileroptions_skiplibcheck" + }, + { + "label": "types", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L7", + "_origin": "ast", + "community": 119, + "community_name": "compilerOptions", + "norm_label": "types", + "id": "backend_prisma_tsconfig_compileroptions_types" + }, + { + "label": "include", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L9", + "_origin": "ast", + "community": 119, + "community_name": "compilerOptions", + "norm_label": "include", + "id": "backend_prisma_tsconfig_include" + }, + { + "label": "node", + "file_type": "concept", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L7", + "_origin": "ast", + "community": 119, + "community_name": "compilerOptions", + "norm_label": "node", + "id": "backend_prisma_tsconfig_json_ref_node" + }, + { + "label": "./**/*.ts", + "file_type": "concept", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L9", + "_origin": "ast", + "community": 119, + "community_name": "compilerOptions", + "norm_label": "./**/*.ts", + "id": "backend_prisma_tsconfig_json_ref_ts" + }, + { + "label": "playwright.config.ts", + "file_type": "code", + "source_file": "playwright.config.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "playwright.config.ts", + "id": "playwright_config" + }, + { + "label": "admin-b2b-submissions.spec.ts", + "file_type": "code", + "source_file": "tests/e2e/admin/admin-b2b-submissions.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "admin-b2b-submissions.spec.ts", + "id": "tests_e2e_admin_admin_b2b_submissions_spec" + }, + { + "label": "admin-blogs-crud.spec.ts", + "file_type": "code", + "source_file": "tests/e2e/admin/admin-blogs-crud.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "admin-blogs-crud.spec.ts", + "id": "tests_e2e_admin_admin_blogs_crud_spec" + }, + { + "label": "admin-crud.spec.ts", + "file_type": "code", + "source_file": "tests/e2e/admin/admin-crud.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "admin-crud.spec.ts", + "id": "tests_e2e_admin_admin_crud_spec" + }, + { + "label": "admin-orders-flow.spec.ts", + "file_type": "code", + "source_file": "tests/e2e/admin/admin-orders-flow.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "admin-orders-flow.spec.ts", + "id": "tests_e2e_admin_admin_orders_flow_spec" + }, + { + "label": "b2b-flow.spec.ts", + "file_type": "code", + "source_file": "tests/e2e/storefront/b2b-flow.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "b2b-flow.spec.ts", + "id": "tests_e2e_storefront_b2b_flow_spec" + }, + { + "label": "blog-wiki.spec.ts", + "file_type": "code", + "source_file": "tests/e2e/storefront/blog-wiki.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "blog-wiki.spec.ts", + "id": "tests_e2e_storefront_blog_wiki_spec" + }, + { + "label": "cart-operations.spec.ts", + "file_type": "code", + "source_file": "tests/e2e/storefront/cart-operations.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "cart-operations.spec.ts", + "id": "tests_e2e_storefront_cart_operations_spec" + }, + { + "label": "checkout-flow.spec.ts", + "file_type": "code", + "source_file": "tests/e2e/storefront/checkout-flow.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "checkout-flow.spec.ts", + "id": "tests_e2e_storefront_checkout_flow_spec" + }, + { + "label": "contact.spec.ts", + "file_type": "code", + "source_file": "tests/e2e/storefront/contact.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "contact.spec.ts", + "id": "tests_e2e_storefront_contact_spec" + }, + { + "label": "order-tracking.spec.ts", + "file_type": "code", + "source_file": "tests/e2e/storefront/order-tracking.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "order-tracking.spec.ts", + "id": "tests_e2e_storefront_order_tracking_spec" + }, + { + "label": "shop-filter-search.spec.ts", + "file_type": "code", + "source_file": "tests/e2e/storefront/shop-filter-search.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "shop-filter-search.spec.ts", + "id": "tests_e2e_storefront_shop_filter_search_spec" + }, + { + "label": "admin-auth.setup.ts", + "file_type": "code", + "source_file": "tests/fixtures/admin-auth.setup.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "admin-auth.setup.ts", + "id": "tests_fixtures_admin_auth_setup" + }, + { + "label": "authFile", + "file_type": "code", + "source_file": "tests/fixtures/admin-auth.setup.ts", + "source_location": "L5", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "authfile", + "id": "tests_fixtures_admin_auth_setup_authfile" + }, + { + "label": "index.ts", + "file_type": "code", + "source_file": "tests/fixtures/index.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "index.ts", + "id": "tests_fixtures_index" + }, + { + "label": "test", + "file_type": "code", + "source_file": "tests/fixtures/index.ts", + "source_location": "L4", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "test", + "id": "tests_fixtures_index_test" + }, + { + "label": "tsconfig.json", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "tsconfig.json", + "id": "tsconfig" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L2", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "compileroptions", + "id": "tsconfig_compileroptions" + }, + { + "label": "esModuleInterop", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L10", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "esmoduleinterop", + "id": "tsconfig_compileroptions_esmoduleinterop" + }, + { + "label": "lib", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L6", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "lib", + "id": "tsconfig_compileroptions_lib" + }, + { + "label": "module", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "module", + "id": "tsconfig_compileroptions_module" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "moduleresolution", + "id": "tsconfig_compileroptions_moduleresolution" + }, + { + "label": "noEmit", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L9", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "noemit", + "id": "tsconfig_compileroptions_noemit" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L7", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "skiplibcheck", + "id": "tsconfig_compileroptions_skiplibcheck" + }, + { + "label": "strict", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L8", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "strict", + "id": "tsconfig_compileroptions_strict" + }, + { + "label": "target", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L3", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "target", + "id": "tsconfig_compileroptions_target" + }, + { + "label": "types", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L11", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "types", + "id": "tsconfig_compileroptions_types" + }, + { + "label": "exclude", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L17", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "exclude", + "id": "tsconfig_exclude" + }, + { + "label": "include", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "include", + "id": "tsconfig_include" + }, + { + "label": "backend", + "file_type": "concept", + "source_file": "tsconfig.json", + "source_location": "L17", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "backend", + "id": "ref_backend" + }, + { + "label": "frontend", + "file_type": "concept", + "source_file": "tsconfig.json", + "source_location": "L17", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "frontend", + "id": "ref_frontend" + }, + { + "label": "playwright.config.ts", + "file_type": "concept", + "source_file": "tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "playwright.config.ts", + "id": "ref_playwright_config_ts" + }, + { + "label": "@playwright/test", + "file_type": "concept", + "source_file": "tsconfig.json", + "source_location": "L11", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "@playwright/test", + "id": "ref_playwright_test" + }, + { + "label": "tests/**/*.ts", + "file_type": "concept", + "source_file": "tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "tests/**/*.ts", + "id": "ref_tests_ts" + }, + { + "label": "DOM", + "file_type": "concept", + "source_file": "tsconfig.json", + "source_location": "L6", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "dom", + "id": "tsconfig_json_ref_dom" + }, + { + "label": "DOM.Iterable", + "file_type": "concept", + "source_file": "tsconfig.json", + "source_location": "L6", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "dom.iterable", + "id": "tsconfig_json_ref_dom_iterable" + }, + { + "label": "ESNext", + "file_type": "concept", + "source_file": "tsconfig.json", + "source_location": "L6", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "esnext", + "id": "tsconfig_json_ref_esnext" + }, + { + "label": "node", + "file_type": "concept", + "source_file": "tsconfig.json", + "source_location": "L11", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "node", + "id": "tsconfig_json_ref_node" + }, + { + "label": "node_modules", + "file_type": "concept", + "source_file": "tsconfig.json", + "source_location": "L17", + "_origin": "ast", + "community": 12, + "community_name": "index.ts", + "norm_label": "node_modules", + "id": "tsconfig_json_ref_node_modules" + }, + { + "label": "tsconfig.seed.json", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L1", + "_origin": "ast", + "community": 120, + "community_name": "compilerOptions", + "norm_label": "tsconfig.seed.json", + "id": "backend_prisma_tsconfig_seed" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L2", + "_origin": "ast", + "community": 120, + "community_name": "compilerOptions", + "norm_label": "compileroptions", + "id": "backend_prisma_tsconfig_seed_compileroptions" + }, + { + "label": "esModuleInterop", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L5", + "_origin": "ast", + "community": 120, + "community_name": "compilerOptions", + "norm_label": "esmoduleinterop", + "id": "backend_prisma_tsconfig_seed_compileroptions_esmoduleinterop" + }, + { + "label": "module", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L3", + "_origin": "ast", + "community": 120, + "community_name": "compilerOptions", + "norm_label": "module", + "id": "backend_prisma_tsconfig_seed_compileroptions_module" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L4", + "_origin": "ast", + "community": 120, + "community_name": "compilerOptions", + "norm_label": "moduleresolution", + "id": "backend_prisma_tsconfig_seed_compileroptions_moduleresolution" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L6", + "_origin": "ast", + "community": 120, + "community_name": "compilerOptions", + "norm_label": "skiplibcheck", + "id": "backend_prisma_tsconfig_seed_compileroptions_skiplibcheck" + }, + { + "label": "types", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L7", + "_origin": "ast", + "community": 120, + "community_name": "compilerOptions", + "norm_label": "types", + "id": "backend_prisma_tsconfig_seed_compileroptions_types" + }, + { + "label": "include", + "file_type": "code", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L9", + "_origin": "ast", + "community": 120, + "community_name": "compilerOptions", + "norm_label": "include", + "id": "backend_prisma_tsconfig_seed_include" + }, + { + "label": "node", + "file_type": "concept", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L7", + "_origin": "ast", + "community": 120, + "community_name": "compilerOptions", + "norm_label": "node", + "id": "backend_prisma_tsconfig_seed_json_ref_node" + }, + { + "label": "./**/*.ts", + "file_type": "concept", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L9", + "_origin": "ast", + "community": 120, + "community_name": "compilerOptions", + "norm_label": "./**/*.ts", + "id": "backend_prisma_tsconfig_seed_json_ref_ts" + }, + { + "label": "backend/README.md", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 121, + "community_name": "backend/README.md", + "norm_label": "backend/readme.md", + "node_kind": "page", + "id": "backend_readme" + }, + { + "label": "Compile and run the project", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L34", + "_origin": "ast", + "community": 121, + "community_name": "backend/README.md", + "norm_label": "compile and run the project", + "node_kind": "heading", + "id": "backend_readme_compile_and_run_the_project" + }, + { + "label": "Deployment", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L60", + "_origin": "ast", + "community": 121, + "community_name": "backend/README.md", + "norm_label": "deployment", + "node_kind": "heading", + "id": "backend_readme_deployment" + }, + { + "label": "Description", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L24", + "_origin": "ast", + "community": 121, + "community_name": "backend/README.md", + "norm_label": "description", + "node_kind": "heading", + "id": "backend_readme_description" + }, + { + "label": "License", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L96", + "_origin": "ast", + "community": 121, + "community_name": "backend/README.md", + "norm_label": "license", + "node_kind": "heading", + "id": "backend_readme_license" + }, + { + "label": "Project setup", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L28", + "_origin": "ast", + "community": 121, + "community_name": "backend/README.md", + "norm_label": "project setup", + "node_kind": "heading", + "id": "backend_readme_project_setup" + }, + { + "label": "Resources", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L73", + "_origin": "ast", + "community": 121, + "community_name": "backend/README.md", + "norm_label": "resources", + "node_kind": "heading", + "id": "backend_readme_resources" + }, + { + "label": "Run tests", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L47", + "_origin": "ast", + "community": 121, + "community_name": "backend/README.md", + "norm_label": "run tests", + "node_kind": "heading", + "id": "backend_readme_run_tests" + }, + { + "label": "Stay in touch", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L90", + "_origin": "ast", + "community": 121, + "community_name": "backend/README.md", + "norm_label": "stay in touch", + "node_kind": "heading", + "id": "backend_readme_stay_in_touch" + }, + { + "label": "Support", + "file_type": "document", + "source_file": "backend/README.md", + "source_location": "L86", + "_origin": "ast", + "community": 121, + "community_name": "backend/README.md", + "norm_label": "support", + "node_kind": "heading", + "id": "backend_readme_support" + }, + { + "label": "videos/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "videos/page.tsx", + "id": "frontend_application_app_videos_page" }, { "label": "Injectable", @@ -23439,43 +21122,668 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_auth_auth_service_ts_injectable", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "injectable" + "community": 51, + "community_name": "BlogsController", + "norm_label": "injectable", + "id": "backend_src_admin_blogs_service_ts_injectable" }, { - "label": "send-otp.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/send-otp.dto.ts", + "label": "00-repository-map.md", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", "source_location": "L1", "_origin": "ast", - "id": "backend_src_auth_dto_send_otp_dto", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "send-otp.dto.ts" + "community": 124, + "community_name": "Repository Map", + "norm_label": "00-repository-map.md", + "node_kind": "page", + "id": "docs_audit_00_repository_map" }, { - "label": "ApiProperty", + "label": "1. Active Customer Storefront: React 19 + Vite Application", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L17", + "_origin": "ast", + "community": 124, + "community_name": "Repository Map", + "norm_label": "1. active customer storefront: react 19 + vite application", + "node_kind": "heading", + "id": "docs_audit_00_repository_map_1_active_customer_storefront_react_19_vite_application" + }, + { + "label": "2. Active Backend Service: NestJS Application", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L23", + "_origin": "ast", + "community": 124, + "community_name": "Repository Map", + "norm_label": "2. active backend service: nestjs application", + "node_kind": "heading", + "id": "docs_audit_00_repository_map_2_active_backend_service_nestjs_application" + }, + { + "label": "3. Excluded Placeholder / Non-Auditable Directories", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L29", + "_origin": "ast", + "community": 124, + "community_name": "Repository Map", + "norm_label": "3. excluded placeholder / non-auditable directories", + "node_kind": "heading", + "id": "docs_audit_00_repository_map_3_excluded_placeholder_non_auditable_directories" + }, + { + "label": "Active Applications & Non-Auditable Scopes", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L15", + "_origin": "ast", + "community": 124, + "community_name": "Repository Map", + "norm_label": "active applications & non-auditable scopes", + "node_kind": "heading", + "id": "docs_audit_00_repository_map_active_applications_non_auditable_scopes" + }, + { + "label": "Documentation Governance", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L61", + "_origin": "ast", + "community": 124, + "community_name": "Repository Map", + "norm_label": "documentation governance", + "node_kind": "heading", + "id": "docs_audit_00_repository_map_documentation_governance" + }, + { + "label": "Important Configuration & Infrastructure Files", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L50", + "_origin": "ast", + "community": 124, + "community_name": "Repository Map", + "norm_label": "important configuration & infrastructure files", + "node_kind": "heading", + "id": "docs_audit_00_repository_map_important_configuration_infrastructure_files" + }, + { + "label": "Mandatory Global Audit Exclusions", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L35", + "_origin": "ast", + "community": 124, + "community_name": "Repository Map", + "norm_label": "mandatory global audit exclusions", + "node_kind": "heading", + "id": "docs_audit_00_repository_map_mandatory_global_audit_exclusions" + }, + { + "label": "Repository Map", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L1", + "_origin": "ast", + "community": 124, + "community_name": "Repository Map", + "norm_label": "repository map", + "node_kind": "heading", + "id": "docs_audit_00_repository_map_repository_map" + }, + { + "label": "Repository Structure & Overview", + "file_type": "document", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L3", + "_origin": "ast", + "community": 124, + "community_name": "Repository Map", + "norm_label": "repository structure & overview", + "node_kind": "heading", + "id": "docs_audit_00_repository_map_repository_structure_overview" + }, + { + "label": "validate_integrity.js", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L1", + "_origin": "ast", + "community": 125, + "community_name": "validate_integrity.js", + "norm_label": "validate_integrity.js", + "id": "docs_audit_validate_integrity" + }, + { + "label": "dispSum", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L16", + "_origin": "ast", + "community": 125, + "community_name": "validate_integrity.js", + "norm_label": "dispsum", + "id": "docs_audit_validate_integrity_dispsum" + }, + { + "label": "errors", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L7", + "_origin": "ast", + "community": 125, + "community_name": "validate_integrity.js", + "norm_label": "errors", + "id": "docs_audit_validate_integrity_errors" + }, + { + "label": "invalidNewIds", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L27", + "_origin": "ast", + "community": 125, + "community_name": "validate_integrity.js", + "norm_label": "invalidnewids", + "id": "docs_audit_validate_integrity_invalidnewids" + }, + { + "label": "manifest", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L3", + "_origin": "ast", + "community": 125, + "community_name": "validate_integrity.js", + "norm_label": "manifest", + "id": "docs_audit_validate_integrity_manifest" + }, + { + "label": "report", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L43", + "_origin": "ast", + "community": 125, + "community_name": "validate_integrity.js", + "norm_label": "report", + "id": "docs_audit_validate_integrity_report" + }, + { + "label": "trackedFiles", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L4", + "_origin": "ast", + "community": 125, + "community_name": "validate_integrity.js", + "norm_label": "trackedfiles", + "id": "docs_audit_validate_integrity_trackedfiles" + }, + { + "label": "uninspected", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L38", + "_origin": "ast", + "community": 125, + "community_name": "validate_integrity.js", + "norm_label": "uninspected", + "id": "docs_audit_validate_integrity_uninspected" + }, + { + "label": "verifiedIndex", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L5", + "_origin": "ast", + "community": 125, + "community_name": "validate_integrity.js", + "norm_label": "verifiedindex", + "id": "docs_audit_validate_integrity_verifiedindex" + }, + { + "label": "warnings", + "file_type": "code", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L8", + "_origin": "ast", + "community": 125, + "community_name": "validate_integrity.js", + "norm_label": "warnings", + "id": "docs_audit_validate_integrity_warnings" + }, + { + "label": "admin-panel/package.json", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L1", + "_origin": "ast", + "community": 126, + "community_name": "admin-panel/package.json", + "norm_label": "admin-panel/package.json", + "id": "frontend_admin_panel_package" + }, + { + "label": "name", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L2", + "_origin": "ast", + "community": 126, + "community_name": "admin-panel/package.json", + "norm_label": "name", + "id": "frontend_admin_panel_package_name" + }, + { + "label": "private", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L3", + "_origin": "ast", + "community": 126, + "community_name": "admin-panel/package.json", + "norm_label": "private", + "id": "frontend_admin_panel_package_private" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L6", + "_origin": "ast", + "community": 126, + "community_name": "admin-panel/package.json", + "norm_label": "scripts", + "id": "frontend_admin_panel_package_scripts" + }, + { + "label": "build", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L8", + "_origin": "ast", + "community": 126, + "community_name": "admin-panel/package.json", + "norm_label": "build", + "id": "frontend_admin_panel_package_scripts_build" + }, + { + "label": "dev", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L7", + "_origin": "ast", + "community": 126, + "community_name": "admin-panel/package.json", + "norm_label": "dev", + "id": "frontend_admin_panel_package_scripts_dev" + }, + { + "label": "lint", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L9", + "_origin": "ast", + "community": 126, + "community_name": "admin-panel/package.json", + "norm_label": "lint", + "id": "frontend_admin_panel_package_scripts_lint" + }, + { + "label": "preview", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L10", + "_origin": "ast", + "community": 126, + "community_name": "admin-panel/package.json", + "norm_label": "preview", + "id": "frontend_admin_panel_package_scripts_preview" + }, + { + "label": "type", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L5", + "_origin": "ast", + "community": 126, + "community_name": "admin-panel/package.json", + "norm_label": "type", + "id": "frontend_admin_panel_package_type" + }, + { + "label": "version", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L4", + "_origin": "ast", + "community": 126, + "community_name": "admin-panel/package.json", + "norm_label": "version", + "id": "frontend_admin_panel_package_version" + }, + { + "label": "admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 127, + "community_name": "Sahel-Font", + "norm_label": "admin-panel/public/fonts/sahel-font-v3.4.0/readme.md", + "node_kind": "page", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme" + }, + { + "label": "Arch Linux", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L119", + "_origin": "ast", + "community": 127, + "community_name": "Sahel-Font", + "norm_label": "arch linux", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_arch_linux" + }, + { + "label": "Contributors", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L127", + "_origin": "ast", + "community": 127, + "community_name": "Sahel-Font", + "norm_label": "contributors", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_contributors" + }, + { + "label": "Install", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L103", + "_origin": "ast", + "community": 127, + "community_name": "Sahel-Font", + "norm_label": "install", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install" + }, + { + "label": "Known problems for variable version", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L14", + "_origin": "ast", + "community": 127, + "community_name": "Sahel-Font", + "norm_label": "known problems for variable version", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version" + }, + { + "label": "License", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L131", + "_origin": "ast", + "community": 127, + "community_name": "Sahel-Font", + "norm_label": "license", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_license" + }, + { + "label": "Sahel-Font", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 127, + "community_name": "Sahel-Font", + "norm_label": "sahel-font", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font" + }, + { + "label": "To Do (variable)", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L17", + "_origin": "ast", + "community": 127, + "community_name": "Sahel-Font", + "norm_label": "to do (variable)", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_to_do_variable" + }, + { + "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L83", + "_origin": "ast", + "community": 127, + "community_name": "Sahel-Font", + "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable" + }, + { + "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L24", + "_origin": "ast", + "community": 127, + "community_name": "Sahel-Font", + "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" + }, + { + "label": "admin.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "admin.controller.ts", + "id": "backend_src_admin_admin_controller" + }, + { + "label": "admin.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/admin/admin.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "admin.controller.spec.ts", + "id": "backend_src_admin_admin_controller_spec" + }, + { + "label": "ApiBearerAuth", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_auth_dto_send_otp_dto_ts_apiproperty", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "apiproperty" + "community": 128, + "community_name": "AdminController", + "norm_label": "apibearerauth", + "id": "backend_src_admin_admin_controller_ts_apibearerauth" }, { - "label": "IsNotEmpty", + "label": "ApiOperation", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_auth_dto_send_otp_dto_ts_isnotempty", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "isnotempty" + "community": 66, + "community_name": "ApiOperation", + "norm_label": "apioperation", + "id": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "label": "ApiQuery", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 66, + "community_name": "ApiOperation", + "norm_label": "apiquery", + "id": "backend_src_admin_admin_controller_ts_apiquery" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": "apitags", + "id": "backend_src_admin_admin_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": "body", + "id": "backend_src_admin_admin_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": "controller", + "id": "backend_src_admin_admin_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 122, + "community_name": "Param", + "norm_label": "delete", + "id": "backend_src_admin_admin_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 66, + "community_name": "ApiOperation", + "norm_label": "get", + "id": "backend_src_admin_admin_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 122, + "community_name": "Param", + "norm_label": "param", + "id": "backend_src_admin_admin_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 152, + "community_name": ".createCoupon", + "norm_label": "post", + "id": "backend_src_admin_admin_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": "put", + "id": "backend_src_admin_admin_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 66, + "community_name": "ApiOperation", + "norm_label": "query", + "id": "backend_src_admin_admin_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 128, + "community_name": "AdminController", + "norm_label": "useguards", + "id": "backend_src_admin_admin_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 76, + "community_name": "AdminService", + "norm_label": "injectable", + "id": "backend_src_admin_admin_service_ts_injectable" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 66, + "community_name": "ApiOperation", + "norm_label": "apipropertyoptional", + "id": "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 66, + "community_name": "ApiOperation", + "norm_label": "isoptional", + "id": "backend_src_admin_dto_admin_query_dto_ts_isoptional" }, { "label": "IsString", @@ -23483,43 +21791,373 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_auth_dto_send_otp_dto_ts_isstring", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "isstring" + "community": 66, + "community_name": "ApiOperation", + "norm_label": "isstring", + "id": "backend_src_admin_dto_admin_query_dto_ts_isstring" }, { - "label": "Matches", + "label": "product.dto.ts", + "file_type": "code", + "source_file": "backend/src/admin/dto/product.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "product.dto.ts", + "id": "backend_src_admin_dto_product_dto" + }, + { + "label": "ApiPropertyOptional", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_auth_dto_send_otp_dto_ts_matches", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "matches" + "community": 62, + "community_name": "ProductDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_admin_dto_product_dto_ts_apipropertyoptional" }, { - "label": "phone.utils.ts", + "label": "IsArray", "file_type": "code", - "source_file": "backend/src/common/utils/phone.utils.ts", - "source_location": "L1", + "source_file": "", + "source_location": "", "_origin": "ast", - "id": "backend_src_common_utils_phone_utils", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "phone.utils.ts" + "community": 62, + "community_name": "ProductDto", + "norm_label": "isarray", + "id": "backend_src_admin_dto_product_dto_ts_isarray" }, { - "label": "redis.service.spec.ts", + "label": "IsBoolean", "file_type": "code", - "source_file": "backend/src/redis/redis.service.spec.ts", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 62, + "community_name": "ProductDto", + "norm_label": "isboolean", + "id": "backend_src_admin_dto_product_dto_ts_isboolean" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 62, + "community_name": "ProductDto", + "norm_label": "isnumber", + "id": "backend_src_admin_dto_product_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 62, + "community_name": "ProductDto", + "norm_label": "isoptional", + "id": "backend_src_admin_dto_product_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 62, + "community_name": "ProductDto", + "norm_label": "isstring", + "id": "backend_src_admin_dto_product_dto_ts_isstring" + }, + { + "label": "user.dto.ts", + "file_type": "code", + "source_file": "backend/src/admin/dto/user.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_redis_redis_service_spec", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "redis.service.spec.ts" + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "user.dto.ts", + "id": "backend_src_admin_dto_user_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "apiproperty", + "id": "backend_src_admin_dto_user_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "apipropertyoptional", + "id": "backend_src_admin_dto_user_dto_ts_apipropertyoptional" + }, + { + "label": "IsEmail", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "isemail", + "id": "backend_src_admin_dto_user_dto_ts_isemail" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "isnotempty", + "id": "backend_src_admin_dto_user_dto_ts_isnotempty" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "isnumber", + "id": "backend_src_admin_dto_user_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "isoptional", + "id": "backend_src_admin_dto_user_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "isstring", + "id": "backend_src_admin_dto_user_dto_ts_isstring" + }, + { + "label": "MinLength", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "minlength", + "id": "backend_src_admin_dto_user_dto_ts_minlength" + }, + { + "label": "test-coverage-map.md", + "file_type": "document", + "source_file": "test-coverage-map.md", + "source_location": "L1", + "_origin": "ast", + "community": 129, + "community_name": "\u0646\u0642\u0634\u0647 \u062c\u0627\u0645\u0639 \u067e\u0648\u0634\u0634 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u062a\u0627\u0633\u0631\u06cc (E2E Test Coverage Map) \u2014 \u067e\u0631\u0648\u0698\u0647 Canina", + "norm_label": "test-coverage-map.md", + "id": "test_coverage_map" + }, + { + "label": "\u0646\u0642\u0634\u0647 \u062c\u0627\u0645\u0639 \u067e\u0648\u0634\u0634 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u062a\u0627\u0633\u0631\u06cc (E2E Test Coverage Map) \u2014 \u067e\u0631\u0648\u0698\u0647 Canina", + "file_type": "document", + "source_file": "test-coverage-map.md", + "source_location": "L1", + "_origin": "ast", + "community": 129, + "community_name": "\u0646\u0642\u0634\u0647 \u062c\u0627\u0645\u0639 \u067e\u0648\u0634\u0634 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u062a\u0627\u0633\u0631\u06cc (E2E Test Coverage Map) \u2014 \u067e\u0631\u0648\u0698\u0647 Canina", + "norm_label": "\u0646\u0642\u0634\u0647 \u062c\u0627\u0645\u0639 \u067e\u0648\u0634\u0634 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u062a\u0627\u0633\u0631\u06cc (e2e test coverage map) \u2014 \u067e\u0631\u0648\u0698\u0647 canina", + "id": "test_coverage_map_\u0646\u0642\u0634\u0647_\u062c\u0627\u0645\u0639_\u067e\u0648\u0634\u0634_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0633\u0631\u062a\u0627\u0633\u0631\u06cc_e2e_test_coverage_map_\u067e\u0631\u0648\u0698\u0647_canina" + }, + { + "label": "\u06f1. \u0645\u0639\u0645\u0627\u0631\u06cc \u0648 \u0646\u0642\u0634\u200c\u0647\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631\u06cc (User Roles)", + "file_type": "document", + "source_file": "test-coverage-map.md", + "source_location": "L7", + "_origin": "ast", + "community": 129, + "community_name": "\u0646\u0642\u0634\u0647 \u062c\u0627\u0645\u0639 \u067e\u0648\u0634\u0634 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u062a\u0627\u0633\u0631\u06cc (E2E Test Coverage Map) \u2014 \u067e\u0631\u0648\u0698\u0647 Canina", + "norm_label": "\u06f1. \u0645\u0639\u0645\u0627\u0631\u06cc \u0648 \u0646\u0642\u0634\u200c\u0647\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631\u06cc (user roles)", + "id": "test_coverage_map_\u06f1_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u0646\u0642\u0634_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631\u06cc_user_roles" + }, + { + "label": "\u06f2. \u0645\u0627\u062a\u0631\u06cc\u0633 \u062c\u0631\u06cc\u0627\u0646\u200c\u0647\u0627 \u0648 \u0642\u0627\u0628\u0644\u06cc\u062a\u200c\u0647\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631\u0645\u062d\u0648\u0631 (Feature & Flow Matrix)", + "file_type": "document", + "source_file": "test-coverage-map.md", + "source_location": "L39", + "_origin": "ast", + "community": 129, + "community_name": "\u0646\u0642\u0634\u0647 \u062c\u0627\u0645\u0639 \u067e\u0648\u0634\u0634 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u062a\u0627\u0633\u0631\u06cc (E2E Test Coverage Map) \u2014 \u067e\u0631\u0648\u0698\u0647 Canina", + "norm_label": "\u06f2. \u0645\u0627\u062a\u0631\u06cc\u0633 \u062c\u0631\u06cc\u0627\u0646\u200c\u0647\u0627 \u0648 \u0642\u0627\u0628\u0644\u06cc\u062a\u200c\u0647\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631\u0645\u062d\u0648\u0631 (feature & flow matrix)", + "id": "test_coverage_map_\u06f2_\u0645\u0627\u062a\u0631\u06cc\u0633_\u062c\u0631\u06cc\u0627\u0646_\u0647\u0627_\u0648_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631\u0645\u062d\u0648\u0631_feature_flow_matrix" + }, + { + "label": "\u06f3. \u0628\u0631\u0646\u0627\u0645\u0647 \u062a\u06a9\u0645\u06cc\u0644 \u0648 \u062a\u0648\u0633\u0639\u0647 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0645\u0641\u0642\u0648\u062f (Action Plan)", + "file_type": "document", + "source_file": "test-coverage-map.md", + "source_location": "L69", + "_origin": "ast", + "community": 129, + "community_name": "\u0646\u0642\u0634\u0647 \u062c\u0627\u0645\u0639 \u067e\u0648\u0634\u0634 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0633\u0631\u062a\u0627\u0633\u0631\u06cc (E2E Test Coverage Map) \u2014 \u067e\u0631\u0648\u0698\u0647 Canina", + "norm_label": "\u06f3. \u0628\u0631\u0646\u0627\u0645\u0647 \u062a\u06a9\u0645\u06cc\u0644 \u0648 \u062a\u0648\u0633\u0639\u0647 \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0645\u0641\u0642\u0648\u062f (action plan)", + "id": "test_coverage_map_\u06f3_\u0628\u0631\u0646\u0627\u0645\u0647_\u062a\u06a9\u0645\u06cc\u0644_\u0648_\u062a\u0648\u0633\u0639\u0647_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0645\u0641\u0642\u0648\u062f_action_plan" + }, + { + "label": "generate-openapi.ts", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "generate-openapi.ts", + "id": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "module", + "id": "backend_src_app_module_ts_module" + }, + { + "label": "env.validation.ts", + "file_type": "code", + "source_file": "backend/src/common/env.validation.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "env.validation.ts", + "id": "backend_src_common_env_validation" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "isnotempty", + "id": "backend_src_common_env_validation_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "isoptional", + "id": "backend_src_common_env_validation_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "isstring", + "id": "backend_src_common_env_validation_ts_isstring" + }, + { + "label": "http-exception.filter.ts", + "file_type": "code", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "http-exception.filter.ts", + "id": "backend_src_common_filters_http_exception_filter" + }, + { + "label": "Catch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "catch", + "id": "backend_src_common_filters_http_exception_filter_ts_catch" + }, + { + "label": "prisma-exception.filter.ts", + "file_type": "code", + "source_file": "backend/src/common/filters/prisma-exception.filter.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "prisma-exception.filter.ts", + "id": "backend_src_common_filters_prisma_exception_filter" + }, + { + "label": "Catch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "catch", + "id": "backend_src_common_filters_prisma_exception_filter_ts_catch" + }, + { + "label": "decimal.interceptor.ts", + "file_type": "code", + "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "decimal.interceptor.ts", + "id": "backend_src_common_interceptors_decimal_interceptor" + }, + { + "label": "decimal.interceptor.spec.ts", + "file_type": "code", + "source_file": "backend/src/common/interceptors/decimal.interceptor.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "decimal.interceptor.spec.ts", + "id": "backend_src_common_interceptors_decimal_interceptor_spec" }, { "label": "Injectable", @@ -23527,21 +22165,1055 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_redis_redis_service_ts_injectable", - "community": 151, - "community_name": "auth.service.ts", - "norm_label": "injectable" + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "injectable", + "id": "backend_src_common_interceptors_decimal_interceptor_ts_injectable" }, { - "label": "trust-seals/page.tsx", + "label": "error-response.schema.ts", "file_type": "code", - "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_file": "backend/src/common/schemas/error-response.schema.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_trust_seals_page", - "community": 152, - "community_name": "trust-seals/page.tsx", - "norm_label": "trust-seals/page.tsx" + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "error-response.schema.ts", + "id": "backend_src_common_schemas_error_response_schema" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "apiproperty", + "id": "backend_src_common_schemas_error_response_schema_ts_apiproperty" + }, + { + "label": "main.ts", + "file_type": "code", + "source_file": "backend/src/main.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "main.ts", + "id": "backend_src_main" + }, + { + "label": "app_module_1", + "file_type": "code", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L42", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "app_module_1", + "id": "backend_test_app_audit_verification_e2e_spec_app_module_1" + }, + { + "label": "client_1", + "file_type": "code", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L44", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "client_1", + "id": "backend_test_app_audit_verification_e2e_spec_client_1" + }, + { + "label": "common_1", + "file_type": "code", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L40", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "common_1", + "id": "backend_test_app_audit_verification_e2e_spec_common_1" + }, + { + "label": "decimal_interceptor_1", + "file_type": "code", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L47", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "decimal_interceptor_1", + "id": "backend_test_app_audit_verification_e2e_spec_decimal_interceptor_1" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L48", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "fs", + "id": "backend_test_app_audit_verification_e2e_spec_fs" + }, + { + "label": "http_exception_filter_1", + "file_type": "code", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L45", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "http_exception_filter_1", + "id": "backend_test_app_audit_verification_e2e_spec_http_exception_filter_1" + }, + { + "label": "app-audit-verification.e2e-spec.js", + "file_type": "code", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "app-audit-verification.e2e-spec.js", + "id": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec" + }, + { + "label": "jwt_1", + "file_type": "code", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L43", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "jwt_1", + "id": "backend_test_app_audit_verification_e2e_spec_jwt_1" + }, + { + "label": "path", + "file_type": "code", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L49", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "path", + "id": "backend_test_app_audit_verification_e2e_spec_path" + }, + { + "label": "prisma_exception_filter_1", + "file_type": "code", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L46", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "prisma_exception_filter_1", + "id": "backend_test_app_audit_verification_e2e_spec_prisma_exception_filter_1" + }, + { + "label": "supertest_1", + "file_type": "code", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L41", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "supertest_1", + "id": "backend_test_app_audit_verification_e2e_spec_supertest_1" + }, + { + "label": "testing_1", + "file_type": "code", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L39", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "testing_1", + "id": "backend_test_app_audit_verification_e2e_spec_testing_1" + }, + { + "label": "app-audit-verification.e2e-spec.ts", + "file_type": "code", + "source_file": "backend/test/app-audit-verification.e2e-spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "app-audit-verification.e2e-spec.ts", + "id": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec" + }, + { + "label": "app.e2e-spec.ts", + "file_type": "code", + "source_file": "backend/test/app.e2e-spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 13, + "community_name": "app-audit-verification.e2e-spec.js", + "norm_label": "app.e2e-spec.ts", + "id": "backend_test_app_e2e_spec_ts_backend_test_app_e2e_spec" + }, + { + "label": "application/public/fonts/sahel-font-v3.4.0/README.md", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 130, + "community_name": "Sahel-Font", + "norm_label": "application/public/fonts/sahel-font-v3.4.0/readme.md", + "node_kind": "page", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme" + }, + { + "label": "Arch Linux", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L119", + "_origin": "ast", + "community": 130, + "community_name": "Sahel-Font", + "norm_label": "arch linux", + "node_kind": "heading", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_arch_linux" + }, + { + "label": "Contributors", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L127", + "_origin": "ast", + "community": 130, + "community_name": "Sahel-Font", + "norm_label": "contributors", + "node_kind": "heading", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_contributors" + }, + { + "label": "Install", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L103", + "_origin": "ast", + "community": 130, + "community_name": "Sahel-Font", + "norm_label": "install", + "node_kind": "heading", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install" + }, + { + "label": "Known problems for variable version", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L14", + "_origin": "ast", + "community": 130, + "community_name": "Sahel-Font", + "norm_label": "known problems for variable version", + "node_kind": "heading", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version" + }, + { + "label": "License", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L131", + "_origin": "ast", + "community": 130, + "community_name": "Sahel-Font", + "norm_label": "license", + "node_kind": "heading", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_license" + }, + { + "label": "Sahel-Font", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 130, + "community_name": "Sahel-Font", + "norm_label": "sahel-font", + "node_kind": "heading", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font" + }, + { + "label": "To Do (variable)", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L17", + "_origin": "ast", + "community": 130, + "community_name": "Sahel-Font", + "norm_label": "to do (variable)", + "node_kind": "heading", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_to_do_variable" + }, + { + "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L83", + "_origin": "ast", + "community": 130, + "community_name": "Sahel-Font", + "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0646\u0633\u062e\u0647 \u0645\u062a\u063a\u06cc\u0631 variable", + "node_kind": "heading", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable" + }, + { + "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", + "file_type": "document", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L24", + "_origin": "ast", + "community": 130, + "community_name": "Sahel-Font", + "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628", + "node_kind": "heading", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" + }, + { + "label": "00_intake.md", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L1", + "_origin": "ast", + "community": 131, + "community_name": "Role & Core Objective", + "norm_label": "00_intake.md", + "node_kind": "page", + "id": "ai_agency_agents_00_intake" + }, + { + "label": "1. Ask \u2014 Don't Assume", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L30", + "_origin": "ast", + "community": 131, + "community_name": "Role & Core Objective", + "norm_label": "1. ask \u2014 don't assume", + "node_kind": "heading", + "id": "ai_agency_agents_00_intake_1_ask_don_t_assume" + }, + { + "label": "2. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L58", + "_origin": "ast", + "community": 131, + "community_name": "Role & Core Objective", + "norm_label": "2. forbidden actions", + "node_kind": "heading", + "id": "ai_agency_agents_00_intake_2_forbidden_actions" + }, + { + "label": "Brownfield Detection", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L17", + "_origin": "ast", + "community": 131, + "community_name": "Role & Core Objective", + "norm_label": "brownfield detection", + "node_kind": "heading", + "id": "ai_agency_agents_00_intake_brownfield_detection" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L105", + "_origin": "ast", + "community": 131, + "community_name": "Role & Core Objective", + "norm_label": "expected json output schema", + "node_kind": "heading", + "id": "ai_agency_agents_00_intake_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L28", + "_origin": "ast", + "community": 131, + "community_name": "Role & Core Objective", + "norm_label": "operational rules & boundaries", + "node_kind": "heading", + "id": "ai_agency_agents_00_intake_operational_rules_boundaries" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L65", + "_origin": "ast", + "community": 131, + "community_name": "Role & Core Objective", + "norm_label": "required output artifacts (what files to write/update)", + "node_kind": "heading", + "id": "ai_agency_agents_00_intake_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L1", + "_origin": "ast", + "community": 131, + "community_name": "Role & Core Objective", + "norm_label": "role & core objective", + "node_kind": "heading", + "id": "ai_agency_agents_00_intake_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L9", + "_origin": "ast", + "community": 131, + "community_name": "Role & Core Objective", + "norm_label": "strict input specifications (what files to read)", + "node_kind": "heading", + "id": "ai_agency_agents_00_intake_strict_input_specifications_what_files_to_read" + }, + { + "label": "orchestrate.py", + "file_type": "code", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L1", + "_origin": "ast", + "community": 132, + "community_name": "orchestrate.py", + "norm_label": "orchestrate.py", + "id": "ai_agency_orchestrate" + }, + { + "label": "backend/package.json", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L1", + "_origin": "ast", + "community": 133, + "community_name": "backend/package.json", + "norm_label": "backend/package.json", + "id": "backend_package" + }, + { + "label": "author", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L5", + "_origin": "ast", + "community": 133, + "community_name": "backend/package.json", + "norm_label": "author", + "id": "backend_package_author" + }, + { + "label": "description", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L4", + "_origin": "ast", + "community": 133, + "community_name": "backend/package.json", + "norm_label": "description", + "id": "backend_package_description" + }, + { + "label": "license", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L7", + "_origin": "ast", + "community": 133, + "community_name": "backend/package.json", + "norm_label": "license", + "id": "backend_package_license" + }, + { + "label": "name", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L2", + "_origin": "ast", + "community": 133, + "community_name": "backend/package.json", + "norm_label": "name", + "id": "backend_package_name" + }, + { + "label": "prisma", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L96", + "_origin": "ast", + "community": 133, + "community_name": "backend/package.json", + "norm_label": "prisma", + "id": "backend_package_prisma" + }, + { + "label": "seed", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L97", + "_origin": "ast", + "community": 133, + "community_name": "backend/package.json", + "norm_label": "seed", + "id": "backend_package_prisma_seed" + }, + { + "label": "private", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L6", + "_origin": "ast", + "community": 133, + "community_name": "backend/package.json", + "norm_label": "private", + "id": "backend_package_private" + }, + { + "label": "version", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L3", + "_origin": "ast", + "community": 133, + "community_name": "backend/package.json", + "norm_label": "version", + "id": "backend_package_version" + }, + { + "label": "app_module_1", + "file_type": "code", + "source_file": "backend/test/app.e2e-spec.js", + "source_location": "L8", + "_origin": "ast", + "community": 65, + "community_name": "app.e2e-spec.js", + "norm_label": "app_module_1", + "id": "backend_test_app_e2e_spec_app_module_1" + }, + { + "label": "app.e2e-spec.js", + "file_type": "code", + "source_file": "backend/test/app.e2e-spec.js", + "source_location": "L1", + "_origin": "ast", + "community": 65, + "community_name": "app.e2e-spec.js", + "norm_label": "app.e2e-spec.js", + "id": "backend_test_app_e2e_spec_js_backend_test_app_e2e_spec" + }, + { + "label": "supertest_1", + "file_type": "code", + "source_file": "backend/test/app.e2e-spec.js", + "source_location": "L7", + "_origin": "ast", + "community": 65, + "community_name": "app.e2e-spec.js", + "norm_label": "supertest_1", + "id": "backend_test_app_e2e_spec_supertest_1" + }, + { + "label": "testing_1", + "file_type": "code", + "source_file": "backend/test/app.e2e-spec.js", + "source_location": "L6", + "_origin": "ast", + "community": 65, + "community_name": "app.e2e-spec.js", + "norm_label": "testing_1", + "id": "backend_test_app_e2e_spec_testing_1" + }, + { + "label": "exports.md", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L1", + "_origin": "ast", + "community": 135, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "exports.md", + "node_kind": "page", + "id": "claude_skills_graphify_references_exports" + }, + { + "label": "graphify reference: extra exports and benchmark", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L1", + "_origin": "ast", + "community": 135, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "graphify reference: extra exports and benchmark", + "node_kind": "heading", + "id": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark" + }, + { + "label": "Step 6b - Wiki (only if --wiki flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L5", + "_origin": "ast", + "community": 135, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 6b - wiki (only if --wiki flag)", + "node_kind": "heading", + "id": "claude_skills_graphify_references_exports_step_6b_wiki_only_if_wiki_flag" + }, + { + "label": "Step 7 - Neo4j export (only if --neo4j or --neo4j-push flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L15", + "_origin": "ast", + "community": 135, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 7 - neo4j export (only if --neo4j or --neo4j-push flag)", + "node_kind": "heading", + "id": "claude_skills_graphify_references_exports_step_7_neo4j_export_only_if_neo4j_or_neo4j_push_flag" + }, + { + "label": "Step 7a - FalkorDB export (only if --falkordb or --falkordb-push flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L31", + "_origin": "ast", + "community": 135, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 7a - falkordb export (only if --falkordb or --falkordb-push flag)", + "node_kind": "heading", + "id": "claude_skills_graphify_references_exports_step_7a_falkordb_export_only_if_falkordb_or_falkordb_push_flag" + }, + { + "label": "Step 7b - SVG export (only if --svg flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L47", + "_origin": "ast", + "community": 135, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 7b - svg export (only if --svg flag)", + "node_kind": "heading", + "id": "claude_skills_graphify_references_exports_step_7b_svg_export_only_if_svg_flag" + }, + { + "label": "Step 7c - GraphML export (only if --graphml flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L53", + "_origin": "ast", + "community": 135, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 7c - graphml export (only if --graphml flag)", + "node_kind": "heading", + "id": "claude_skills_graphify_references_exports_step_7c_graphml_export_only_if_graphml_flag" + }, + { + "label": "Step 7d - MCP server (only if --mcp flag)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L59", + "_origin": "ast", + "community": 135, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 7d - mcp server (only if --mcp flag)", + "node_kind": "heading", + "id": "claude_skills_graphify_references_exports_step_7d_mcp_server_only_if_mcp_flag" + }, + { + "label": "Step 8 - Token reduction benchmark (only if total_words > 5000)", + "file_type": "document", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L79", + "_origin": "ast", + "community": 135, + "community_name": "graphify reference: extra exports and benchmark", + "norm_label": "step 8 - token reduction benchmark (only if total_words > 5000)", + "node_kind": "heading", + "id": "claude_skills_graphify_references_exports_step_8_token_reduction_benchmark_only_if_total_words_5000" + }, + { + "label": "21-phase2-quality-gate-summary.md", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L1", + "_origin": "ast", + "community": 136, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "21-phase2-quality-gate-summary.md", + "node_kind": "page", + "id": "docs_audit_21_phase2_quality_gate_summary" + }, + { + "label": "1. Executive Summary", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L3", + "_origin": "ast", + "community": 136, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "1. executive summary", + "node_kind": "heading", + "id": "docs_audit_21_phase2_quality_gate_summary_1_executive_summary" + }, + { + "label": "2. Final Verified Finding Breakdown", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L16", + "_origin": "ast", + "community": 136, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "2. final verified finding breakdown", + "node_kind": "heading", + "id": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown" + }, + { + "label": "3. Source Coverage & Diagnostic Metrics", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L31", + "_origin": "ast", + "community": 136, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "3. source coverage & diagnostic metrics", + "node_kind": "heading", + "id": "docs_audit_21_phase2_quality_gate_summary_3_source_coverage_diagnostic_metrics" + }, + { + "label": "4. Integrity Check & Quality Gate Status", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L40", + "_origin": "ast", + "community": 136, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "4. integrity check & quality gate status", + "node_kind": "heading", + "id": "docs_audit_21_phase2_quality_gate_summary_4_integrity_check_quality_gate_status" + }, + { + "label": "5. Exact Next Recommended Phase", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L47", + "_origin": "ast", + "community": 136, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "5. exact next recommended phase", + "node_kind": "heading", + "id": "docs_audit_21_phase2_quality_gate_summary_5_exact_next_recommended_phase" + }, + { + "label": "By Confidence", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L25", + "_origin": "ast", + "community": 136, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "by confidence", + "node_kind": "heading", + "id": "docs_audit_21_phase2_quality_gate_summary_by_confidence" + }, + { + "label": "By Severity", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L18", + "_origin": "ast", + "community": 136, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "by severity", + "node_kind": "heading", + "id": "docs_audit_21_phase2_quality_gate_summary_by_severity" + }, + { + "label": "Phase 2 Final Quality Gate Summary Report", + "file_type": "document", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L1", + "_origin": "ast", + "community": 136, + "community_name": "Phase 2 Final Quality Gate Summary Report", + "norm_label": "phase 2 final quality gate summary report", + "node_kind": "heading", + "id": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report" + }, + { + "label": "phase3.1-change-log.md", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L1", + "_origin": "ast", + "community": 137, + "community_name": "Task Modifications Log", + "norm_label": "phase3.1-change-log.md", + "node_kind": "page", + "id": "docs_audit_phase3_1_change_log" + }, + { + "label": "1. `TASK-AUTH-001`", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L10", + "_origin": "ast", + "community": 137, + "community_name": "Task Modifications Log", + "norm_label": "1. `task-auth-001`", + "node_kind": "heading", + "id": "docs_audit_phase3_1_change_log_1_task_auth_001" + }, + { + "label": "2. `TASK-FIN-001`", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L19", + "_origin": "ast", + "community": 137, + "community_name": "Task Modifications Log", + "norm_label": "2. `task-fin-001`", + "node_kind": "heading", + "id": "docs_audit_phase3_1_change_log_2_task_fin_001" + }, + { + "label": "3. `DECISION-002`", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L28", + "_origin": "ast", + "community": 137, + "community_name": "Task Modifications Log", + "norm_label": "3. `decision-002`", + "node_kind": "heading", + "id": "docs_audit_phase3_1_change_log_3_decision_002" + }, + { + "label": "4. `TASK-VERIFY-001`", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L37", + "_origin": "ast", + "community": 137, + "community_name": "Task Modifications Log", + "norm_label": "4. `task-verify-001`", + "node_kind": "heading", + "id": "docs_audit_phase3_1_change_log_4_task_verify_001" + }, + { + "label": "5. `TASK-SEC-001` & `TASK-SEC-002`", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L46", + "_origin": "ast", + "community": 137, + "community_name": "Task Modifications Log", + "norm_label": "5. `task-sec-001` & `task-sec-002`", + "node_kind": "heading", + "id": "docs_audit_phase3_1_change_log_5_task_sec_001_task_sec_002" + }, + { + "label": "6. `TASK-BUILD-001` & Execution Waves", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L55", + "_origin": "ast", + "community": 137, + "community_name": "Task Modifications Log", + "norm_label": "6. `task-build-001` & execution waves", + "node_kind": "heading", + "id": "docs_audit_phase3_1_change_log_6_task_build_001_execution_waves" + }, + { + "label": "Phase 3.1 \u2014 Master Task Backlog Change Log", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L1", + "_origin": "ast", + "community": 137, + "community_name": "Task Modifications Log", + "norm_label": "phase 3.1 \u2014 master task backlog change log", + "node_kind": "heading", + "id": "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log" + }, + { + "label": "Task Modifications Log", + "file_type": "document", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L8", + "_origin": "ast", + "community": 137, + "community_name": "Task Modifications Log", + "norm_label": "task modifications log", + "node_kind": "heading", + "id": "docs_audit_phase3_1_change_log_task_modifications_log" + }, + { + "label": "shabnam-font-v5.0.1/README.md", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 138, + "community_name": "Install", + "norm_label": "shabnam-font-v5.0.1/readme.md", + "node_kind": "page", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme" + }, + { + "label": "Arch Linux", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L110", + "_origin": "ast", + "community": 138, + "community_name": "Install", + "norm_label": "arch linux", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_arch_linux" + }, + { + "label": "bower", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L80", + "_origin": "ast", + "community": 138, + "community_name": "Install", + "norm_label": "bower", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_bower" + }, + { + "label": "Install", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L76", + "_origin": "ast", + "community": 138, + "community_name": "Install", + "norm_label": "install", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install" + }, + { + "label": "npm", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L86", + "_origin": "ast", + "community": 138, + "community_name": "Install", + "norm_label": "npm", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_npm" + }, + { + "label": "Shabnam Font", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 138, + "community_name": "Install", + "norm_label": "shabnam font", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font" + }, + { + "label": "yarn", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L91", + "_origin": "ast", + "community": 138, + "community_name": "Install", + "norm_label": "yarn", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_yarn" + }, + { + "label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628:", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L17", + "_origin": "ast", + "community": 138, + "community_name": "Install", + "norm_label": "\u0637\u0631\u06cc\u0642\u0647 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062f\u0631 \u0635\u0641\u062d\u0627\u062a \u0648\u0628:", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" + }, + { + "label": "\u0646\u0645\u0648\u0646\u0647 \u0645\u062a\u0646 Sample:", + "file_type": "document", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L14", + "_origin": "ast", + "community": 138, + "community_name": "Install", + "norm_label": "\u0646\u0645\u0648\u0646\u0647 \u0645\u062a\u0646 sample:", + "node_kind": "heading", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0646\u0645\u0648\u0646\u0647_\u0645\u062a\u0646_sample" + }, + { + "label": "catalog/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/catalog/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "catalog/page.tsx", + "id": "frontend_application_app_catalog_page" + }, + { + "label": "ClientLayout.tsx", + "file_type": "code", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": "clientlayout.tsx", + "id": "frontend_application_app_clientlayout" + }, + { + "label": "B2BLandingClient.tsx", + "file_type": "code", + "source_file": "frontend/application/components/B2BLandingClient.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "b2blandingclient.tsx", + "id": "frontend_application_components_b2blandingclient" + }, + { + "label": "BrandLogo.tsx", + "file_type": "code", + "source_file": "frontend/application/components/BrandLogo.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "brandlogo.tsx", + "id": "frontend_application_components_brandlogo" }, { "label": "EnamadBadge.tsx", @@ -23549,10 +23221,1169 @@ "source_file": "frontend/application/components/EnamadBadge.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_enamadbadge", - "community": 152, - "community_name": "trust-seals/page.tsx", - "norm_label": "enamadbadge.tsx" + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "enamadbadge.tsx", + "id": "frontend_application_components_enamadbadge" + }, + { + "label": "Footer.tsx", + "file_type": "code", + "source_file": "frontend/application/components/Footer.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "footer.tsx", + "id": "frontend_application_components_footer" + }, + { + "label": "Header.tsx", + "file_type": "code", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "header.tsx", + "id": "frontend_application_components_header" + }, + { + "label": "MENU_ICONS", + "file_type": "code", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L19", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "menu_icons", + "id": "frontend_application_components_header_menu_icons" + }, + { + "label": "MaintenancePage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/MaintenancePage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "maintenancepage.tsx", + "id": "frontend_application_components_maintenancepage" + }, + { + "label": "NetworkBanner.tsx", + "file_type": "code", + "source_file": "frontend/application/components/NetworkBanner.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": "networkbanner.tsx", + "id": "frontend_application_components_networkbanner" + }, + { + "label": "SmartAdvisor.tsx", + "file_type": "code", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "smartadvisor.tsx", + "id": "frontend_application_components_smartadvisor" + }, + { + "label": "CURRENT_SYMPTOMS", + "file_type": "code", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L32", + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "current_symptoms", + "id": "frontend_application_components_smartadvisor_current_symptoms" + }, + { + "label": "MEDICAL_HISTORIES", + "file_type": "code", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L44", + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "medical_histories", + "id": "frontend_application_components_smartadvisor_medical_histories" + }, + { + "label": "Footer.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/Footer.test.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "footer.test.tsx", + "id": "frontend_application_components_tests_footer_test" + }, + { + "label": "TickerBanner.tsx", + "file_type": "code", + "source_file": "frontend/application/components/TickerBanner.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "tickerbanner.tsx", + "id": "frontend_application_components_tickerbanner" + }, + { + "label": "useNetworkStatus.ts", + "file_type": "code", + "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", + "source_location": "L1", + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": "usenetworkstatus.ts", + "id": "frontend_application_lib_hooks_usenetworkstatus" + }, + { + "label": "settingsStore.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L1", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "settingsstore.ts", + "id": "frontend_application_lib_store_settingsstore" + }, + { + "label": "useSettingsStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L22", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "usesettingsstore", + "id": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "label": "uiStore.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/uiStore.ts", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "uistore.ts", + "id": "frontend_application_lib_store_uistore" + }, + { + "label": "useUIStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/uiStore.ts", + "source_location": "L14", + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "useuistore", + "id": "frontend_application_lib_store_uistore_useuistore" + }, + { + "label": "ErrorBoundary.tsx", + "file_type": "code", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 140, + "community_name": "ErrorBoundary", + "norm_label": "errorboundary.tsx", + "id": "frontend_application_components_errorboundary" + }, + { + "label": "application/package.json", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L1", + "_origin": "ast", + "community": 141, + "community_name": "application/package.json", + "norm_label": "application/package.json", + "id": "frontend_application_package" + }, + { + "label": "name", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L2", + "_origin": "ast", + "community": 141, + "community_name": "application/package.json", + "norm_label": "name", + "id": "frontend_application_package_name" + }, + { + "label": "private", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L4", + "_origin": "ast", + "community": 141, + "community_name": "application/package.json", + "norm_label": "private", + "id": "frontend_application_package_private" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L5", + "_origin": "ast", + "community": 141, + "community_name": "application/package.json", + "norm_label": "scripts", + "id": "frontend_application_package_scripts" + }, + { + "label": "build", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L7", + "_origin": "ast", + "community": 141, + "community_name": "application/package.json", + "norm_label": "build", + "id": "frontend_application_package_scripts_build" + }, + { + "label": "dev", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L6", + "_origin": "ast", + "community": 141, + "community_name": "application/package.json", + "norm_label": "dev", + "id": "frontend_application_package_scripts_dev" + }, + { + "label": "lint", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L9", + "_origin": "ast", + "community": 141, + "community_name": "application/package.json", + "norm_label": "lint", + "id": "frontend_application_package_scripts_lint" + }, + { + "label": "start", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L8", + "_origin": "ast", + "community": 141, + "community_name": "application/package.json", + "norm_label": "start", + "id": "frontend_application_package_scripts_start" + }, + { + "label": "version", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L3", + "_origin": "ast", + "community": 141, + "community_name": "application/package.json", + "norm_label": "version", + "id": "frontend_application_package_version" + }, + { + "label": "start-dev.js", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L1", + "_origin": "ast", + "community": 142, + "community_name": "start-dev.js", + "norm_label": "start-dev.js", + "id": "scripts_start_dev" + }, + { + "label": "backend", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L35", + "_origin": "ast", + "community": 142, + "community_name": "start-dev.js", + "norm_label": "backend", + "id": "scripts_start_dev_backend" + }, + { + "label": "distMainPath", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L9", + "_origin": "ast", + "community": 142, + "community_name": "start-dev.js", + "norm_label": "distmainpath", + "id": "scripts_start_dev_distmainpath" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L3", + "_origin": "ast", + "community": 142, + "community_name": "start-dev.js", + "norm_label": "fs", + "id": "scripts_start_dev_fs" + }, + { + "label": "http", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L2", + "_origin": "ast", + "community": 142, + "community_name": "start-dev.js", + "norm_label": "http", + "id": "scripts_start_dev_http" + }, + { + "label": "path", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L4", + "_origin": "ast", + "community": 142, + "community_name": "start-dev.js", + "norm_label": "path", + "id": "scripts_start_dev_path" + }, + { + "label": "{ spawn, execSync }", + "file_type": "code", + "source_file": "scripts/start-dev.js", + "source_location": "L1", + "_origin": "ast", + "community": 142, + "community_name": "start-dev.js", + "norm_label": "{ spawn, execsync }", + "id": "scripts_start_dev_spawn_execsync" + }, + { + "label": "app_module_1", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L37", + "_origin": "ast", + "community": 143, + "community_name": "generate-openapi.js", + "norm_label": "app_module_1", + "id": "backend_scripts_generate_openapi_app_module_1" + }, + { + "label": "core_1", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L36", + "_origin": "ast", + "community": 143, + "community_name": "generate-openapi.js", + "norm_label": "core_1", + "id": "backend_scripts_generate_openapi_core_1" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L39", + "_origin": "ast", + "community": 143, + "community_name": "generate-openapi.js", + "norm_label": "fs", + "id": "backend_scripts_generate_openapi_fs" + }, + { + "label": "generate-openapi.js", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L1", + "_origin": "ast", + "community": 143, + "community_name": "generate-openapi.js", + "norm_label": "generate-openapi.js", + "id": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi" + }, + { + "label": "path", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L40", + "_origin": "ast", + "community": 143, + "community_name": "generate-openapi.js", + "norm_label": "path", + "id": "backend_scripts_generate_openapi_path" + }, + { + "label": "swagger_1", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L38", + "_origin": "ast", + "community": 143, + "community_name": "generate-openapi.js", + "norm_label": "swagger_1", + "id": "backend_scripts_generate_openapi_swagger_1" + }, + { + "label": "yaml", + "file_type": "code", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L41", + "_origin": "ast", + "community": 143, + "community_name": "generate-openapi.js", + "norm_label": "yaml", + "id": "backend_scripts_generate_openapi_yaml" + }, + { + "label": "@testing-library/react", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L24", + "_origin": "ast", + "community": 144, + "community_name": "@testing-library/react", + "norm_label": "@testing-library/react", + "id": "frontend_application_package_devdependencies_testing_library_react" + }, + { + "label": "@testing-library/react", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L24", + "_origin": "ast", + "community": 144, + "community_name": "@testing-library/react", + "norm_label": "@testing-library/react", + "id": "testing_library_react" + }, + { + "label": "@types/node", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L60", + "_origin": "ast", + "community": 9, + "community_name": "devDependencies", + "norm_label": "@types/node", + "id": "backend_package_devdependencies_types_node" + }, + { + "label": "@types/node", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L60", + "_origin": "ast", + "community": 9, + "community_name": "devDependencies", + "norm_label": "@types/node", + "id": "backend_package_json_types_node" + }, + { + "label": "01-system-discovery.md", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L1", + "_origin": "ast", + "community": 146, + "community_name": "System Discovery", + "norm_label": "01-system-discovery.md", + "node_kind": "page", + "id": "docs_audit_01_system_discovery" + }, + { + "label": "Active Core Applications", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L6", + "_origin": "ast", + "community": 146, + "community_name": "System Discovery", + "norm_label": "active core applications", + "node_kind": "heading", + "id": "docs_audit_01_system_discovery_active_core_applications" + }, + { + "label": "Current Architecture", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L3", + "_origin": "ast", + "community": 146, + "community_name": "System Discovery", + "norm_label": "current architecture", + "node_kind": "heading", + "id": "docs_audit_01_system_discovery_current_architecture" + }, + { + "label": "Evidence-Based Status Matrix", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L36", + "_origin": "ast", + "community": 146, + "community_name": "System Discovery", + "norm_label": "evidence-based status matrix", + "node_kind": "heading", + "id": "docs_audit_01_system_discovery_evidence_based_status_matrix" + }, + { + "label": "Excluded / Non-Auditable Artifacts", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L12", + "_origin": "ast", + "community": 146, + "community_name": "System Discovery", + "norm_label": "excluded / non-auditable artifacts", + "node_kind": "heading", + "id": "docs_audit_01_system_discovery_excluded_non_auditable_artifacts" + }, + { + "label": "Major Business Domains Discovered", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L18", + "_origin": "ast", + "community": 146, + "community_name": "System Discovery", + "norm_label": "major business domains discovered", + "node_kind": "heading", + "id": "docs_audit_01_system_discovery_major_business_domains_discovered" + }, + { + "label": "System Discovery", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L1", + "_origin": "ast", + "community": 146, + "community_name": "System Discovery", + "norm_label": "system discovery", + "node_kind": "heading", + "id": "docs_audit_01_system_discovery_system_discovery" + }, + { + "label": "Technical Architecture Summary", + "file_type": "document", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L27", + "_origin": "ast", + "community": 146, + "community_name": "System Discovery", + "norm_label": "technical architecture summary", + "node_kind": "heading", + "id": "docs_audit_01_system_discovery_technical_architecture_summary" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": "injectable", + "id": "backend_src_common_revalidation_revalidation_service_ts_injectable" + }, + { + "label": "typescript", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L76", + "_origin": "ast", + "community": 9, + "community_name": "devDependencies", + "norm_label": "typescript", + "id": "backend_package_devdependencies_typescript" + }, + { + "label": "typescript", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L76", + "_origin": "ast", + "community": 9, + "community_name": "devDependencies", + "norm_label": "typescript", + "id": "backend_package_json_typescript" + }, + { + "label": "SmsSettingsPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 149, + "community_name": "SmsSettingsPage.tsx", + "norm_label": "smssettingspage.tsx", + "id": "frontend_admin_panel_src_pages_smssettingspage" + }, + { + "label": "SmsSettingsPage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L39", + "_origin": "ast", + "community": 149, + "community_name": "SmsSettingsPage.tsx", + "norm_label": "smssettingspage", + "id": "frontend_admin_panel_src_routes_adminroutes_smssettingspage" + }, + { + "label": "Layout.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Layout.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "layout.tsx", + "id": "frontend_admin_panel_src_components_layout" + }, + { + "label": "ProtectedRoute.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "protectedroute.tsx", + "id": "frontend_admin_panel_src_components_protectedroute" + }, + { + "label": "Sidebar.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "sidebar.tsx", + "id": "frontend_admin_panel_src_components_sidebar" + }, + { + "label": "Topbar.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "topbar.tsx", + "id": "frontend_admin_panel_src_components_topbar" + }, + { + "label": "SEARCHABLE_PAGES", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L12", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "searchable_pages", + "id": "frontend_admin_panel_src_components_topbar_searchable_pages" + }, + { + "label": "B2BManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "b2bmanager.tsx", + "id": "frontend_admin_panel_src_pages_b2bmanager" + }, + { + "label": "Login.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Login.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "login.tsx", + "id": "frontend_admin_panel_src_pages_login" + }, + { + "label": "SeoSettingsPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "seosettingspage.tsx", + "id": "frontend_admin_panel_src_pages_seosettingspage" + }, + { + "label": "SmartAdvisorManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "smartadvisormanager.tsx", + "id": "frontend_admin_panel_src_pages_smartadvisormanager" + }, + { + "label": "SystemSettingsPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "systemsettingspage.tsx", + "id": "frontend_admin_panel_src_pages_systemsettingspage" + }, + { + "label": "B2BManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L32", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "b2bmanager", + "id": "frontend_admin_panel_src_routes_adminroutes_b2bmanager" + }, + { + "label": "SeoSettingsPage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L33", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "seosettingspage", + "id": "frontend_admin_panel_src_routes_adminroutes_seosettingspage" + }, + { + "label": "SmartAdvisorManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L28", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "smartadvisormanager", + "id": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager" + }, + { + "label": "SystemSettingsPage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L38", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "systemsettingspage", + "id": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage" + }, + { + "label": "src/services/api.ts", + "file_type": "code", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "src/services/api.ts", + "id": "frontend_admin_panel_src_services_api" + }, + { + "label": "api", + "file_type": "code", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L23", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "api", + "id": "frontend_admin_panel_src_services_api_api" + }, + { + "label": "failedQueue", + "file_type": "code", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L32", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "failedqueue", + "id": "frontend_admin_panel_src_services_api_failedqueue" + }, + { + "label": "adminAuthStore.ts", + "file_type": "code", + "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "adminauthstore.ts", + "id": "frontend_admin_panel_src_store_adminauthstore" + }, + { + "label": "useAdminAuthStore", + "file_type": "code", + "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", + "source_location": "L5", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "useadminauthstore", + "id": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" + }, + { + "label": "admin.ts", + "file_type": "code", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L1", + "_origin": "ast", + "community": 15, + "community_name": "src/services/api.ts", + "norm_label": "admin.ts", + "id": "frontend_admin_panel_src_types_admin" + }, + { + "label": "prd.md", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L1", + "_origin": "ast", + "community": 150, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "prd.md", + "node_kind": "page", + "id": "ai_agency_specs_prd" + }, + { + "label": "1. Executive Vision", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L3", + "_origin": "ast", + "community": 150, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "1. executive vision", + "node_kind": "heading", + "id": "ai_agency_specs_prd_1_executive_vision" + }, + { + "label": "2. Target Audience", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L6", + "_origin": "ast", + "community": 150, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "2. target audience", + "node_kind": "heading", + "id": "ai_agency_specs_prd_2_target_audience" + }, + { + "label": "3. Functional Requirements", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L9", + "_origin": "ast", + "community": 150, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "3. functional requirements", + "node_kind": "heading", + "id": "ai_agency_specs_prd_3_functional_requirements" + }, + { + "label": "4. Non-Functional Requirements (Performance, Security)", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L12", + "_origin": "ast", + "community": 150, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "4. non-functional requirements (performance, security)", + "node_kind": "heading", + "id": "ai_agency_specs_prd_4_non_functional_requirements_performance_security" + }, + { + "label": "5. Epic / Feature Breakdown", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L15", + "_origin": "ast", + "community": 150, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "5. epic / feature breakdown", + "node_kind": "heading", + "id": "ai_agency_specs_prd_5_epic_feature_breakdown" + }, + { + "label": "Product Requirement Document (PRD)", + "file_type": "document", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L1", + "_origin": "ast", + "community": 150, + "community_name": "Product Requirement Document (PRD)", + "norm_label": "product requirement document (prd)", + "node_kind": "heading", + "id": "ai_agency_specs_prd_product_requirement_document_prd" + }, + { + "label": "admin.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 145, + "community_name": "admin.service.ts", + "norm_label": "admin.service.ts", + "id": "backend_src_admin_admin_service" + }, + { + "label": "admin.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/admin/admin.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": "admin.service.spec.ts", + "id": "backend_src_admin_admin_service_spec" + }, + { + "label": "auth.service.ts", + "file_type": "code", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "auth.service.ts", + "id": "backend_src_auth_auth_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "injectable", + "id": "backend_src_auth_auth_service_ts_injectable" + }, + { + "label": "revalidation.module.ts", + "file_type": "code", + "source_file": "backend/src/common/revalidation/revalidation.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": "revalidation.module.ts", + "id": "backend_src_common_revalidation_revalidation_module" + }, + { + "label": "Global", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": "global", + "id": "backend_src_common_revalidation_revalidation_module_ts_global" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": "module", + "id": "backend_src_common_revalidation_revalidation_module_ts_module" + }, + { + "label": "revalidation.service.ts", + "file_type": "code", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": "revalidation.service.ts", + "id": "backend_src_common_revalidation_revalidation_service" + }, + { + "label": "phone.utils.ts", + "file_type": "code", + "source_file": "backend/src/common/utils/phone.utils.ts", + "source_location": "L1", + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "phone.utils.ts", + "id": "backend_src_common_utils_phone_utils" + }, + { + "label": "redis.module.ts", + "file_type": "code", + "source_file": "backend/src/redis/redis.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": "redis.module.ts", + "id": "backend_src_redis_redis_module" + }, + { + "label": "Global", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "global", + "id": "backend_src_redis_redis_module_ts_global" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "module", + "id": "backend_src_redis_redis_module_ts_module" + }, + { + "label": "redis.service.ts", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": "redis.service.ts", + "id": "backend_src_redis_redis_service" + }, + { + "label": "redis.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/redis/redis.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": "redis.service.spec.ts", + "id": "backend_src_redis_redis_service_spec" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": "injectable", + "id": "backend_src_redis_redis_service_ts_injectable" + }, + { + "label": "initiate-payment.dto.ts", + "file_type": "code", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 129, + "community_name": "InitiatePaymentDto", + "norm_label": "initiate-payment.dto.ts", + "id": "backend_src_payment_dto_initiate_payment_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 129, + "community_name": "InitiatePaymentDto", + "norm_label": "apiproperty", + "id": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 129, + "community_name": "InitiatePaymentDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 129, + "community_name": "InitiatePaymentDto", + "norm_label": "isnotempty", + "id": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 129, + "community_name": "InitiatePaymentDto", + "norm_label": "isoptional", + "id": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 129, + "community_name": "InitiatePaymentDto", + "norm_label": "isstring", + "id": "backend_src_payment_dto_initiate_payment_dto_ts_isstring" }, { "label": "tsconfig.build.json", @@ -23560,10 +24391,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L1", "_origin": "ast", - "id": "backend_tsconfig_build", "community": 153, "community_name": "exclude", - "norm_label": "tsconfig.build.json" + "norm_label": "tsconfig.build.json", + "id": "backend_tsconfig_build" }, { "label": "exclude", @@ -23571,10 +24402,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L3", "_origin": "ast", - "id": "backend_tsconfig_build_exclude", "community": 153, "community_name": "exclude", - "norm_label": "exclude" + "norm_label": "exclude", + "id": "backend_tsconfig_build_exclude" }, { "label": "extends", @@ -23582,10 +24413,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L2", "_origin": "ast", - "id": "backend_tsconfig_build_extends", "community": 153, "community_name": "exclude", - "norm_label": "extends" + "norm_label": "extends", + "id": "backend_tsconfig_build_extends" }, { "label": "dist", @@ -23593,10 +24424,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L3", "_origin": "ast", - "id": "backend_tsconfig_build_json_ref_dist", "community": 153, "community_name": "exclude", - "norm_label": "dist" + "norm_label": "dist", + "id": "backend_tsconfig_build_json_ref_dist" }, { "label": "node_modules", @@ -23604,10 +24435,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L3", "_origin": "ast", - "id": "backend_tsconfig_build_json_ref_node_modules", "community": 153, "community_name": "exclude", - "norm_label": "node_modules" + "norm_label": "node_modules", + "id": "backend_tsconfig_build_json_ref_node_modules" }, { "label": "prisma", @@ -23615,10 +24446,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L3", "_origin": "ast", - "id": "backend_tsconfig_build_json_ref_prisma", "community": 153, "community_name": "exclude", - "norm_label": "prisma" + "norm_label": "prisma", + "id": "backend_tsconfig_build_json_ref_prisma" }, { "label": "**/*spec.ts", @@ -23626,10 +24457,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L3", "_origin": "ast", - "id": "ref_spec_ts", "community": 153, "community_name": "exclude", - "norm_label": "**/*spec.ts" + "norm_label": "**/*spec.ts", + "id": "ref_spec_ts" }, { "label": "test", @@ -23637,10 +24468,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L3", "_origin": "ast", - "id": "ref_test", "community": 153, "community_name": "exclude", - "norm_label": "test" + "norm_label": "test", + "id": "ref_test" }, { "label": "./tsconfig.json", @@ -23648,10 +24479,10 @@ "source_file": "backend/tsconfig.build.json", "source_location": "L2", "_origin": "ast", - "id": "ref_tsconfig_json", "community": 153, "community_name": "exclude", - "norm_label": "./tsconfig.json" + "norm_label": "./tsconfig.json", + "id": "ref_tsconfig_json" }, { "label": "03-baseline-command-plan.md", @@ -23659,10 +24490,11 @@ "source_file": "docs/audit/03-baseline-command-plan.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_03_baseline_command_plan", "community": 154, "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "03-baseline-command-plan.md" + "norm_label": "03-baseline-command-plan.md", + "node_kind": "page", + "id": "docs_audit_03_baseline_command_plan" }, { "label": "Attempted Command Execution Log", @@ -23670,10 +24502,11 @@ "source_file": "docs/audit/03-baseline-command-plan.md", "source_location": "L3", "_origin": "ast", - "id": "docs_audit_03_baseline_command_plan_attempted_command_execution_log", "community": 154, "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "attempted command execution log" + "norm_label": "attempted command execution log", + "node_kind": "heading", + "id": "docs_audit_03_baseline_command_plan_attempted_command_execution_log" }, { "label": "Backend `backend/package.json` Scripts", @@ -23681,10 +24514,11 @@ "source_file": "docs/audit/03-baseline-command-plan.md", "source_location": "L29", "_origin": "ast", - "id": "docs_audit_03_baseline_command_plan_backend_backend_package_json_scripts", "community": 154, "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "backend `backend/package.json` scripts" + "norm_label": "backend `backend/package.json` scripts", + "node_kind": "heading", + "id": "docs_audit_03_baseline_command_plan_backend_backend_package_json_scripts" }, { "label": "Baseline Command Plan & Reconciled Command History", @@ -23692,10 +24526,11 @@ "source_file": "docs/audit/03-baseline-command-plan.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", "community": 154, "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "baseline command plan & reconciled command history" + "norm_label": "baseline command plan & reconciled command history", + "node_kind": "heading", + "id": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history" }, { "label": "Package Scripts Safety Analysis", @@ -23703,10 +24538,11 @@ "source_file": "docs/audit/03-baseline-command-plan.md", "source_location": "L16", "_origin": "ast", - "id": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis", "community": 154, "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "package scripts safety analysis" + "norm_label": "package scripts safety analysis", + "node_kind": "heading", + "id": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis" }, { "label": "Permitted Safe Checks for Phase 2", @@ -23714,10 +24550,11 @@ "source_file": "docs/audit/03-baseline-command-plan.md", "source_location": "L46", "_origin": "ast", - "id": "docs_audit_03_baseline_command_plan_permitted_safe_checks_for_phase_2", "community": 154, "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "permitted safe checks for phase 2" + "norm_label": "permitted safe checks for phase 2", + "node_kind": "heading", + "id": "docs_audit_03_baseline_command_plan_permitted_safe_checks_for_phase_2" }, { "label": "Root `package.json` Scripts", @@ -23725,10 +24562,11 @@ "source_file": "docs/audit/03-baseline-command-plan.md", "source_location": "L18", "_origin": "ast", - "id": "docs_audit_03_baseline_command_plan_root_package_json_scripts", "community": 154, "community_name": "Baseline Command Plan & Reconciled Command History", - "norm_label": "root `package.json` scripts" + "norm_label": "root `package.json` scripts", + "node_kind": "heading", + "id": "docs_audit_03_baseline_command_plan_root_package_json_scripts" }, { "label": "seo-backfill.ts", @@ -23736,10 +24574,10 @@ "source_file": "backend/scripts/seo-backfill.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_scripts_seo_backfill", "community": 155, "community_name": "seo-backfill.ts", - "norm_label": "seo-backfill.ts" + "norm_label": "seo-backfill.ts", + "id": "backend_scripts_seo_backfill" }, { "label": "prisma", @@ -23747,43 +24585,54 @@ "source_file": "backend/scripts/seo-backfill.ts", "source_location": "L3", "_origin": "ast", - "id": "backend_scripts_seo_backfill_prisma", "community": 155, "community_name": "seo-backfill.ts", - "norm_label": "prisma" + "norm_label": "prisma", + "id": "backend_scripts_seo_backfill_prisma" }, { - "label": "@nestjs/swagger", + "label": "manual-test-scenarios.md", + "file_type": "document", + "source_file": "manual-test-scenarios.md", + "source_location": "L1", + "_origin": "ast", + "community": 156, + "community_name": "manual-test-scenarios.md", + "norm_label": "manual-test-scenarios.md", + "id": "manual_test_scenarios" + }, + { + "label": "b2b/error.tsx", "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L30", + "source_file": "frontend/application/app/b2b/error.tsx", + "source_location": "L1", "_origin": "ast", - "id": "backend_package_dependencies_nestjs_swagger", - "community": 156, - "community_name": "@nestjs/swagger", - "norm_label": "@nestjs/swagger" + "community": 157, + "community_name": "ErrorPages.tsx", + "norm_label": "b2b/error.tsx", + "id": "frontend_application_app_b2b_error" }, { - "label": "@nestjs/swagger", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L30", + "label": "blog/error.tsx", + "file_type": "code", + "source_file": "frontend/application/app/blog/error.tsx", + "source_location": "L1", "_origin": "ast", - "id": "nestjs_swagger", - "community": 156, - "community_name": "@nestjs/swagger", - "norm_label": "@nestjs/swagger" + "community": 157, + "community_name": "ErrorPages.tsx", + "norm_label": "blog/error.tsx", + "id": "frontend_application_app_blog_error" }, { - "label": "error.tsx", + "label": "app/error.tsx", "file_type": "code", "source_file": "frontend/application/app/error.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_error", "community": 157, "community_name": "ErrorPages.tsx", - "norm_label": "error.tsx" + "norm_label": "app/error.tsx", + "id": "frontend_application_app_error" }, { "label": "not-found.tsx", @@ -23791,10 +24640,21 @@ "source_file": "frontend/application/app/not-found.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_not_found", "community": 157, "community_name": "ErrorPages.tsx", - "norm_label": "not-found.tsx" + "norm_label": "not-found.tsx", + "id": "frontend_application_app_not_found" + }, + { + "label": "shop/error.tsx", + "file_type": "code", + "source_file": "frontend/application/app/shop/error.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 157, + "community_name": "ErrorPages.tsx", + "norm_label": "shop/error.tsx", + "id": "frontend_application_app_shop_error" }, { "label": "ErrorPages.tsx", @@ -23802,32 +24662,10 @@ "source_file": "frontend/application/components/ErrorPages.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_errorpages", "community": 157, "community_name": "ErrorPages.tsx", - "norm_label": "errorpages.tsx" - }, - { - "label": "class-transformer", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L35", - "_origin": "ast", - "id": "backend_package_dependencies_class_transformer", - "community": 158, - "community_name": "class-transformer", - "norm_label": "class-transformer" - }, - { - "label": "class-transformer", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L35", - "_origin": "ast", - "id": "class_transformer", - "community": 158, - "community_name": "class-transformer", - "norm_label": "class-transformer" + "norm_label": "errorpages.tsx", + "id": "frontend_application_components_errorpages" }, { "label": "with-vpn.sh", @@ -23839,10 +24677,10 @@ "kind": "file" }, "_origin": "ast", - "id": "gitea_scripts_with_vpn", "community": 159, "community_name": "with-vpn.sh", - "norm_label": "with-vpn.sh" + "norm_label": "with-vpn.sh", + "id": "gitea_scripts_with_vpn" }, { "label": "cleanup()", @@ -23854,10 +24692,10 @@ "kind": "bash_function" }, "_origin": "ast", - "id": "gitea_scripts_with_vpn_cleanup", "community": 159, "community_name": "with-vpn.sh", - "norm_label": "cleanup()" + "norm_label": "cleanup()", + "id": "gitea_scripts_with_vpn_cleanup" }, { "label": "log()", @@ -23869,10 +24707,10 @@ "kind": "bash_function" }, "_origin": "ast", - "id": "gitea_scripts_with_vpn_log", "community": 159, "community_name": "with-vpn.sh", - "norm_label": "log()" + "norm_label": "log()", + "id": "gitea_scripts_with_vpn_log" }, { "label": "with-vpn.sh script", @@ -23884,10 +24722,10 @@ "kind": "bash_entrypoint" }, "_origin": "ast", - "id": "gitea_scripts_with_vpn_sh__entry", "community": 159, "community_name": "with-vpn.sh", - "norm_label": "with-vpn.sh script" + "norm_label": "with-vpn.sh script", + "id": "gitea_scripts_with_vpn_sh__entry" }, { "label": "start_vpn()", @@ -23899,10 +24737,10 @@ "kind": "bash_function" }, "_origin": "ast", - "id": "gitea_scripts_with_vpn_start_vpn", "community": 159, "community_name": "with-vpn.sh", - "norm_label": "start_vpn()" + "norm_label": "start_vpn()", + "id": "gitea_scripts_with_vpn_start_vpn" }, { "label": "stop_vpn()", @@ -23914,10 +24752,10 @@ "kind": "bash_function" }, "_origin": "ast", - "id": "gitea_scripts_with_vpn_stop_vpn", "community": 159, "community_name": "with-vpn.sh", - "norm_label": "stop_vpn()" + "norm_label": "stop_vpn()", + "id": "gitea_scripts_with_vpn_stop_vpn" }, { "label": "vpn_is_up()", @@ -23929,10 +24767,10 @@ "kind": "bash_function" }, "_origin": "ast", - "id": "gitea_scripts_with_vpn_vpn_is_up", "community": 159, "community_name": "with-vpn.sh", - "norm_label": "vpn_is_up()" + "norm_label": "vpn_is_up()", + "id": "gitea_scripts_with_vpn_vpn_is_up" }, { "label": "doctors.controller.ts", @@ -23940,10 +24778,10 @@ "source_file": "backend/src/doctors/doctors.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_doctors_doctors_controller", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "doctors.controller.ts" + "norm_label": "doctors.controller.ts", + "id": "backend_src_doctors_doctors_controller" }, { "label": "ApiBearerAuth", @@ -23951,10 +24789,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_ts_apibearerauth", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "apibearerauth" + "norm_label": "apibearerauth", + "id": "backend_src_doctors_doctors_controller_ts_apibearerauth" }, { "label": "ApiOperation", @@ -23962,10 +24800,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_ts_apioperation", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "apioperation" + "norm_label": "apioperation", + "id": "backend_src_doctors_doctors_controller_ts_apioperation" }, { "label": "ApiTags", @@ -23973,10 +24811,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_ts_apitags", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "apitags" + "norm_label": "apitags", + "id": "backend_src_doctors_doctors_controller_ts_apitags" }, { "label": "Body", @@ -23984,10 +24822,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_ts_body", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "body" + "norm_label": "body", + "id": "backend_src_doctors_doctors_controller_ts_body" }, { "label": "Controller", @@ -23995,10 +24833,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_ts_controller", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "controller" + "norm_label": "controller", + "id": "backend_src_doctors_doctors_controller_ts_controller" }, { "label": "Delete", @@ -24006,10 +24844,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_ts_delete", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "delete" + "norm_label": "delete", + "id": "backend_src_doctors_doctors_controller_ts_delete" }, { "label": "Get", @@ -24017,10 +24855,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_ts_get", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "get" + "norm_label": "get", + "id": "backend_src_doctors_doctors_controller_ts_get" }, { "label": "Param", @@ -24028,10 +24866,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_ts_param", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "param" + "norm_label": "param", + "id": "backend_src_doctors_doctors_controller_ts_param" }, { "label": "Post", @@ -24039,10 +24877,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_ts_post", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "post" + "norm_label": "post", + "id": "backend_src_doctors_doctors_controller_ts_post" }, { "label": "Put", @@ -24050,10 +24888,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_ts_put", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "put" + "norm_label": "put", + "id": "backend_src_doctors_doctors_controller_ts_put" }, { "label": "Query", @@ -24061,10 +24899,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_ts_query", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "query" + "norm_label": "query", + "id": "backend_src_doctors_doctors_controller_ts_query" }, { "label": "UseGuards", @@ -24072,10 +24910,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_doctors_controller_ts_useguards", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "useguards" + "norm_label": "useguards", + "id": "backend_src_doctors_doctors_controller_ts_useguards" }, { "label": "doctors.service.ts", @@ -24083,10 +24921,10 @@ "source_file": "backend/src/doctors/doctors.service.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_doctors_doctors_service", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "doctors.service.ts" + "norm_label": "doctors.service.ts", + "id": "backend_src_doctors_doctors_service" }, { "label": "Injectable", @@ -24094,10 +24932,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_doctors_service_ts_injectable", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "injectable" + "norm_label": "injectable", + "id": "backend_src_doctors_doctors_service_ts_injectable" }, { "label": "doctor-query.dto.ts", @@ -24105,10 +24943,10 @@ "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_doctors_dto_doctor_query_dto", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "doctor-query.dto.ts" + "norm_label": "doctor-query.dto.ts", + "id": "backend_src_doctors_dto_doctor_query_dto" }, { "label": "ApiPropertyOptional", @@ -24116,10 +24954,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_dto_doctor_query_dto_ts_apipropertyoptional", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "apipropertyoptional" + "norm_label": "apipropertyoptional", + "id": "backend_src_doctors_dto_doctor_query_dto_ts_apipropertyoptional" }, { "label": "IsBoolean", @@ -24127,10 +24965,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_dto_doctor_query_dto_ts_isboolean", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "isboolean" + "norm_label": "isboolean", + "id": "backend_src_doctors_dto_doctor_query_dto_ts_isboolean" }, { "label": "IsInt", @@ -24138,10 +24976,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_dto_doctor_query_dto_ts_isint", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "isint" + "norm_label": "isint", + "id": "backend_src_doctors_dto_doctor_query_dto_ts_isint" }, { "label": "IsOptional", @@ -24149,10 +24987,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_dto_doctor_query_dto_ts_isoptional", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "isoptional" + "norm_label": "isoptional", + "id": "backend_src_doctors_dto_doctor_query_dto_ts_isoptional" }, { "label": "IsString", @@ -24160,10 +24998,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_dto_doctor_query_dto_ts_isstring", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "isstring" + "norm_label": "isstring", + "id": "backend_src_doctors_dto_doctor_query_dto_ts_isstring" }, { "label": "Min", @@ -24171,10 +25009,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_dto_doctor_query_dto_ts_min", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "min" + "norm_label": "min", + "id": "backend_src_doctors_dto_doctor_query_dto_ts_min" }, { "label": "Transform", @@ -24182,10 +25020,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_dto_doctor_query_dto_ts_transform", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "transform" + "norm_label": "transform", + "id": "backend_src_doctors_dto_doctor_query_dto_ts_transform" }, { "label": "Type", @@ -24193,10 +25031,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_doctors_dto_doctor_query_dto_ts_type", "community": 16, "community_name": "DoctorQueryDto", - "norm_label": "type" + "norm_label": "type", + "id": "backend_src_doctors_dto_doctor_query_dto_ts_type" }, { "label": "architecture_spec.md", @@ -24204,10 +25042,11 @@ "source_file": ".ai_agency/specs/architecture_spec.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_architecture_spec", "community": 160, "community_name": "Architecture Specification", - "norm_label": "architecture_spec.md" + "norm_label": "architecture_spec.md", + "node_kind": "page", + "id": "ai_agency_specs_architecture_spec" }, { "label": "1. Single Non-Negotiable Tech Stack", @@ -24215,10 +25054,11 @@ "source_file": ".ai_agency/specs/architecture_spec.md", "source_location": "L3", "_origin": "ast", - "id": "ai_agency_specs_architecture_spec_1_single_non_negotiable_tech_stack", "community": 160, "community_name": "Architecture Specification", - "norm_label": "1. single non-negotiable tech stack" + "norm_label": "1. single non-negotiable tech stack", + "node_kind": "heading", + "id": "ai_agency_specs_architecture_spec_1_single_non_negotiable_tech_stack" }, { "label": "2. Directory Structure Tree", @@ -24226,10 +25066,11 @@ "source_file": ".ai_agency/specs/architecture_spec.md", "source_location": "L10", "_origin": "ast", - "id": "ai_agency_specs_architecture_spec_2_directory_structure_tree", "community": 160, "community_name": "Architecture Specification", - "norm_label": "2. directory structure tree" + "norm_label": "2. directory structure tree", + "node_kind": "heading", + "id": "ai_agency_specs_architecture_spec_2_directory_structure_tree" }, { "label": "3. State Management Strategy", @@ -24237,10 +25078,11 @@ "source_file": ".ai_agency/specs/architecture_spec.md", "source_location": "L25", "_origin": "ast", - "id": "ai_agency_specs_architecture_spec_3_state_management_strategy", "community": 160, "community_name": "Architecture Specification", - "norm_label": "3. state management strategy" + "norm_label": "3. state management strategy", + "node_kind": "heading", + "id": "ai_agency_specs_architecture_spec_3_state_management_strategy" }, { "label": "4. Deployment / Docker Architecture", @@ -24248,10 +25090,11 @@ "source_file": ".ai_agency/specs/architecture_spec.md", "source_location": "L28", "_origin": "ast", - "id": "ai_agency_specs_architecture_spec_4_deployment_docker_architecture", "community": 160, "community_name": "Architecture Specification", - "norm_label": "4. deployment / docker architecture" + "norm_label": "4. deployment / docker architecture", + "node_kind": "heading", + "id": "ai_agency_specs_architecture_spec_4_deployment_docker_architecture" }, { "label": "Architecture Specification", @@ -24259,10 +25102,11 @@ "source_file": ".ai_agency/specs/architecture_spec.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_architecture_spec_architecture_specification", "community": 160, "community_name": "Architecture Specification", - "norm_label": "architecture specification" + "norm_label": "architecture specification", + "node_kind": "heading", + "id": "ai_agency_specs_architecture_spec_architecture_specification" }, { "label": "project_health.md", @@ -24270,10 +25114,11 @@ "source_file": ".ai_agency/specs/project_health.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_project_health", "community": 161, "community_name": "Project Health Audit Report", - "norm_label": "project_health.md" + "norm_label": "project_health.md", + "node_kind": "page", + "id": "ai_agency_specs_project_health" }, { "label": "1. Audit Score Summary", @@ -24281,10 +25126,11 @@ "source_file": ".ai_agency/specs/project_health.md", "source_location": "L3", "_origin": "ast", - "id": "ai_agency_specs_project_health_1_audit_score_summary", "community": 161, "community_name": "Project Health Audit Report", - "norm_label": "1. audit score summary" + "norm_label": "1. audit score summary", + "node_kind": "heading", + "id": "ai_agency_specs_project_health_1_audit_score_summary" }, { "label": "2. Technical Debt Inventory", @@ -24292,10 +25138,11 @@ "source_file": ".ai_agency/specs/project_health.md", "source_location": "L7", "_origin": "ast", - "id": "ai_agency_specs_project_health_2_technical_debt_inventory", "community": 161, "community_name": "Project Health Audit Report", - "norm_label": "2. technical debt inventory" + "norm_label": "2. technical debt inventory", + "node_kind": "heading", + "id": "ai_agency_specs_project_health_2_technical_debt_inventory" }, { "label": "3. Outdated Dependencies List", @@ -24303,10 +25150,11 @@ "source_file": ".ai_agency/specs/project_health.md", "source_location": "L10", "_origin": "ast", - "id": "ai_agency_specs_project_health_3_outdated_dependencies_list", "community": 161, "community_name": "Project Health Audit Report", - "norm_label": "3. outdated dependencies list" + "norm_label": "3. outdated dependencies list", + "node_kind": "heading", + "id": "ai_agency_specs_project_health_3_outdated_dependencies_list" }, { "label": "4. Security Risks (.env leaks, unprotected ports)", @@ -24314,10 +25162,11 @@ "source_file": ".ai_agency/specs/project_health.md", "source_location": "L13", "_origin": "ast", - "id": "ai_agency_specs_project_health_4_security_risks_env_leaks_unprotected_ports", "community": 161, "community_name": "Project Health Audit Report", - "norm_label": "4. security risks (.env leaks, unprotected ports)" + "norm_label": "4. security risks (.env leaks, unprotected ports)", + "node_kind": "heading", + "id": "ai_agency_specs_project_health_4_security_risks_env_leaks_unprotected_ports" }, { "label": "Project Health Audit Report", @@ -24325,10 +25174,11 @@ "source_file": ".ai_agency/specs/project_health.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_project_health_project_health_audit_report", "community": 161, "community_name": "Project Health Audit Report", - "norm_label": "project health audit report" + "norm_label": "project health audit report", + "node_kind": "heading", + "id": "ai_agency_specs_project_health_project_health_audit_report" }, { "label": "nest-cli.json", @@ -24336,10 +25186,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L1", "_origin": "ast", - "id": "backend_nest_cli", "community": 162, "community_name": "nest-cli.json", - "norm_label": "nest-cli.json" + "norm_label": "nest-cli.json", + "id": "backend_nest_cli" }, { "label": "collection", @@ -24347,10 +25197,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L3", "_origin": "ast", - "id": "backend_nest_cli_collection", "community": 162, "community_name": "nest-cli.json", - "norm_label": "collection" + "norm_label": "collection", + "id": "backend_nest_cli_collection" }, { "label": "compilerOptions", @@ -24358,10 +25208,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L5", "_origin": "ast", - "id": "backend_nest_cli_compileroptions", "community": 162, "community_name": "nest-cli.json", - "norm_label": "compileroptions" + "norm_label": "compileroptions", + "id": "backend_nest_cli_compileroptions" }, { "label": "deleteOutDir", @@ -24369,10 +25219,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L6", "_origin": "ast", - "id": "backend_nest_cli_compileroptions_deleteoutdir", "community": 162, "community_name": "nest-cli.json", - "norm_label": "deleteoutdir" + "norm_label": "deleteoutdir", + "id": "backend_nest_cli_compileroptions_deleteoutdir" }, { "label": "$schema", @@ -24380,10 +25230,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L2", "_origin": "ast", - "id": "backend_nest_cli_schema", "community": 162, "community_name": "nest-cli.json", - "norm_label": "$schema" + "norm_label": "$schema", + "id": "backend_nest_cli_schema" }, { "label": "sourceRoot", @@ -24391,10 +25241,10 @@ "source_file": "backend/nest-cli.json", "source_location": "L4", "_origin": "ast", - "id": "backend_nest_cli_sourceroot", "community": 162, "community_name": "nest-cli.json", - "norm_label": "sourceroot" + "norm_label": "sourceroot", + "id": "backend_nest_cli_sourceroot" }, { "label": "query.md", @@ -24402,10 +25252,11 @@ "source_file": ".claude/skills/graphify/references/query.md", "source_location": "L1", "_origin": "ast", - "id": "claude_skills_graphify_references_query", "community": 163, "community_name": "graphify reference: query, path, explain", - "norm_label": "query.md" + "norm_label": "query.md", + "node_kind": "page", + "id": "claude_skills_graphify_references_query" }, { "label": "For /graphify explain", @@ -24413,10 +25264,11 @@ "source_file": ".claude/skills/graphify/references/query.md", "source_location": "L254", "_origin": "ast", - "id": "claude_skills_graphify_references_query_for_graphify_explain", "community": 163, "community_name": "graphify reference: query, path, explain", - "norm_label": "for /graphify explain" + "norm_label": "for /graphify explain", + "node_kind": "heading", + "id": "claude_skills_graphify_references_query_for_graphify_explain" }, { "label": "For /graphify path", @@ -24424,10 +25276,11 @@ "source_file": ".claude/skills/graphify/references/query.md", "source_location": "L186", "_origin": "ast", - "id": "claude_skills_graphify_references_query_for_graphify_path", "community": 163, "community_name": "graphify reference: query, path, explain", - "norm_label": "for /graphify path" + "norm_label": "for /graphify path", + "node_kind": "heading", + "id": "claude_skills_graphify_references_query_for_graphify_path" }, { "label": "graphify reference: query, path, explain", @@ -24435,10 +25288,11 @@ "source_file": ".claude/skills/graphify/references/query.md", "source_location": "L1", "_origin": "ast", - "id": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", "community": 163, "community_name": "graphify reference: query, path, explain", - "norm_label": "graphify reference: query, path, explain" + "norm_label": "graphify reference: query, path, explain", + "node_kind": "heading", + "id": "claude_skills_graphify_references_query_graphify_reference_query_path_explain" }, { "label": "Step 0 \u2014 Constrained query expansion (REQUIRED before traversal)", @@ -24446,10 +25300,11 @@ "source_file": ".claude/skills/graphify/references/query.md", "source_location": "L23", "_origin": "ast", - "id": "claude_skills_graphify_references_query_step_0_constrained_query_expansion_required_before_traversal", "community": 163, "community_name": "graphify reference: query, path, explain", - "norm_label": "step 0 \u2014 constrained query expansion (required before traversal)" + "norm_label": "step 0 \u2014 constrained query expansion (required before traversal)", + "node_kind": "heading", + "id": "claude_skills_graphify_references_query_step_0_constrained_query_expansion_required_before_traversal" }, { "label": "Step 1 \u2014 Traversal", @@ -24457,10 +25312,11 @@ "source_file": ".claude/skills/graphify/references/query.md", "source_location": "L61", "_origin": "ast", - "id": "claude_skills_graphify_references_query_step_1_traversal", "community": 163, "community_name": "graphify reference: query, path, explain", - "norm_label": "step 1 \u2014 traversal" + "norm_label": "step 1 \u2014 traversal", + "node_kind": "heading", + "id": "claude_skills_graphify_references_query_step_1_traversal" }, { "label": "04-open-questions.md", @@ -24468,10 +25324,11 @@ "source_file": "docs/audit/04-open-questions.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_04_open_questions", "community": 164, "community_name": "Open Questions", - "norm_label": "04-open-questions.md" + "norm_label": "04-open-questions.md", + "node_kind": "page", + "id": "docs_audit_04_open_questions" }, { "label": "1. Storefront Migration Roadmap (`frontend/application`)", @@ -24479,10 +25336,11 @@ "source_file": "docs/audit/04-open-questions.md", "source_location": "L5", "_origin": "ast", - "id": "docs_audit_04_open_questions_1_storefront_migration_roadmap_frontend_application", "community": 164, "community_name": "Open Questions", - "norm_label": "1. storefront migration roadmap (`frontend/application`)" + "norm_label": "1. storefront migration roadmap (`frontend/application`)", + "node_kind": "heading", + "id": "docs_audit_04_open_questions_1_storefront_migration_roadmap_frontend_application" }, { "label": "2. Payment Gateway Integration Provider", @@ -24490,10 +25348,11 @@ "source_file": "docs/audit/04-open-questions.md", "source_location": "L9", "_origin": "ast", - "id": "docs_audit_04_open_questions_2_payment_gateway_integration_provider", "community": 164, "community_name": "Open Questions", - "norm_label": "2. payment gateway integration provider" + "norm_label": "2. payment gateway integration provider", + "node_kind": "heading", + "id": "docs_audit_04_open_questions_2_payment_gateway_integration_provider" }, { "label": "3. Deployment & CI/CD Pipeline Specifications", @@ -24501,10 +25360,11 @@ "source_file": "docs/audit/04-open-questions.md", "source_location": "L13", "_origin": "ast", - "id": "docs_audit_04_open_questions_3_deployment_ci_cd_pipeline_specifications", "community": 164, "community_name": "Open Questions", - "norm_label": "3. deployment & ci/cd pipeline specifications" + "norm_label": "3. deployment & ci/cd pipeline specifications", + "node_kind": "heading", + "id": "docs_audit_04_open_questions_3_deployment_ci_cd_pipeline_specifications" }, { "label": "4. SMS / OTP Service Provider", @@ -24512,10 +25372,11 @@ "source_file": "docs/audit/04-open-questions.md", "source_location": "L17", "_origin": "ast", - "id": "docs_audit_04_open_questions_4_sms_otp_service_provider", "community": 164, "community_name": "Open Questions", - "norm_label": "4. sms / otp service provider" + "norm_label": "4. sms / otp service provider", + "node_kind": "heading", + "id": "docs_audit_04_open_questions_4_sms_otp_service_provider" }, { "label": "Open Questions", @@ -24523,10 +25384,11 @@ "source_file": "docs/audit/04-open-questions.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_04_open_questions_open_questions", "community": 164, "community_name": "Open Questions", - "norm_label": "open questions" + "norm_label": "open questions", + "node_kind": "heading", + "id": "docs_audit_04_open_questions_open_questions" }, { "label": "33-final-phase2-audit-closure.md", @@ -24534,10 +25396,11 @@ "source_file": "docs/audit/33-final-phase2-audit-closure.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_33_final_phase2_audit_closure", "community": 165, "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "33-final-phase2-audit-closure.md" + "norm_label": "33-final-phase2-audit-closure.md", + "node_kind": "page", + "id": "docs_audit_33_final_phase2_audit_closure" }, { "label": "1. Executive Summary & Honest Review-Tier Metrics", @@ -24545,10 +25408,11 @@ "source_file": "docs/audit/33-final-phase2-audit-closure.md", "source_location": "L9", "_origin": "ast", - "id": "docs_audit_33_final_phase2_audit_closure_1_executive_summary_honest_review_tier_metrics", "community": 165, "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "1. executive summary & honest review-tier metrics" + "norm_label": "1. executive summary & honest review-tier metrics", + "node_kind": "heading", + "id": "docs_audit_33_final_phase2_audit_closure_1_executive_summary_honest_review_tier_metrics" }, { "label": "2. Reconciled Findings & Canonical Identifier Normalization", @@ -24556,10 +25420,11 @@ "source_file": "docs/audit/33-final-phase2-audit-closure.md", "source_location": "L22", "_origin": "ast", - "id": "docs_audit_33_final_phase2_audit_closure_2_reconciled_findings_canonical_identifier_normalization", "community": 165, "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "2. reconciled findings & canonical identifier normalization" + "norm_label": "2. reconciled findings & canonical identifier normalization", + "node_kind": "heading", + "id": "docs_audit_33_final_phase2_audit_closure_2_reconciled_findings_canonical_identifier_normalization" }, { "label": "3. Validation & Integrity Verification", @@ -24567,10 +25432,11 @@ "source_file": "docs/audit/33-final-phase2-audit-closure.md", "source_location": "L34", "_origin": "ast", - "id": "docs_audit_33_final_phase2_audit_closure_3_validation_integrity_verification", "community": 165, "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "3. validation & integrity verification" + "norm_label": "3. validation & integrity verification", + "node_kind": "heading", + "id": "docs_audit_33_final_phase2_audit_closure_3_validation_integrity_verification" }, { "label": "4. Final Quality Gate Conclusion", @@ -24578,10 +25444,11 @@ "source_file": "docs/audit/33-final-phase2-audit-closure.md", "source_location": "L42", "_origin": "ast", - "id": "docs_audit_33_final_phase2_audit_closure_4_final_quality_gate_conclusion", "community": 165, "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "4. final quality gate conclusion" + "norm_label": "4. final quality gate conclusion", + "node_kind": "heading", + "id": "docs_audit_33_final_phase2_audit_closure_4_final_quality_gate_conclusion" }, { "label": "Final Phase 2 Audit Closure Report", @@ -24589,10 +25456,11 @@ "source_file": "docs/audit/33-final-phase2-audit-closure.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", "community": 165, "community_name": "Final Phase 2 Audit Closure Report", - "norm_label": "final phase 2 audit closure report" + "norm_label": "final phase 2 audit closure report", + "node_kind": "heading", + "id": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report" }, { "label": "open-browsers.js", @@ -24600,10 +25468,10 @@ "source_file": "scripts/open-browsers.js", "source_location": "L1", "_origin": "ast", - "id": "scripts_open_browsers", "community": 166, "community_name": "open-browsers.js", - "norm_label": "open-browsers.js" + "norm_label": "open-browsers.js", + "id": "scripts_open_browsers" }, { "label": "{ exec }", @@ -24611,10 +25479,10 @@ "source_file": "scripts/open-browsers.js", "source_location": "L1", "_origin": "ast", - "id": "scripts_open_browsers_exec", "community": 166, "community_name": "open-browsers.js", - "norm_label": "{ exec }" + "norm_label": "{ exec }", + "id": "scripts_open_browsers_exec" }, { "label": "http", @@ -24622,10 +25490,10 @@ "source_file": "scripts/open-browsers.js", "source_location": "L2", "_origin": "ast", - "id": "scripts_open_browsers_http", "community": 166, "community_name": "open-browsers.js", - "norm_label": "http" + "norm_label": "http", + "id": "scripts_open_browsers_http" }, { "label": "URLS", @@ -24633,10 +25501,10 @@ "source_file": "scripts/open-browsers.js", "source_location": "L4", "_origin": "ast", - "id": "scripts_open_browsers_urls", "community": 166, "community_name": "open-browsers.js", - "norm_label": "urls" + "norm_label": "urls", + "id": "scripts_open_browsers_urls" }, { "label": "scratchpad.md", @@ -24644,10 +25512,11 @@ "source_file": ".ai_agency/memory/scratchpad.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_memory_scratchpad", "community": 167, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", - "norm_label": "scratchpad.md" + "norm_label": "scratchpad.md", + "node_kind": "page", + "id": "ai_agency_memory_scratchpad" }, { "label": "\ud83d\udcdd Active Agent Working Scratchpad", @@ -24655,10 +25524,11 @@ "source_file": ".ai_agency/memory/scratchpad.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", "community": 167, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", - "norm_label": "\ud83d\udcdd active agent working scratchpad" + "norm_label": "\ud83d\udcdd active agent working scratchpad", + "node_kind": "heading", + "id": "ai_agency_memory_scratchpad_active_agent_working_scratchpad" }, { "label": "\ud83c\udfd7\ufe0f Execution Target", @@ -24666,10 +25536,11 @@ "source_file": ".ai_agency/memory/scratchpad.md", "source_location": "L24", "_origin": "ast", - "id": "ai_agency_memory_scratchpad_execution_target", "community": 167, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", - "norm_label": "\ud83c\udfd7\ufe0f execution target" + "norm_label": "\ud83c\udfd7\ufe0f execution target", + "node_kind": "heading", + "id": "ai_agency_memory_scratchpad_execution_target" }, { "label": "Project: Canina Veterinary E-Commerce System", @@ -24677,10 +25548,11 @@ "source_file": ".ai_agency/memory/scratchpad.md", "source_location": "L3", "_origin": "ast", - "id": "ai_agency_memory_scratchpad_project_canina_veterinary_e_commerce_system", "community": 167, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", - "norm_label": "project: canina veterinary e-commerce system" + "norm_label": "project: canina veterinary e-commerce system", + "node_kind": "heading", + "id": "ai_agency_memory_scratchpad_project_canina_veterinary_e_commerce_system" }, { "label": "\ud83d\udccb Requirements & Persona Mandates (Intake & User Request)", @@ -24688,10 +25560,11 @@ "source_file": ".ai_agency/memory/scratchpad.md", "source_location": "L8", "_origin": "ast", - "id": "ai_agency_memory_scratchpad_requirements_persona_mandates_intake_user_request", "community": 167, "community_name": "\ud83d\udcdd Active Agent Working Scratchpad", - "norm_label": "\ud83d\udccb requirements & persona mandates (intake & user request)" + "norm_label": "\ud83d\udccb requirements & persona mandates (intake & user request)", + "node_kind": "heading", + "id": "ai_agency_memory_scratchpad_requirements_persona_mandates_intake_user_request" }, { "label": "code_health_review.md", @@ -24699,10 +25572,11 @@ "source_file": ".ai_agency/specs/reviews/code_health_review.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_reviews_code_health_review", "community": 168, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", - "norm_label": "code_health_review.md" + "norm_label": "code_health_review.md", + "node_kind": "page", + "id": "ai_agency_specs_reviews_code_health_review" }, { "label": "\ud83d\udd0d Code Health Audit Review (01_auditor)", @@ -24710,10 +25584,11 @@ "source_file": ".ai_agency/specs/reviews/code_health_review.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", "community": 168, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", - "norm_label": "\ud83d\udd0d code health audit review (01_auditor)" + "norm_label": "\ud83d\udd0d code health audit review (01_auditor)", + "node_kind": "heading", + "id": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor" }, { "label": "Executive Summary", @@ -24721,10 +25596,11 @@ "source_file": ".ai_agency/specs/reviews/code_health_review.md", "source_location": "L3", "_origin": "ast", - "id": "ai_agency_specs_reviews_code_health_review_executive_summary", "community": 168, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", - "norm_label": "executive summary" + "norm_label": "executive summary", + "node_kind": "heading", + "id": "ai_agency_specs_reviews_code_health_review_executive_summary" }, { "label": "Key Findings", @@ -24732,10 +25608,11 @@ "source_file": ".ai_agency/specs/reviews/code_health_review.md", "source_location": "L8", "_origin": "ast", - "id": "ai_agency_specs_reviews_code_health_review_key_findings", "community": 168, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", - "norm_label": "key findings" + "norm_label": "key findings", + "node_kind": "heading", + "id": "ai_agency_specs_reviews_code_health_review_key_findings" }, { "label": "Recommendations", @@ -24743,10 +25620,11 @@ "source_file": ".ai_agency/specs/reviews/code_health_review.md", "source_location": "L19", "_origin": "ast", - "id": "ai_agency_specs_reviews_code_health_review_recommendations", "community": 168, "community_name": "\ud83d\udd0d Code Health Audit Review (01_auditor)", - "norm_label": "recommendations" + "norm_label": "recommendations", + "node_kind": "heading", + "id": "ai_agency_specs_reviews_code_health_review_recommendations" }, { "label": "paginated-response.schema.ts", @@ -24754,10 +25632,10 @@ "source_file": "backend/src/common/schemas/paginated-response.schema.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_common_schemas_paginated_response_schema", "community": 169, "community_name": "paginated-response.schema.ts", - "norm_label": "paginated-response.schema.ts" + "norm_label": "paginated-response.schema.ts", + "id": "backend_src_common_schemas_paginated_response_schema" }, { "label": "ApiProperty", @@ -24765,54 +25643,197 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty", "community": 169, "community_name": "paginated-response.schema.ts", - "norm_label": "apiproperty" + "norm_label": "apiproperty", + "id": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty" }, { - "label": "b2b/page.tsx", + "label": "AuthModal", "file_type": "code", - "source_file": "frontend/application/app/b2b/page.tsx", - "source_location": "L1", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L13", "_origin": "ast", - "id": "frontend_application_app_b2b_page", - "community": 17, - "community_name": "schema.ts", - "norm_label": "b2b/page.tsx" + "community": 88, + "community_name": "toPersian", + "norm_label": "authmodal", + "id": "frontend_application_app_clientlayout_authmodal" }, { - "label": "contact/page.tsx", + "label": "AddressModal.tsx", "file_type": "code", - "source_file": "frontend/application/app/contact/page.tsx", + "source_file": "frontend/application/components/AddressModal.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_contact_page", - "community": 17, - "community_name": "schema.ts", - "norm_label": "contact/page.tsx" + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "addressmodal.tsx", + "id": "frontend_application_components_addressmodal" }, { - "label": "videos/page.tsx", + "label": "AuthModal.tsx", "file_type": "code", - "source_file": "frontend/application/app/videos/page.tsx", + "source_file": "frontend/application/components/AuthModal.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_videos_page", - "community": 17, - "community_name": "schema.ts", - "norm_label": "videos/page.tsx" + "community": 88, + "community_name": "toPersian", + "norm_label": "authmodal.tsx", + "id": "frontend_application_components_authmodal" }, { - "label": "schema.ts", + "label": "BackButton.tsx", "file_type": "code", - "source_file": "frontend/application/lib/schema.ts", + "source_file": "frontend/application/components/BackButton.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_lib_schema", - "community": 17, - "community_name": "schema.ts", - "norm_label": "schema.ts" + "community": 4, + "community_name": "utils.ts", + "norm_label": "backbutton.tsx", + "id": "frontend_application_components_backbutton" + }, + { + "label": "CheckoutPage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "checkoutpage.tsx", + "id": "frontend_application_components_checkoutpage" + }, + { + "label": "DeleteConfirmModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/DeleteConfirmModal.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "deleteconfirmmodal.tsx", + "id": "frontend_application_components_deleteconfirmmodal" + }, + { + "label": "HeaderButton.tsx", + "file_type": "code", + "source_file": "frontend/application/components/HeaderButton.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "headerbutton.tsx", + "id": "frontend_application_components_headerbutton" + }, + { + "label": "SearchableSelect.tsx", + "file_type": "code", + "source_file": "frontend/application/components/SearchableSelect.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "searchableselect.tsx", + "id": "frontend_application_components_searchableselect" + }, + { + "label": "TopUpModal.tsx", + "file_type": "code", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "topupmodal.tsx", + "id": "frontend_application_components_topupmodal" + }, + { + "label": "PRESET_AMOUNTS", + "file_type": "code", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L18", + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "preset_amounts", + "id": "frontend_application_components_topupmodal_preset_amounts" + }, + { + "label": "UserDashboard.tsx", + "file_type": "code", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "userdashboard.tsx", + "id": "frontend_application_components_userdashboard" + }, + { + "label": "provinces.ts", + "file_type": "code", + "source_file": "frontend/application/lib/data/provinces.ts", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "provinces.ts", + "id": "frontend_application_lib_data_provinces" + }, + { + "label": "IRAN_PROVINCES", + "file_type": "code", + "source_file": "frontend/application/lib/data/provinces.ts", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "iran_provinces", + "id": "frontend_application_lib_data_provinces_iran_provinces" + }, + { + "label": "PROVINCE_CITIES", + "file_type": "code", + "source_file": "frontend/application/lib/data/provinces.ts", + "source_location": "L35", + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "province_cities", + "id": "frontend_application_lib_data_provinces_province_cities" + }, + { + "label": "ticketService.ts", + "file_type": "code", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L1", + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "ticketservice.ts", + "id": "frontend_application_lib_services_ticketservice" + }, + { + "label": "ticketService", + "file_type": "code", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L43", + "_origin": "ast", + "community": 14, + "community_name": "UserDashboard.tsx", + "norm_label": "ticketservice", + "id": "frontend_application_lib_services_ticketservice_ticketservice" + }, + { + "label": "utils.ts", + "file_type": "code", + "source_file": "frontend/application/lib/utils.ts", + "source_location": "L1", + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "utils.ts", + "id": "frontend_application_lib_utils" }, { "label": "24-omitted-file-inspection-report.md", @@ -24820,10 +25841,11 @@ "source_file": "docs/audit/24-omitted-file-inspection-report.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_24_omitted_file_inspection_report", "community": 171, "community_name": "Omitted File Inspection Report", - "norm_label": "24-omitted-file-inspection-report.md" + "norm_label": "24-omitted-file-inspection-report.md", + "node_kind": "page", + "id": "docs_audit_24_omitted_file_inspection_report" }, { "label": "Conclusion", @@ -24831,10 +25853,11 @@ "source_file": "docs/audit/24-omitted-file-inspection-report.md", "source_location": "L32", "_origin": "ast", - "id": "docs_audit_24_omitted_file_inspection_report_conclusion", "community": 171, "community_name": "Omitted File Inspection Report", - "norm_label": "conclusion" + "norm_label": "conclusion", + "node_kind": "heading", + "id": "docs_audit_24_omitted_file_inspection_report_conclusion" }, { "label": "Key Domain Findings from Omitted File Audit", @@ -24842,10 +25865,11 @@ "source_file": "docs/audit/24-omitted-file-inspection-report.md", "source_location": "L14", "_origin": "ast", - "id": "docs_audit_24_omitted_file_inspection_report_key_domain_findings_from_omitted_file_audit", "community": 171, "community_name": "Omitted File Inspection Report", - "norm_label": "key domain findings from omitted file audit" + "norm_label": "key domain findings from omitted file audit", + "node_kind": "heading", + "id": "docs_audit_24_omitted_file_inspection_report_key_domain_findings_from_omitted_file_audit" }, { "label": "Omitted File Inspection Report", @@ -24853,10 +25877,11 @@ "source_file": "docs/audit/24-omitted-file-inspection-report.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report", "community": 171, "community_name": "Omitted File Inspection Report", - "norm_label": "omitted file inspection report" + "norm_label": "omitted file inspection report", + "node_kind": "heading", + "id": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report" }, { "label": "Overview of Omitted File Inspections", @@ -24864,10 +25889,11 @@ "source_file": "docs/audit/24-omitted-file-inspection-report.md", "source_location": "L11", "_origin": "ast", - "id": "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections", "community": 171, "community_name": "Omitted File Inspection Report", - "norm_label": "overview of omitted file inspections" + "norm_label": "overview of omitted file inspections", + "node_kind": "heading", + "id": "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections" }, { "label": "phase3.2-implementation-readiness.md", @@ -24875,10 +25901,11 @@ "source_file": "docs/audit/phase3.2-implementation-readiness.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_phase3_2_implementation_readiness", "community": 172, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", - "norm_label": "phase3.2-implementation-readiness.md" + "norm_label": "phase3.2-implementation-readiness.md", + "node_kind": "page", + "id": "docs_audit_phase3_2_implementation_readiness" }, { "label": "1. Executive Summary & Architecture Decisions", @@ -24886,10 +25913,11 @@ "source_file": "docs/audit/phase3.2-implementation-readiness.md", "source_location": "L12", "_origin": "ast", - "id": "docs_audit_phase3_2_implementation_readiness_1_executive_summary_architecture_decisions", "community": 172, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", - "norm_label": "1. executive summary & architecture decisions" + "norm_label": "1. executive summary & architecture decisions", + "node_kind": "heading", + "id": "docs_audit_phase3_2_implementation_readiness_1_executive_summary_architecture_decisions" }, { "label": "2. Updated Task Specifications Overview", @@ -24897,10 +25925,11 @@ "source_file": "docs/audit/phase3.2-implementation-readiness.md", "source_location": "L30", "_origin": "ast", - "id": "docs_audit_phase3_2_implementation_readiness_2_updated_task_specifications_overview", "community": 172, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", - "norm_label": "2. updated task specifications overview" + "norm_label": "2. updated task specifications overview", + "node_kind": "heading", + "id": "docs_audit_phase3_2_implementation_readiness_2_updated_task_specifications_overview" }, { "label": "3. Final Readiness Statement", @@ -24908,10 +25937,11 @@ "source_file": "docs/audit/phase3.2-implementation-readiness.md", "source_location": "L47", "_origin": "ast", - "id": "docs_audit_phase3_2_implementation_readiness_3_final_readiness_statement", "community": 172, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", - "norm_label": "3. final readiness statement" + "norm_label": "3. final readiness statement", + "node_kind": "heading", + "id": "docs_audit_phase3_2_implementation_readiness_3_final_readiness_statement" }, { "label": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", @@ -24919,10 +25949,11 @@ "source_file": "docs/audit/phase3.2-implementation-readiness.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report", "community": 172, "community_name": "Phase 3.2 / 3.3 \u2014 Implementation Readiness & Architectural Finalization Report", - "norm_label": "phase 3.2 / 3.3 \u2014 implementation readiness & architectural finalization report" + "norm_label": "phase 3.2 / 3.3 \u2014 implementation readiness & architectural finalization report", + "node_kind": "heading", + "id": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report" }, { "label": "phase3-traceability-matrix.md", @@ -24930,10 +25961,11 @@ "source_file": "docs/audit/phase3-traceability-matrix.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_phase3_traceability_matrix", "community": 173, "community_name": "Phase 3 Audit Traceability Matrix", - "norm_label": "phase3-traceability-matrix.md" + "norm_label": "phase3-traceability-matrix.md", + "node_kind": "page", + "id": "docs_audit_phase3_traceability_matrix" }, { "label": "Complete Finding-to-Task Traceability Matrix", @@ -24941,10 +25973,11 @@ "source_file": "docs/audit/phase3-traceability-matrix.md", "source_location": "L11", "_origin": "ast", - "id": "docs_audit_phase3_traceability_matrix_complete_finding_to_task_traceability_matrix", "community": 173, "community_name": "Phase 3 Audit Traceability Matrix", - "norm_label": "complete finding-to-task traceability matrix" + "norm_label": "complete finding-to-task traceability matrix", + "node_kind": "heading", + "id": "docs_audit_phase3_traceability_matrix_complete_finding_to_task_traceability_matrix" }, { "label": "Finding Disposition & Accounting Verification", @@ -24952,10 +25985,11 @@ "source_file": "docs/audit/phase3-traceability-matrix.md", "source_location": "L40", "_origin": "ast", - "id": "docs_audit_phase3_traceability_matrix_finding_disposition_accounting_verification", "community": 173, "community_name": "Phase 3 Audit Traceability Matrix", - "norm_label": "finding disposition & accounting verification" + "norm_label": "finding disposition & accounting verification", + "node_kind": "heading", + "id": "docs_audit_phase3_traceability_matrix_finding_disposition_accounting_verification" }, { "label": "Phase 3 Audit Traceability Matrix", @@ -24963,10 +25997,11 @@ "source_file": "docs/audit/phase3-traceability-matrix.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", "community": 173, "community_name": "Phase 3 Audit Traceability Matrix", - "norm_label": "phase 3 audit traceability matrix" + "norm_label": "phase 3 audit traceability matrix", + "node_kind": "heading", + "id": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix" }, { "label": "Special Task Traceability (Non-Finding Tasks)", @@ -24974,10 +26009,11 @@ "source_file": "docs/audit/phase3-traceability-matrix.md", "source_location": "L32", "_origin": "ast", - "id": "docs_audit_phase3_traceability_matrix_special_task_traceability_non_finding_tasks", "community": 173, "community_name": "Phase 3 Audit Traceability Matrix", - "norm_label": "special task traceability (non-finding tasks)" + "norm_label": "special task traceability (non-finding tasks)", + "node_kind": "heading", + "id": "docs_audit_phase3_traceability_matrix_special_task_traceability_non_finding_tasks" }, { "label": "rebuild_honest_ledger.js", @@ -24985,10 +26021,10 @@ "source_file": "docs/audit/rebuild_honest_ledger.js", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_rebuild_honest_ledger", "community": 174, "community_name": "rebuild_honest_ledger.js", - "norm_label": "rebuild_honest_ledger.js" + "norm_label": "rebuild_honest_ledger.js", + "id": "docs_audit_rebuild_honest_ledger" }, { "label": "evidenceList", @@ -24996,10 +26032,10 @@ "source_file": "docs/audit/rebuild_honest_ledger.js", "source_location": "L4", "_origin": "ast", - "id": "docs_audit_rebuild_honest_ledger_evidencelist", "community": 174, "community_name": "rebuild_honest_ledger.js", - "norm_label": "evidencelist" + "norm_label": "evidencelist", + "id": "docs_audit_rebuild_honest_ledger_evidencelist" }, { "label": "ledger", @@ -25007,10 +26043,10 @@ "source_file": "docs/audit/rebuild_honest_ledger.js", "source_location": "L9", "_origin": "ast", - "id": "docs_audit_rebuild_honest_ledger_ledger", "community": 174, "community_name": "rebuild_honest_ledger.js", - "norm_label": "ledger" + "norm_label": "ledger", + "id": "docs_audit_rebuild_honest_ledger_ledger" }, { "label": "mandatoryMap", @@ -25018,10 +26054,10 @@ "source_file": "docs/audit/rebuild_honest_ledger.js", "source_location": "L6", "_origin": "ast", - "id": "docs_audit_rebuild_honest_ledger_mandatorymap", "community": 174, "community_name": "rebuild_honest_ledger.js", - "norm_label": "mandatorymap" + "norm_label": "mandatorymap", + "id": "docs_audit_rebuild_honest_ledger_mandatorymap" }, { "label": "mandatoryScope", @@ -25029,10 +26065,10 @@ "source_file": "docs/audit/rebuild_honest_ledger.js", "source_location": "L3", "_origin": "ast", - "id": "docs_audit_rebuild_honest_ledger_mandatoryscope", "community": 174, "community_name": "rebuild_honest_ledger.js", - "norm_label": "mandatoryscope" + "norm_label": "mandatoryscope", + "id": "docs_audit_rebuild_honest_ledger_mandatoryscope" }, { "label": "validate_evidence_grade.js", @@ -25040,10 +26076,10 @@ "source_file": "docs/audit/validate_evidence_grade.js", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_validate_evidence_grade", "community": 175, "community_name": "validate_evidence_grade.js", - "norm_label": "validate_evidence_grade.js" + "norm_label": "validate_evidence_grade.js", + "id": "docs_audit_validate_evidence_grade" }, { "label": "activeFiles", @@ -25051,10 +26087,10 @@ "source_file": "docs/audit/validate_evidence_grade.js", "source_location": "L58", "_origin": "ast", - "id": "docs_audit_validate_evidence_grade_activefiles", "community": 175, "community_name": "validate_evidence_grade.js", - "norm_label": "activefiles" + "norm_label": "activefiles", + "id": "docs_audit_validate_evidence_grade_activefiles" }, { "label": "errors", @@ -25062,10 +26098,10 @@ "source_file": "docs/audit/validate_evidence_grade.js", "source_location": "L4", "_origin": "ast", - "id": "docs_audit_validate_evidence_grade_errors", "community": 175, "community_name": "validate_evidence_grade.js", - "norm_label": "errors" + "norm_label": "errors", + "id": "docs_audit_validate_evidence_grade_errors" }, { "label": "validationOutput", @@ -25073,10 +26109,10 @@ "source_file": "docs/audit/validate_evidence_grade.js", "source_location": "L101", "_origin": "ast", - "id": "docs_audit_validate_evidence_grade_validationoutput", "community": 175, "community_name": "validate_evidence_grade.js", - "norm_label": "validationoutput" + "norm_label": "validationoutput", + "id": "docs_audit_validate_evidence_grade_validationoutput" }, { "label": "warnings", @@ -25084,98 +26120,10 @@ "source_file": "docs/audit/validate_evidence_grade.js", "source_location": "L5", "_origin": "ast", - "id": "docs_audit_validate_evidence_grade_warnings", "community": 175, "community_name": "validate_evidence_grade.js", - "norm_label": "warnings" - }, - { - "label": "helmet", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L38", - "_origin": "ast", - "id": "backend_package_dependencies_helmet", - "community": 176, - "community_name": "helmet", - "norm_label": "helmet" - }, - { - "label": "helmet", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L38", - "_origin": "ast", - "id": "helmet", - "community": 176, - "community_name": "helmet", - "norm_label": "helmet" - }, - { - "label": "js-yaml", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L40", - "_origin": "ast", - "id": "backend_package_dependencies_js_yaml", - "community": 177, - "community_name": "js-yaml", - "norm_label": "js-yaml" - }, - { - "label": "js-yaml", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L40", - "_origin": "ast", - "id": "js_yaml", - "community": 177, - "community_name": "js-yaml", - "norm_label": "js-yaml" - }, - { - "label": "@nestjs/core", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L26", - "_origin": "ast", - "id": "backend_package_dependencies_nestjs_core", - "community": 178, - "community_name": "@nestjs/core", - "norm_label": "@nestjs/core" - }, - { - "label": "@nestjs/core", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L26", - "_origin": "ast", - "id": "nestjs_core", - "community": 178, - "community_name": "@nestjs/core", - "norm_label": "@nestjs/core" - }, - { - "label": "admin/blogs.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "admin/blogs.controller.ts" - }, - { - "label": "admin/blogs.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_blogs_service", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "admin/blogs.service.ts" + "norm_label": "warnings", + "id": "docs_audit_validate_evidence_grade_warnings" }, { "label": "admin-query.dto.ts", @@ -25183,10 +26131,10 @@ "source_file": "backend/src/admin/dto/admin-query.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_admin_dto_admin_query_dto", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "admin-query.dto.ts" + "community": 66, + "community_name": "ApiOperation", + "norm_label": "admin-query.dto.ts", + "id": "backend_src_admin_dto_admin_query_dto" }, { "label": "blogs/blogs.controller.ts", @@ -25194,10 +26142,10 @@ "source_file": "backend/src/blogs/blogs.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_blogs_blogs_controller", "community": 179, "community_name": "PaginationDto", - "norm_label": "blogs/blogs.controller.ts" + "norm_label": "blogs/blogs.controller.ts", + "id": "backend_src_blogs_blogs_controller" }, { "label": "blogs.module.ts", @@ -25205,10 +26153,10 @@ "source_file": "backend/src/blogs/blogs.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_blogs_blogs_module", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "blogs.module.ts" + "community": 99, + "community_name": "BlogsController", + "norm_label": "blogs.module.ts", + "id": "backend_src_blogs_blogs_module" }, { "label": "Module", @@ -25216,10 +26164,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_blogs_blogs_module_ts_module", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "module" + "community": 99, + "community_name": "BlogsController", + "norm_label": "module", + "id": "backend_src_blogs_blogs_module_ts_module" }, { "label": "blogs/blogs.service.ts", @@ -25227,10 +26175,10 @@ "source_file": "backend/src/blogs/blogs.service.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_blogs_blogs_service", "community": 179, "community_name": "PaginationDto", - "norm_label": "blogs/blogs.service.ts" + "norm_label": "blogs/blogs.service.ts", + "id": "backend_src_blogs_blogs_service" }, { "label": "Injectable", @@ -25238,10 +26186,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_blogs_blogs_service_ts_injectable", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "injectable" + "community": 99, + "community_name": "BlogsController", + "norm_label": "injectable", + "id": "backend_src_blogs_blogs_service_ts_injectable" }, { "label": "pagination.dto.ts", @@ -25249,10 +26197,10 @@ "source_file": "backend/src/common/dto/pagination.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto", "community": 179, "community_name": "PaginationDto", - "norm_label": "pagination.dto.ts" + "norm_label": "pagination.dto.ts", + "id": "backend_src_common_dto_pagination_dto" }, { "label": "ApiPropertyOptional", @@ -25260,10 +26208,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_ts_apipropertyoptional", "community": 179, "community_name": "PaginationDto", - "norm_label": "apipropertyoptional" + "norm_label": "apipropertyoptional", + "id": "backend_src_common_dto_pagination_dto_ts_apipropertyoptional" }, { "label": "IsEnum", @@ -25271,10 +26219,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_ts_isenum", "community": 179, "community_name": "PaginationDto", - "norm_label": "isenum" + "norm_label": "isenum", + "id": "backend_src_common_dto_pagination_dto_ts_isenum" }, { "label": "IsInt", @@ -25282,10 +26230,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_ts_isint", "community": 179, "community_name": "PaginationDto", - "norm_label": "isint" + "norm_label": "isint", + "id": "backend_src_common_dto_pagination_dto_ts_isint" }, { "label": "IsOptional", @@ -25293,10 +26241,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_ts_isoptional", "community": 179, "community_name": "PaginationDto", - "norm_label": "isoptional" + "norm_label": "isoptional", + "id": "backend_src_common_dto_pagination_dto_ts_isoptional" }, { "label": "IsString", @@ -25304,10 +26252,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_ts_isstring", "community": 179, "community_name": "PaginationDto", - "norm_label": "isstring" + "norm_label": "isstring", + "id": "backend_src_common_dto_pagination_dto_ts_isstring" }, { "label": "Min", @@ -25315,10 +26263,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_ts_min", "community": 179, "community_name": "PaginationDto", - "norm_label": "min" + "norm_label": "min", + "id": "backend_src_common_dto_pagination_dto_ts_min" }, { "label": "Type", @@ -25326,10 +26274,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_common_dto_pagination_dto_ts_type", "community": 179, "community_name": "PaginationDto", - "norm_label": "type" + "norm_label": "type", + "id": "backend_src_common_dto_pagination_dto_ts_type" }, { "label": "create-order.dto.ts", @@ -25337,10 +26285,10 @@ "source_file": "backend/src/orders/dto/create-order.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto", "community": 179, "community_name": "PaginationDto", - "norm_label": "create-order.dto.ts" + "norm_label": "create-order.dto.ts", + "id": "backend_src_orders_dto_create_order_dto" }, { "label": "orders.controller.ts", @@ -25348,10 +26296,10 @@ "source_file": "backend/src/orders/orders.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_orders_orders_controller", "community": 179, "community_name": "PaginationDto", - "norm_label": "orders.controller.ts" + "norm_label": "orders.controller.ts", + "id": "backend_src_orders_orders_controller" }, { "label": "orders.controller.spec.ts", @@ -25359,10 +26307,10 @@ "source_file": "backend/src/orders/orders.controller.spec.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_orders_orders_controller_spec", "community": 179, "community_name": "PaginationDto", - "norm_label": "orders.controller.spec.ts" + "norm_label": "orders.controller.spec.ts", + "id": "backend_src_orders_orders_controller_spec" }, { "label": "IsNotEmpty", @@ -25370,10 +26318,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_isnotempty", "community": 179, "community_name": "PaginationDto", - "norm_label": "isnotempty" + "norm_label": "isnotempty", + "id": "backend_src_orders_orders_controller_ts_isnotempty" }, { "label": "IsNumber", @@ -25381,10 +26329,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_isnumber", "community": 179, "community_name": "PaginationDto", - "norm_label": "isnumber" + "norm_label": "isnumber", + "id": "backend_src_orders_orders_controller_ts_isnumber" }, { "label": "IsString", @@ -25392,10 +26340,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_isstring", "community": 179, "community_name": "PaginationDto", - "norm_label": "isstring" + "norm_label": "isstring", + "id": "backend_src_orders_orders_controller_ts_isstring" }, { "label": "orders.module.ts", @@ -25403,10 +26351,10 @@ "source_file": "backend/src/orders/orders.module.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_orders_orders_module", "community": 179, "community_name": "PaginationDto", - "norm_label": "orders.module.ts" + "norm_label": "orders.module.ts", + "id": "backend_src_orders_orders_module" }, { "label": "Module", @@ -25414,10 +26362,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_orders_orders_module_ts_module", "community": 179, "community_name": "PaginationDto", - "norm_label": "module" + "norm_label": "module", + "id": "backend_src_orders_orders_module_ts_module" }, { "label": "orders.service.ts", @@ -25425,10 +26373,10 @@ "source_file": "backend/src/orders/orders.service.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_orders_orders_service", "community": 179, "community_name": "PaginationDto", - "norm_label": "orders.service.ts" + "norm_label": "orders.service.ts", + "id": "backend_src_orders_orders_service" }, { "label": "get-videos-query.dto.ts", @@ -25436,120 +26384,32 @@ "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_videos_dto_get_videos_query_dto", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "get-videos-query.dto.ts" + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "get-videos-query.dto.ts", + "id": "backend_src_videos_dto_get_videos_query_dto" }, { - "label": "ApiPropertyOptional", + "label": "admin/blogs.controller.ts", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsBoolean", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_dto_get_videos_query_dto_ts_isboolean", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "isboolean" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_dto_get_videos_query_dto_ts_isoptional", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "isoptional" - }, - { - "label": "Transform", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_dto_get_videos_query_dto_ts_transform", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "transform" - }, - { - "label": "videos.controller.ts", - "file_type": "code", - "source_file": "backend/src/videos/videos.controller.ts", + "source_file": "backend/src/admin/blogs.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_videos_videos_controller", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "videos.controller.ts" + "community": 18, + "community_name": "JwtAuthGuard", + "norm_label": "admin/blogs.controller.ts", + "id": "backend_src_admin_blogs_controller" }, { - "label": "wiki/wiki.controller.ts", + "label": "categories.controller.ts", "file_type": "code", - "source_file": "backend/src/wiki/wiki.controller.ts", + "source_file": "backend/src/admin/categories.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "wiki/wiki.controller.ts" - }, - { - "label": "wiki.module.ts", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_wiki_wiki_module", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "wiki.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_module_ts_module", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "module" - }, - { - "label": "wiki/wiki.service.ts", - "file_type": "code", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_wiki_wiki_service", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "wiki/wiki.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_service_ts_injectable", - "community": 179, - "community_name": "PaginationDto", - "norm_label": "injectable" + "community": 18, + "community_name": "JwtAuthGuard", + "norm_label": "categories.controller.ts", + "id": "backend_src_admin_categories_controller" }, { "label": "ssl.controller.ts", @@ -25557,21 +26417,10 @@ "source_file": "backend/src/admin/ssl.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_admin_ssl_controller", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "ssl.controller.ts" - }, - { - "label": "admin/wiki.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_wiki_controller", - "community": 18, - "community_name": "JwtAuthGuard", - "norm_label": "admin/wiki.controller.ts" + "norm_label": "ssl.controller.ts", + "id": "backend_src_admin_ssl_controller" }, { "label": "jwt-auth.guard.ts", @@ -25579,10 +26428,10 @@ "source_file": "backend/src/auth/jwt-auth.guard.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_auth_jwt_auth_guard", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "jwt-auth.guard.ts" + "norm_label": "jwt-auth.guard.ts", + "id": "backend_src_auth_jwt_auth_guard" }, { "label": "Injectable", @@ -25590,10 +26439,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_auth_jwt_auth_guard_ts_injectable", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "injectable" + "norm_label": "injectable", + "id": "backend_src_auth_jwt_auth_guard_ts_injectable" }, { "label": "auth/roles.decorator.ts", @@ -25601,10 +26450,10 @@ "source_file": "backend/src/auth/roles.decorator.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_auth_roles_decorator", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "auth/roles.decorator.ts" + "norm_label": "auth/roles.decorator.ts", + "id": "backend_src_auth_roles_decorator" }, { "label": "auth/roles.guard.ts", @@ -25612,10 +26461,21 @@ "source_file": "backend/src/auth/roles.guard.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_auth_roles_guard", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "auth/roles.guard.ts" + "norm_label": "auth/roles.guard.ts", + "id": "backend_src_auth_roles_guard" + }, + { + "label": "b2b.controller.ts", + "file_type": "code", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 18, + "community_name": "JwtAuthGuard", + "norm_label": "b2b.controller.ts", + "id": "backend_src_b2b_b2b_controller" }, { "label": "banners.controller.ts", @@ -25623,10 +26483,10 @@ "source_file": "backend/src/banners/banners.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_banners_banners_controller", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "banners.controller.ts" + "norm_label": "banners.controller.ts", + "id": "backend_src_banners_banners_controller" }, { "label": "decorators/roles.decorator.ts", @@ -25634,10 +26494,10 @@ "source_file": "backend/src/common/decorators/roles.decorator.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_common_decorators_roles_decorator", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "decorators/roles.decorator.ts" + "norm_label": "decorators/roles.decorator.ts", + "id": "backend_src_common_decorators_roles_decorator" }, { "label": "ROLES_KEY", @@ -25645,10 +26505,10 @@ "source_file": "backend/src/common/decorators/roles.decorator.ts", "source_location": "L3", "_origin": "ast", - "id": "backend_src_common_decorators_roles_decorator_roles_key", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "roles_key" + "norm_label": "roles_key", + "id": "backend_src_common_decorators_roles_decorator_roles_key" }, { "label": "guards/roles.guard.ts", @@ -25656,10 +26516,10 @@ "source_file": "backend/src/common/guards/roles.guard.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_common_guards_roles_guard", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "guards/roles.guard.ts" + "norm_label": "guards/roles.guard.ts", + "id": "backend_src_common_guards_roles_guard" }, { "label": "roles.guard.spec.ts", @@ -25667,10 +26527,10 @@ "source_file": "backend/src/common/guards/roles.guard.spec.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_common_guards_roles_guard_spec", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "roles.guard.spec.ts" + "norm_label": "roles.guard.spec.ts", + "id": "backend_src_common_guards_roles_guard_spec" }, { "label": "Injectable", @@ -25678,10 +26538,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_common_guards_roles_guard_ts_injectable", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "injectable" + "norm_label": "injectable", + "id": "backend_src_common_guards_roles_guard_ts_injectable" }, { "label": "contact.controller.ts", @@ -25689,10 +26549,21 @@ "source_file": "backend/src/contact/contact.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_contact_contact_controller", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "contact.controller.ts" + "norm_label": "contact.controller.ts", + "id": "backend_src_contact_contact_controller" + }, + { + "label": "faq.controller.ts", + "file_type": "code", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 18, + "community_name": "JwtAuthGuard", + "norm_label": "faq.controller.ts", + "id": "backend_src_faq_faq_controller" }, { "label": "ingredients.controller.ts", @@ -25700,10 +26571,10 @@ "source_file": "backend/src/ingredients/ingredients.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "ingredients.controller.ts" + "norm_label": "ingredients.controller.ts", + "id": "backend_src_ingredients_ingredients_controller" }, { "label": "menu.controller.ts", @@ -25711,10 +26582,21 @@ "source_file": "backend/src/menu/menu.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_menu_menu_controller", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "menu.controller.ts" + "norm_label": "menu.controller.ts", + "id": "backend_src_menu_menu_controller" + }, + { + "label": "payment.controller.ts", + "file_type": "code", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 18, + "community_name": "JwtAuthGuard", + "norm_label": "payment.controller.ts", + "id": "backend_src_payment_payment_controller" }, { "label": "prescriptions.controller.ts", @@ -25722,10 +26604,10 @@ "source_file": "backend/src/prescriptions/prescriptions.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "prescriptions.controller.ts" + "norm_label": "prescriptions.controller.ts", + "id": "backend_src_prescriptions_prescriptions_controller" }, { "label": "settings.controller.ts", @@ -25733,10 +26615,10 @@ "source_file": "backend/src/settings/settings.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_settings_settings_controller", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "settings.controller.ts" + "norm_label": "settings.controller.ts", + "id": "backend_src_settings_settings_controller" }, { "label": "settings.controller.spec.ts", @@ -25744,10 +26626,10 @@ "source_file": "backend/src/settings/settings.controller.spec.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_settings_settings_controller_spec", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "settings.controller.spec.ts" + "norm_label": "settings.controller.spec.ts", + "id": "backend_src_settings_settings_controller_spec" }, { "label": "smart-advisor.controller.ts", @@ -25755,10 +26637,10 @@ "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "smart-advisor.controller.ts" + "norm_label": "smart-advisor.controller.ts", + "id": "backend_src_smart_advisor_smart_advisor_controller" }, { "label": "testimonials.controller.ts", @@ -25766,21 +26648,10 @@ "source_file": "backend/src/testimonials/testimonials.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "testimonials.controller.ts" - }, - { - "label": "wholesale-apply.dto.ts", - "file_type": "code", - "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_wholesale_dto_wholesale_apply_dto", - "community": 18, - "community_name": "JwtAuthGuard", - "norm_label": "wholesale-apply.dto.ts" + "norm_label": "testimonials.controller.ts", + "id": "backend_src_testimonials_testimonials_controller" }, { "label": "wholesale.controller.ts", @@ -25788,10 +26659,10 @@ "source_file": "backend/src/wholesale/wholesale.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller", "community": 18, "community_name": "JwtAuthGuard", - "norm_label": "wholesale.controller.ts" + "norm_label": "wholesale.controller.ts", + "id": "backend_src_wholesale_wholesale_controller" }, { "label": "api_contract.md", @@ -25799,10 +26670,11 @@ "source_file": ".ai_agency/specs/api_contract.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_api_contract", "community": 180, "community_name": "API Contract Specification", - "norm_label": "api_contract.md" + "norm_label": "api_contract.md", + "node_kind": "page", + "id": "ai_agency_specs_api_contract" }, { "label": "1. OpenAPI 3.0 (Swagger) Specification", @@ -25810,10 +26682,11 @@ "source_file": ".ai_agency/specs/api_contract.md", "source_location": "L3", "_origin": "ast", - "id": "ai_agency_specs_api_contract_1_openapi_3_0_swagger_specification", "community": 180, "community_name": "API Contract Specification", - "norm_label": "1. openapi 3.0 (swagger) specification" + "norm_label": "1. openapi 3.0 (swagger) specification", + "node_kind": "heading", + "id": "ai_agency_specs_api_contract_1_openapi_3_0_swagger_specification" }, { "label": "2. Endpoint Definitions & Data Types", @@ -25821,10 +26694,11 @@ "source_file": ".ai_agency/specs/api_contract.md", "source_location": "L55", "_origin": "ast", - "id": "ai_agency_specs_api_contract_2_endpoint_definitions_data_types", "community": 180, "community_name": "API Contract Specification", - "norm_label": "2. endpoint definitions & data types" + "norm_label": "2. endpoint definitions & data types", + "node_kind": "heading", + "id": "ai_agency_specs_api_contract_2_endpoint_definitions_data_types" }, { "label": "API Contract Specification", @@ -25832,10 +26706,11 @@ "source_file": ".ai_agency/specs/api_contract.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_api_contract_api_contract_specification", "community": 180, "community_name": "API Contract Specification", - "norm_label": "api contract specification" + "norm_label": "api contract specification", + "node_kind": "heading", + "id": "ai_agency_specs_api_contract_api_contract_specification" }, { "label": "backend_review.md", @@ -25843,10 +26718,11 @@ "source_file": ".ai_agency/specs/reviews/backend_review.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_reviews_backend_review", "community": 181, "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", - "norm_label": "backend_review.md" + "norm_label": "backend_review.md", + "node_kind": "page", + "id": "ai_agency_specs_reviews_backend_review" }, { "label": "Architectural Overview", @@ -25854,10 +26730,11 @@ "source_file": ".ai_agency/specs/reviews/backend_review.md", "source_location": "L3", "_origin": "ast", - "id": "ai_agency_specs_reviews_backend_review_architectural_overview", "community": 181, "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", - "norm_label": "architectural overview" + "norm_label": "architectural overview", + "node_kind": "heading", + "id": "ai_agency_specs_reviews_backend_review_architectural_overview" }, { "label": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", @@ -25865,10 +26742,11 @@ "source_file": ".ai_agency/specs/reviews/backend_review.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend", "community": 181, "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", - "norm_label": "\u2699\ufe0f backend technical review (05_dev_backend)" + "norm_label": "\u2699\ufe0f backend technical review (05_dev_backend)", + "node_kind": "heading", + "id": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend" }, { "label": "Critical Review Findings & Required Enhancements", @@ -25876,10 +26754,11 @@ "source_file": ".ai_agency/specs/reviews/backend_review.md", "source_location": "L8", "_origin": "ast", - "id": "ai_agency_specs_reviews_backend_review_critical_review_findings_required_enhancements", "community": 181, "community_name": "\u2699\ufe0f Backend Technical Review (05_dev_backend)", - "norm_label": "critical review findings & required enhancements" + "norm_label": "critical review findings & required enhancements", + "node_kind": "heading", + "id": "ai_agency_specs_reviews_backend_review_critical_review_findings_required_enhancements" }, { "label": "frontend_review.md", @@ -25887,10 +26766,11 @@ "source_file": ".ai_agency/specs/reviews/frontend_review.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_reviews_frontend_review", "community": 182, "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", - "norm_label": "frontend_review.md" + "norm_label": "frontend_review.md", + "node_kind": "page", + "id": "ai_agency_specs_reviews_frontend_review" }, { "label": "Architectural Overview", @@ -25898,10 +26778,11 @@ "source_file": ".ai_agency/specs/reviews/frontend_review.md", "source_location": "L3", "_origin": "ast", - "id": "ai_agency_specs_reviews_frontend_review_architectural_overview", "community": 182, "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", - "norm_label": "architectural overview" + "norm_label": "architectural overview", + "node_kind": "heading", + "id": "ai_agency_specs_reviews_frontend_review_architectural_overview" }, { "label": "Critical Review Findings & Required Enhancements", @@ -25909,10 +26790,11 @@ "source_file": ".ai_agency/specs/reviews/frontend_review.md", "source_location": "L7", "_origin": "ast", - "id": "ai_agency_specs_reviews_frontend_review_critical_review_findings_required_enhancements", "community": 182, "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", - "norm_label": "critical review findings & required enhancements" + "norm_label": "critical review findings & required enhancements", + "node_kind": "heading", + "id": "ai_agency_specs_reviews_frontend_review_critical_review_findings_required_enhancements" }, { "label": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", @@ -25920,10 +26802,11 @@ "source_file": ".ai_agency/specs/reviews/frontend_review.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend", "community": 182, "community_name": "\ud83c\udfa8 Frontend & Admin Panel Technical Review (06_dev_frontend)", - "norm_label": "\ud83c\udfa8 frontend & admin panel technical review (06_dev_frontend)" + "norm_label": "\ud83c\udfa8 frontend & admin panel technical review (06_dev_frontend)", + "node_kind": "heading", + "id": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend" }, { "label": "seo_content_review.md", @@ -25931,10 +26814,11 @@ "source_file": ".ai_agency/specs/reviews/seo_content_review.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_reviews_seo_content_review", "community": 183, "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", - "norm_label": "seo_content_review.md" + "norm_label": "seo_content_review.md", + "node_kind": "page", + "id": "ai_agency_specs_reviews_seo_content_review" }, { "label": "Overview & Content Foundation", @@ -25942,10 +26826,11 @@ "source_file": ".ai_agency/specs/reviews/seo_content_review.md", "source_location": "L3", "_origin": "ast", - "id": "ai_agency_specs_reviews_seo_content_review_overview_content_foundation", "community": 183, "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", - "norm_label": "overview & content foundation" + "norm_label": "overview & content foundation", + "node_kind": "heading", + "id": "ai_agency_specs_reviews_seo_content_review_overview_content_foundation" }, { "label": "SEO & Content Requirements", @@ -25953,10 +26838,11 @@ "source_file": ".ai_agency/specs/reviews/seo_content_review.md", "source_location": "L6", "_origin": "ast", - "id": "ai_agency_specs_reviews_seo_content_review_seo_content_requirements", "community": 183, "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", - "norm_label": "seo & content requirements" + "norm_label": "seo & content requirements", + "node_kind": "heading", + "id": "ai_agency_specs_reviews_seo_content_review_seo_content_requirements" }, { "label": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", @@ -25964,10 +26850,11 @@ "source_file": ".ai_agency/specs/reviews/seo_content_review.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content", "community": 183, "community_name": "\ud83d\ude80 SEO & Content Strategy Review (12_seo_content)", - "norm_label": "\ud83d\ude80 seo & content strategy review (12_seo_content)" + "norm_label": "\ud83d\ude80 seo & content strategy review (12_seo_content)", + "node_kind": "heading", + "id": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content" }, { "label": "ApiExcludeController", @@ -25975,10 +26862,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "apiexcludecontroller", "community": 184, "community_name": "MetricsController", - "norm_label": "apiexcludecontroller" + "norm_label": "apiexcludecontroller", + "id": "apiexcludecontroller" }, { "label": "Controller", @@ -25986,10 +26873,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_common_metrics_controller_ts_controller", "community": 184, "community_name": "MetricsController", - "norm_label": "controller" + "norm_label": "controller", + "id": "backend_src_common_metrics_controller_ts_controller" }, { "label": "Get", @@ -25997,10 +26884,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_common_metrics_controller_ts_get", "community": 184, "community_name": "MetricsController", - "norm_label": "get" + "norm_label": "get", + "id": "backend_src_common_metrics_controller_ts_get" }, { "label": "Res", @@ -26008,32 +26895,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_common_metrics_controller_ts_res", "community": 184, "community_name": "MetricsController", - "norm_label": "res" - }, - { - "label": "@nestjs/jwt", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L27", - "_origin": "ast", - "id": "backend_package_dependencies_nestjs_jwt", - "community": 185, - "community_name": "@nestjs/jwt", - "norm_label": "@nestjs/jwt" - }, - { - "label": "@nestjs/jwt", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L27", - "_origin": "ast", - "id": "nestjs_jwt", - "community": 185, - "community_name": "@nestjs/jwt", - "norm_label": "@nestjs/jwt" + "norm_label": "res", + "id": "backend_src_common_metrics_controller_ts_res" }, { "label": "seed-ui-texts.ts", @@ -26041,10 +26906,10 @@ "source_file": "backend/prisma/seed-ui-texts.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_prisma_seed_ui_texts", "community": 186, "community_name": "seed-ui-texts.ts", - "norm_label": "seed-ui-texts.ts" + "norm_label": "seed-ui-texts.ts", + "id": "backend_prisma_seed_ui_texts" }, { "label": "prisma", @@ -26052,10 +26917,10 @@ "source_file": "backend/prisma/seed-ui-texts.ts", "source_location": "L3", "_origin": "ast", - "id": "backend_prisma_seed_ui_texts_prisma", "community": 186, "community_name": "seed-ui-texts.ts", - "norm_label": "prisma" + "norm_label": "prisma", + "id": "backend_prisma_seed_ui_texts_prisma" }, { "label": "UI_TEXTS", @@ -26063,10 +26928,10 @@ "source_file": "backend/prisma/seed-ui-texts.ts", "source_location": "L5", "_origin": "ast", - "id": "backend_prisma_seed_ui_texts_ui_texts", "community": 186, "community_name": "seed-ui-texts.ts", - "norm_label": "ui_texts" + "norm_label": "ui_texts", + "id": "backend_prisma_seed_ui_texts_ui_texts" }, { "label": "seed-wiki.ts", @@ -26074,10 +26939,10 @@ "source_file": "backend/prisma/seed-wiki.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_prisma_seed_wiki", "community": 187, "community_name": "seed-wiki.ts", - "norm_label": "seed-wiki.ts" + "norm_label": "seed-wiki.ts", + "id": "backend_prisma_seed_wiki" }, { "label": "CANONICAL_WIKI_TERMS", @@ -26085,10 +26950,10 @@ "source_file": "backend/prisma/seed-wiki.ts", "source_location": "L7", "_origin": "ast", - "id": "backend_prisma_seed_wiki_canonical_wiki_terms", "community": 187, "community_name": "seed-wiki.ts", - "norm_label": "canonical_wiki_terms" + "norm_label": "canonical_wiki_terms", + "id": "backend_prisma_seed_wiki_canonical_wiki_terms" }, { "label": "prisma", @@ -26096,10 +26961,10 @@ "source_file": "backend/prisma/seed-wiki.ts", "source_location": "L5", "_origin": "ast", - "id": "backend_prisma_seed_wiki_prisma", "community": 187, "community_name": "seed-wiki.ts", - "norm_label": "prisma" + "norm_label": "prisma", + "id": "backend_prisma_seed_wiki_prisma" }, { "label": "create-blog.dto.ts", @@ -26107,10 +26972,10 @@ "source_file": "backend/src/blogs/dto/create-blog.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_blogs_dto_create_blog_dto", "community": 188, "community_name": "update-blog.dto.ts", - "norm_label": "create-blog.dto.ts" + "norm_label": "create-blog.dto.ts", + "id": "backend_src_blogs_dto_create_blog_dto" }, { "label": "update-blog.dto.ts", @@ -26118,10 +26983,10 @@ "source_file": "backend/src/blogs/dto/update-blog.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_blogs_dto_update_blog_dto", "community": 188, "community_name": "update-blog.dto.ts", - "norm_label": "update-blog.dto.ts" + "norm_label": "update-blog.dto.ts", + "id": "backend_src_blogs_dto_update_blog_dto" }, { "label": "create-home.dto.ts", @@ -26129,10 +26994,10 @@ "source_file": "backend/src/home/dto/create-home.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_home_dto_create_home_dto", "community": 189, "community_name": "update-home.dto.ts", - "norm_label": "create-home.dto.ts" + "norm_label": "create-home.dto.ts", + "id": "backend_src_home_dto_create_home_dto" }, { "label": "update-home.dto.ts", @@ -26140,10 +27005,87 @@ "source_file": "backend/src/home/dto/update-home.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_home_dto_update_home_dto", "community": 189, "community_name": "update-home.dto.ts", - "norm_label": "update-home.dto.ts" + "norm_label": "update-home.dto.ts", + "id": "backend_src_home_dto_update_home_dto" + }, + { + "label": "get-products.dto.ts", + "file_type": "code", + "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": "get-products.dto.ts", + "id": "backend_src_products_dto_get_products_dto" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": "apipropertyoptional", + "id": "backend_src_products_dto_get_products_dto_ts_apipropertyoptional" + }, + { + "label": "IsEnum", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": "isenum", + "id": "backend_src_products_dto_get_products_dto_ts_isenum" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": "isoptional", + "id": "backend_src_products_dto_get_products_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": "isstring", + "id": "backend_src_products_dto_get_products_dto_ts_isstring" + }, + { + "label": "products.controller.ts", + "file_type": "code", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": "products.controller.ts", + "id": "backend_src_products_products_controller" + }, + { + "label": "products.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/products/products.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": "products.controller.spec.ts", + "id": "backend_src_products_products_controller_spec" }, { "label": "ApiOperation", @@ -26151,10 +27093,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_products_products_controller_ts_apioperation", "community": 19, - "community_name": "ProductsController", - "norm_label": "apioperation" + "community_name": "ProductsService", + "norm_label": "apioperation", + "id": "backend_src_products_products_controller_ts_apioperation" }, { "label": "ApiTags", @@ -26162,10 +27104,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_products_products_controller_ts_apitags", "community": 19, - "community_name": "ProductsController", - "norm_label": "apitags" + "community_name": "ProductsService", + "norm_label": "apitags", + "id": "backend_src_products_products_controller_ts_apitags" }, { "label": "Body", @@ -26173,10 +27115,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_products_products_controller_ts_body", "community": 19, - "community_name": "ProductsController", - "norm_label": "body" + "community_name": "ProductsService", + "norm_label": "body", + "id": "backend_src_products_products_controller_ts_body" }, { "label": "Controller", @@ -26184,10 +27126,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_products_products_controller_ts_controller", "community": 19, - "community_name": "ProductsController", - "norm_label": "controller" + "community_name": "ProductsService", + "norm_label": "controller", + "id": "backend_src_products_products_controller_ts_controller" }, { "label": "Get", @@ -26195,10 +27137,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_products_products_controller_ts_get", "community": 19, - "community_name": "ProductsController", - "norm_label": "get" + "community_name": "ProductsService", + "norm_label": "get", + "id": "backend_src_products_products_controller_ts_get" }, { "label": "Param", @@ -26206,10 +27148,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_products_products_controller_ts_param", "community": 19, - "community_name": "ProductsController", - "norm_label": "param" + "community_name": "ProductsService", + "norm_label": "param", + "id": "backend_src_products_products_controller_ts_param" }, { "label": "Patch", @@ -26217,10 +27159,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_products_products_controller_ts_patch", "community": 19, - "community_name": "ProductsController", - "norm_label": "patch" + "community_name": "ProductsService", + "norm_label": "patch", + "id": "backend_src_products_products_controller_ts_patch" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": "query", + "id": "backend_src_products_products_controller_ts_query" }, { "label": "UseGuards", @@ -26228,10 +27181,65 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_products_products_controller_ts_useguards", "community": 19, - "community_name": "ProductsController", - "norm_label": "useguards" + "community_name": "ProductsService", + "norm_label": "useguards", + "id": "backend_src_products_products_controller_ts_useguards" + }, + { + "label": "products.module.ts", + "file_type": "code", + "source_file": "backend/src/products/products.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": "products.module.ts", + "id": "backend_src_products_products_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": "module", + "id": "backend_src_products_products_module_ts_module" + }, + { + "label": "products.service.ts", + "file_type": "code", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": "products.service.ts", + "id": "backend_src_products_products_service" + }, + { + "label": "products.service.spec.ts", + "file_type": "code", + "source_file": "backend/src/products/products.service.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 147, + "community_name": "RevalidationService", + "norm_label": "products.service.spec.ts", + "id": "backend_src_products_products_service_spec" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 19, + "community_name": "ProductsService", + "norm_label": "injectable", + "id": "backend_src_products_products_service_ts_injectable" }, { "label": "create-wiki.dto.ts", @@ -26239,10 +27247,10 @@ "source_file": "backend/src/wiki/dto/create-wiki.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_wiki_dto_create_wiki_dto", "community": 190, "community_name": "update-wiki.dto.ts", - "norm_label": "create-wiki.dto.ts" + "norm_label": "create-wiki.dto.ts", + "id": "backend_src_wiki_dto_create_wiki_dto" }, { "label": "update-wiki.dto.ts", @@ -26250,10 +27258,10 @@ "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_wiki_dto_update_wiki_dto", "community": 190, "community_name": "update-wiki.dto.ts", - "norm_label": "update-wiki.dto.ts" + "norm_label": "update-wiki.dto.ts", + "id": "backend_src_wiki_dto_update_wiki_dto" }, { "label": "add-watch.md", @@ -26261,10 +27269,11 @@ "source_file": ".claude/skills/graphify/references/add-watch.md", "source_location": "L1", "_origin": "ast", - "id": "claude_skills_graphify_references_add_watch", "community": 191, "community_name": "graphify reference: add a URL and watch a folder", - "norm_label": "add-watch.md" + "norm_label": "add-watch.md", + "node_kind": "page", + "id": "claude_skills_graphify_references_add_watch" }, { "label": "For /graphify add", @@ -26272,10 +27281,11 @@ "source_file": ".claude/skills/graphify/references/add-watch.md", "source_location": "L5", "_origin": "ast", - "id": "claude_skills_graphify_references_add_watch_for_graphify_add", "community": 191, "community_name": "graphify reference: add a URL and watch a folder", - "norm_label": "for /graphify add" + "norm_label": "for /graphify add", + "node_kind": "heading", + "id": "claude_skills_graphify_references_add_watch_for_graphify_add" }, { "label": "For --watch", @@ -26283,10 +27293,11 @@ "source_file": ".claude/skills/graphify/references/add-watch.md", "source_location": "L39", "_origin": "ast", - "id": "claude_skills_graphify_references_add_watch_for_watch", "community": 191, "community_name": "graphify reference: add a URL and watch a folder", - "norm_label": "for --watch" + "norm_label": "for --watch", + "node_kind": "heading", + "id": "claude_skills_graphify_references_add_watch_for_watch" }, { "label": "graphify reference: add a URL and watch a folder", @@ -26294,10 +27305,11 @@ "source_file": ".claude/skills/graphify/references/add-watch.md", "source_location": "L1", "_origin": "ast", - "id": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder", "community": 191, "community_name": "graphify reference: add a URL and watch a folder", - "norm_label": "graphify reference: add a url and watch a folder" + "norm_label": "graphify reference: add a url and watch a folder", + "node_kind": "heading", + "id": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder" }, { "label": "hooks.md", @@ -26305,10 +27317,11 @@ "source_file": ".claude/skills/graphify/references/hooks.md", "source_location": "L1", "_origin": "ast", - "id": "claude_skills_graphify_references_hooks", "community": 192, "community_name": "graphify reference: commit hook and native CLAUDE.md integration", - "norm_label": "hooks.md" + "norm_label": "hooks.md", + "node_kind": "page", + "id": "claude_skills_graphify_references_hooks" }, { "label": "For git commit hook", @@ -26316,10 +27329,11 @@ "source_file": ".claude/skills/graphify/references/hooks.md", "source_location": "L5", "_origin": "ast", - "id": "claude_skills_graphify_references_hooks_for_git_commit_hook", "community": 192, "community_name": "graphify reference: commit hook and native CLAUDE.md integration", - "norm_label": "for git commit hook" + "norm_label": "for git commit hook", + "node_kind": "heading", + "id": "claude_skills_graphify_references_hooks_for_git_commit_hook" }, { "label": "For native CLAUDE.md integration", @@ -26327,10 +27341,11 @@ "source_file": ".claude/skills/graphify/references/hooks.md", "source_location": "L21", "_origin": "ast", - "id": "claude_skills_graphify_references_hooks_for_native_claude_md_integration", "community": 192, "community_name": "graphify reference: commit hook and native CLAUDE.md integration", - "norm_label": "for native claude.md integration" + "norm_label": "for native claude.md integration", + "node_kind": "heading", + "id": "claude_skills_graphify_references_hooks_for_native_claude_md_integration" }, { "label": "graphify reference: commit hook and native CLAUDE.md integration", @@ -26338,10 +27353,11 @@ "source_file": ".claude/skills/graphify/references/hooks.md", "source_location": "L1", "_origin": "ast", - "id": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration", "community": 192, "community_name": "graphify reference: commit hook and native CLAUDE.md integration", - "norm_label": "graphify reference: commit hook and native claude.md integration" + "norm_label": "graphify reference: commit hook and native claude.md integration", + "node_kind": "heading", + "id": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration" }, { "label": "update.md", @@ -26349,10 +27365,11 @@ "source_file": ".claude/skills/graphify/references/update.md", "source_location": "L1", "_origin": "ast", - "id": "claude_skills_graphify_references_update", "community": 193, "community_name": "graphify reference: incremental update and cluster-only", - "norm_label": "update.md" + "norm_label": "update.md", + "node_kind": "page", + "id": "claude_skills_graphify_references_update" }, { "label": "For --cluster-only", @@ -26360,10 +27377,11 @@ "source_file": ".claude/skills/graphify/references/update.md", "source_location": "L202", "_origin": "ast", - "id": "claude_skills_graphify_references_update_for_cluster_only", "community": 193, "community_name": "graphify reference: incremental update and cluster-only", - "norm_label": "for --cluster-only" + "norm_label": "for --cluster-only", + "node_kind": "heading", + "id": "claude_skills_graphify_references_update_for_cluster_only" }, { "label": "For --update (incremental re-extraction)", @@ -26371,10 +27389,11 @@ "source_file": ".claude/skills/graphify/references/update.md", "source_location": "L5", "_origin": "ast", - "id": "claude_skills_graphify_references_update_for_update_incremental_re_extraction", "community": 193, "community_name": "graphify reference: incremental update and cluster-only", - "norm_label": "for --update (incremental re-extraction)" + "norm_label": "for --update (incremental re-extraction)", + "node_kind": "heading", + "id": "claude_skills_graphify_references_update_for_update_incremental_re_extraction" }, { "label": "graphify reference: incremental update and cluster-only", @@ -26382,10 +27401,11 @@ "source_file": ".claude/skills/graphify/references/update.md", "source_location": "L1", "_origin": "ast", - "id": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only", "community": 193, "community_name": "graphify reference: incremental update and cluster-only", - "norm_label": "graphify reference: incremental update and cluster-only" + "norm_label": "graphify reference: incremental update and cluster-only", + "node_kind": "heading", + "id": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only" }, { "label": "19-finding-verification-report.md", @@ -26393,10 +27413,11 @@ "source_file": "docs/audit/19-finding-verification-report.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_19_finding_verification_report", "community": 194, "community_name": "Raw Finding Verification & Disposition Report", - "norm_label": "19-finding-verification-report.md" + "norm_label": "19-finding-verification-report.md", + "node_kind": "page", + "id": "docs_audit_19_finding_verification_report" }, { "label": "1. Executive Summary & Verification Reconciliation Table", @@ -26404,10 +27425,11 @@ "source_file": "docs/audit/19-finding-verification-report.md", "source_location": "L3", "_origin": "ast", - "id": "docs_audit_19_finding_verification_report_1_executive_summary_verification_reconciliation_table", "community": 194, "community_name": "Raw Finding Verification & Disposition Report", - "norm_label": "1. executive summary & verification reconciliation table" + "norm_label": "1. executive summary & verification reconciliation table", + "node_kind": "heading", + "id": "docs_audit_19_finding_verification_report_1_executive_summary_verification_reconciliation_table" }, { "label": "2. Newly Discovered & Split Findings (Canonical IDs)", @@ -26415,10 +27437,11 @@ "source_file": "docs/audit/19-finding-verification-report.md", "source_location": "L22", "_origin": "ast", - "id": "docs_audit_19_finding_verification_report_2_newly_discovered_split_findings_canonical_ids", "community": 194, "community_name": "Raw Finding Verification & Disposition Report", - "norm_label": "2. newly discovered & split findings (canonical ids)" + "norm_label": "2. newly discovered & split findings (canonical ids)", + "node_kind": "heading", + "id": "docs_audit_19_finding_verification_report_2_newly_discovered_split_findings_canonical_ids" }, { "label": "Raw Finding Verification & Disposition Report", @@ -26426,10 +27449,11 @@ "source_file": "docs/audit/19-finding-verification-report.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report", "community": 194, "community_name": "Raw Finding Verification & Disposition Report", - "norm_label": "raw finding verification & disposition report" + "norm_label": "raw finding verification & disposition report", + "node_kind": "heading", + "id": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report" }, { "label": "admin-panel/README.md", @@ -26437,10 +27461,11 @@ "source_file": "frontend/admin-panel/README.md", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_readme", "community": 195, "community_name": "React + TypeScript + Vite", - "norm_label": "admin-panel/readme.md" + "norm_label": "admin-panel/readme.md", + "node_kind": "page", + "id": "frontend_admin_panel_readme" }, { "label": "Expanding the ESLint configuration", @@ -26448,10 +27473,11 @@ "source_file": "frontend/admin-panel/README.md", "source_location": "L14", "_origin": "ast", - "id": "frontend_admin_panel_readme_expanding_the_eslint_configuration", "community": 195, "community_name": "React + TypeScript + Vite", - "norm_label": "expanding the eslint configuration" + "norm_label": "expanding the eslint configuration", + "node_kind": "heading", + "id": "frontend_admin_panel_readme_expanding_the_eslint_configuration" }, { "label": "React Compiler", @@ -26459,10 +27485,11 @@ "source_file": "frontend/admin-panel/README.md", "source_location": "L10", "_origin": "ast", - "id": "frontend_admin_panel_readme_react_compiler", "community": 195, "community_name": "React + TypeScript + Vite", - "norm_label": "react compiler" + "norm_label": "react compiler", + "node_kind": "heading", + "id": "frontend_admin_panel_readme_react_compiler" }, { "label": "React + TypeScript + Vite", @@ -26470,10 +27497,11 @@ "source_file": "frontend/admin-panel/README.md", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_readme_react_typescript_vite", "community": 195, "community_name": "React + TypeScript + Vite", - "norm_label": "react + typescript + vite" + "norm_label": "react + typescript + vite", + "node_kind": "heading", + "id": "frontend_admin_panel_readme_react_typescript_vite" }, { "label": "Select.tsx", @@ -26481,10 +27509,10 @@ "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_select", "community": 196, "community_name": "Select.tsx", - "norm_label": "select.tsx" + "norm_label": "select.tsx", + "id": "frontend_admin_panel_src_components_ui_select" }, { "label": "Select", @@ -26492,54 +27520,10 @@ "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", "source_location": "L16", "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_select_select", "community": 196, "community_name": "Select.tsx", - "norm_label": "select" - }, - { - "label": "@nestjs/throttler", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L31", - "_origin": "ast", - "id": "backend_package_dependencies_nestjs_throttler", - "community": 197, - "community_name": "@nestjs/throttler", - "norm_label": "@nestjs/throttler" - }, - { - "label": "@nestjs/throttler", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L31", - "_origin": "ast", - "id": "nestjs_throttler", - "community": 197, - "community_name": "@nestjs/throttler", - "norm_label": "@nestjs/throttler" - }, - { - "label": "passport", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L41", - "_origin": "ast", - "id": "backend_package_dependencies_passport", - "community": 198, - "community_name": "passport", - "norm_label": "passport" - }, - { - "label": "passport", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L41", - "_origin": "ast", - "id": "passport", - "community": 198, - "community_name": "passport", - "norm_label": "passport" + "norm_label": "select", + "id": "frontend_admin_panel_src_components_ui_select_select" }, { "label": "auth.controller.ts", @@ -26547,373 +27531,32 @@ "source_file": "backend/src/auth/auth.controller.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_auth_auth_controller", "community": 199, "community_name": "auth.controller.ts", - "norm_label": "auth.controller.ts" + "norm_label": "auth.controller.ts", + "id": "backend_src_auth_auth_controller" }, { - "label": "admin-login.dto.ts", + "label": "auth.controller.spec.ts", "file_type": "code", - "source_file": "backend/src/auth/dto/admin-login.dto.ts", + "source_file": "backend/src/auth/auth.controller.spec.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_auth_dto_admin_login_dto", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "admin-login.dto.ts" + "community": 35, + "community_name": "AuthController", + "norm_label": "auth.controller.spec.ts", + "id": "backend_src_auth_auth_controller_spec" }, { - "label": "ApiProperty", + "label": "ApiBadRequestResponse", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_auth_dto_admin_login_dto_ts_apiproperty", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "apiproperty" - }, - { - "label": "IsEmail", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_admin_login_dto_ts_isemail", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "isemail" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_admin_login_dto_ts_isnotempty", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_admin_login_dto_ts_isstring", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "isstring" - }, - { - "label": "MinLength", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_admin_login_dto_ts_minlength", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "minlength" - }, - { - "label": "login.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/login.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_dto_login_dto", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "login.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_login_dto_ts_apiproperty", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "apiproperty" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_login_dto_ts_isnotempty", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_login_dto_ts_isstring", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "isstring" - }, - { - "label": "MinLength", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_login_dto_ts_minlength", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "minlength" - }, - { - "label": "register.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/register.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_dto_register_dto", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "register.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_register_dto_ts_apiproperty", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_register_dto_ts_apipropertyoptional", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsEmail", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_register_dto_ts_isemail", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "isemail" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_register_dto_ts_isnotempty", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_register_dto_ts_isoptional", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_register_dto_ts_isstring", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "isstring" - }, - { - "label": "MinLength", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_register_dto_ts_minlength", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "minlength" - }, - { - "label": "verify-otp.dto.ts", - "file_type": "code", - "source_file": "backend/src/auth/dto/verify-otp.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "verify-otp.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "apiproperty" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto_ts_isnotempty", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto_ts_isstring", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "isstring" - }, - { - "label": "Matches", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_dto_verify_otp_dto_ts_matches", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "matches" - }, - { - "label": "Length", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "length", - "community": 199, - "community_name": "auth.controller.ts", - "norm_label": "length" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_common_services_sms_service_ts_injectable", - "community": 2, - "community_name": "SmsService", - "norm_label": "injectable" - }, - { - "label": "sms-log-query.dto.ts", - "file_type": "code", - "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto", - "community": 2, - "community_name": "SmsService", - "norm_label": "sms-log-query.dto.ts" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto_ts_apipropertyoptional", - "community": 2, - "community_name": "SmsService", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsIn", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto_ts_isin", - "community": 2, - "community_name": "SmsService", - "norm_label": "isin" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto_ts_isnumber", - "community": 2, - "community_name": "SmsService", - "norm_label": "isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto_ts_isoptional", - "community": 2, - "community_name": "SmsService", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto_ts_isstring", - "community": 2, - "community_name": "SmsService", - "norm_label": "isstring" - }, - { - "label": "Type", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_dto_sms_log_query_dto_ts_type", - "community": 2, - "community_name": "SmsService", - "norm_label": "type" + "community": 35, + "community_name": "AuthController", + "norm_label": "apibadrequestresponse", + "id": "backend_src_auth_auth_controller_ts_apibadrequestresponse" }, { "label": "ApiBearerAuth", @@ -26921,10 +27564,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_apibearerauth", - "community": 2, - "community_name": "SmsService", - "norm_label": "apibearerauth" + "community": 35, + "community_name": "AuthController", + "norm_label": "apibearerauth", + "id": "backend_src_auth_auth_controller_ts_apibearerauth" }, { "label": "ApiOkResponse", @@ -26932,10 +27575,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_apiokresponse", - "community": 2, - "community_name": "SmsService", - "norm_label": "apiokresponse" + "community": 35, + "community_name": "AuthController", + "norm_label": "apiokresponse", + "id": "backend_src_auth_auth_controller_ts_apiokresponse" }, { "label": "ApiOperation", @@ -26943,10 +27586,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_apioperation", - "community": 2, - "community_name": "SmsService", - "norm_label": "apioperation" + "community": 35, + "community_name": "AuthController", + "norm_label": "apioperation", + "id": "backend_src_auth_auth_controller_ts_apioperation" }, { "label": "ApiTags", @@ -26954,10 +27597,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_apitags", - "community": 2, - "community_name": "SmsService", - "norm_label": "apitags" + "community": 35, + "community_name": "AuthController", + "norm_label": "apitags", + "id": "backend_src_auth_auth_controller_ts_apitags" }, { "label": "Body", @@ -26965,10 +27608,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_body", - "community": 2, - "community_name": "SmsService", - "norm_label": "body" + "community": 35, + "community_name": "AuthController", + "norm_label": "body", + "id": "backend_src_auth_auth_controller_ts_body" }, { "label": "Controller", @@ -26976,54 +27619,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_controller", - "community": 2, - "community_name": "SmsService", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_delete", - "community": 2, - "community_name": "SmsService", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_get", - "community": 2, - "community_name": "SmsService", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_param", - "community": 2, - "community_name": "SmsService", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_patch", - "community": 2, - "community_name": "SmsService", - "norm_label": "patch" + "community": 35, + "community_name": "AuthController", + "norm_label": "controller", + "id": "backend_src_auth_auth_controller_ts_controller" }, { "label": "Post", @@ -27031,32 +27630,32 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_post", - "community": 2, - "community_name": "SmsService", - "norm_label": "post" + "community": 35, + "community_name": "AuthController", + "norm_label": "post", + "id": "backend_src_auth_auth_controller_ts_post" }, { - "label": "Put", + "label": "Req", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_put", - "community": 2, - "community_name": "SmsService", - "norm_label": "put" + "community": 35, + "community_name": "AuthController", + "norm_label": "req", + "id": "backend_src_auth_auth_controller_ts_req" }, { - "label": "Query", + "label": "Throttle", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_query", - "community": 2, - "community_name": "SmsService", - "norm_label": "query" + "community": 35, + "community_name": "AuthController", + "norm_label": "throttle", + "id": "backend_src_auth_auth_controller_ts_throttle" }, { "label": "UseGuards", @@ -27064,32 +27663,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_settings_settings_controller_ts_useguards", - "community": 2, - "community_name": "SmsService", - "norm_label": "useguards" + "community": 35, + "community_name": "AuthController", + "norm_label": "useguards", + "id": "backend_src_auth_auth_controller_ts_useguards" }, { - "label": "Injectable", + "label": "admin-login.dto.ts", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_settings_settings_service_ts_injectable", - "community": 2, - "community_name": "SmsService", - "norm_label": "injectable" - }, - { - "label": "create-video.dto.ts", - "file_type": "code", - "source_file": "backend/src/videos/dto/create-video.dto.ts", + "source_file": "backend/src/auth/dto/admin-login.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "create-video.dto.ts" + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "admin-login.dto.ts", + "id": "backend_src_auth_dto_admin_login_dto" }, { "label": "ApiProperty", @@ -27097,32 +27685,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto_ts_apiproperty", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "apiproperty" + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "apiproperty", + "id": "backend_src_auth_dto_admin_login_dto_ts_apiproperty" }, { - "label": "ApiPropertyOptional", + "label": "IsEmail", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsBoolean", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto_ts_isboolean", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "isboolean" + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "isemail", + "id": "backend_src_auth_dto_admin_login_dto_ts_isemail" }, { "label": "IsNotEmpty", @@ -27130,21 +27707,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto_ts_isnotempty", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto_ts_isoptional", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "isoptional" + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "isnotempty", + "id": "backend_src_auth_dto_admin_login_dto_ts_isnotempty" }, { "label": "IsString", @@ -27152,153 +27718,296 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_dto_create_video_dto_ts_isstring", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "isstring" + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "isstring", + "id": "backend_src_auth_dto_admin_login_dto_ts_isstring" }, { - "label": "ApiBearerAuth", + "label": "MinLength", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_apibearerauth", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "apibearerauth" + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "minlength", + "id": "backend_src_auth_dto_admin_login_dto_ts_minlength" }, { - "label": "ApiOperation", + "label": "login.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/login.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "login.dto.ts", + "id": "backend_src_auth_dto_login_dto" + }, + { + "label": "ApiProperty", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_apioperation", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "apioperation" + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "apiproperty", + "id": "backend_src_auth_dto_login_dto_ts_apiproperty" }, { - "label": "ApiQuery", + "label": "IsNotEmpty", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_apiquery", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "apiquery" + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "isnotempty", + "id": "backend_src_auth_dto_login_dto_ts_isnotempty" }, { - "label": "ApiTags", + "label": "IsString", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_apitags", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "apitags" + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "isstring", + "id": "backend_src_auth_dto_login_dto_ts_isstring" }, { - "label": "Body", + "label": "MinLength", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_body", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "body" + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "minlength", + "id": "backend_src_auth_dto_login_dto_ts_minlength" }, { - "label": "Controller", + "label": "register.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/register.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "register.dto.ts", + "id": "backend_src_auth_dto_register_dto" + }, + { + "label": "ApiProperty", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_controller", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "controller" + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "apiproperty", + "id": "backend_src_auth_dto_register_dto_ts_apiproperty" }, { - "label": "Delete", + "label": "ApiPropertyOptional", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_delete", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "delete" + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "apipropertyoptional", + "id": "backend_src_auth_dto_register_dto_ts_apipropertyoptional" }, { - "label": "Get", + "label": "IsEmail", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_get", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "get" + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "isemail", + "id": "backend_src_auth_dto_register_dto_ts_isemail" }, { - "label": "Param", + "label": "IsNotEmpty", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_param", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "param" + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "isnotempty", + "id": "backend_src_auth_dto_register_dto_ts_isnotempty" }, { - "label": "Post", + "label": "IsOptional", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_post", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "post" + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "isoptional", + "id": "backend_src_auth_dto_register_dto_ts_isoptional" }, { - "label": "Put", + "label": "IsString", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_put", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "put" + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "isstring", + "id": "backend_src_auth_dto_register_dto_ts_isstring" }, { - "label": "Query", + "label": "MinLength", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_query", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "query" + "community": 199, + "community_name": "auth.controller.ts", + "norm_label": "minlength", + "id": "backend_src_auth_dto_register_dto_ts_minlength" }, { - "label": "UseGuards", + "label": "send-otp.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/send-otp.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "send-otp.dto.ts", + "id": "backend_src_auth_dto_send_otp_dto" + }, + { + "label": "ApiProperty", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_videos_controller_ts_useguards", - "community": 20, - "community_name": "CreateVideoDto", - "norm_label": "useguards" + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "apiproperty", + "id": "backend_src_auth_dto_send_otp_dto_ts_apiproperty" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "isnotempty", + "id": "backend_src_auth_dto_send_otp_dto_ts_isnotempty" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "isstring", + "id": "backend_src_auth_dto_send_otp_dto_ts_isstring" + }, + { + "label": "Matches", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "matches", + "id": "backend_src_auth_dto_send_otp_dto_ts_matches" + }, + { + "label": "verify-otp.dto.ts", + "file_type": "code", + "source_file": "backend/src/auth/dto/verify-otp.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "verify-otp.dto.ts", + "id": "backend_src_auth_dto_verify_otp_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "apiproperty", + "id": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "isnotempty", + "id": "backend_src_auth_dto_verify_otp_dto_ts_isnotempty" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "isstring", + "id": "backend_src_auth_dto_verify_otp_dto_ts_isstring" + }, + { + "label": "Matches", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "matches", + "id": "backend_src_auth_dto_verify_otp_dto_ts_matches" + }, + { + "label": "HttpCode", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 35, + "community_name": "AuthController", + "norm_label": "httpcode", + "id": "httpcode" + }, + { + "label": "Length", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 151, + "community_name": "auth.service.ts", + "norm_label": "length", + "id": "length" }, { "label": "Injectable", @@ -27306,10 +28015,571 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_videos_videos_service_ts_injectable", + "community": 2, + "community_name": "SmsService", + "norm_label": "injectable", + "id": "backend_src_common_services_sms_service_ts_injectable" + }, + { + "label": "sms-log-query.dto.ts", + "file_type": "code", + "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "sms-log-query.dto.ts", + "id": "backend_src_settings_dto_sms_log_query_dto" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "apipropertyoptional", + "id": "backend_src_settings_dto_sms_log_query_dto_ts_apipropertyoptional" + }, + { + "label": "IsIn", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "isin", + "id": "backend_src_settings_dto_sms_log_query_dto_ts_isin" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "isnumber", + "id": "backend_src_settings_dto_sms_log_query_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "isoptional", + "id": "backend_src_settings_dto_sms_log_query_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "isstring", + "id": "backend_src_settings_dto_sms_log_query_dto_ts_isstring" + }, + { + "label": "Type", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "type", + "id": "backend_src_settings_dto_sms_log_query_dto_ts_type" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "apibearerauth", + "id": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "apiokresponse", + "id": "backend_src_settings_settings_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "apioperation", + "id": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "apitags", + "id": "backend_src_settings_settings_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "body", + "id": "backend_src_settings_settings_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "controller", + "id": "backend_src_settings_settings_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "delete", + "id": "backend_src_settings_settings_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "get", + "id": "backend_src_settings_settings_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "param", + "id": "backend_src_settings_settings_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "patch", + "id": "backend_src_settings_settings_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "post", + "id": "backend_src_settings_settings_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "put", + "id": "backend_src_settings_settings_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "query", + "id": "backend_src_settings_settings_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "useguards", + "id": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 2, + "community_name": "SmsService", + "norm_label": "injectable", + "id": "backend_src_settings_settings_service_ts_injectable" + }, + { + "label": "create-video.dto.ts", + "file_type": "code", + "source_file": "backend/src/videos/dto/create-video.dto.ts", + "source_location": "L1", + "_origin": "ast", "community": 20, "community_name": "CreateVideoDto", - "norm_label": "injectable" + "norm_label": "create-video.dto.ts", + "id": "backend_src_videos_dto_create_video_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "apiproperty", + "id": "backend_src_videos_dto_create_video_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional" + }, + { + "label": "IsBoolean", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "isboolean", + "id": "backend_src_videos_dto_create_video_dto_ts_isboolean" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "isnotempty", + "id": "backend_src_videos_dto_create_video_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "isoptional", + "id": "backend_src_videos_dto_create_video_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "isstring", + "id": "backend_src_videos_dto_create_video_dto_ts_isstring" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional" + }, + { + "label": "IsBoolean", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "isboolean", + "id": "backend_src_videos_dto_get_videos_query_dto_ts_isboolean" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "isoptional", + "id": "backend_src_videos_dto_get_videos_query_dto_ts_isoptional" + }, + { + "label": "Transform", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "transform", + "id": "backend_src_videos_dto_get_videos_query_dto_ts_transform" + }, + { + "label": "videos.controller.ts", + "file_type": "code", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "videos.controller.ts", + "id": "backend_src_videos_videos_controller" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "apibearerauth", + "id": "backend_src_videos_videos_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "apioperation", + "id": "backend_src_videos_videos_controller_ts_apioperation" + }, + { + "label": "ApiQuery", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "apiquery", + "id": "backend_src_videos_videos_controller_ts_apiquery" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "apitags", + "id": "backend_src_videos_videos_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "body", + "id": "backend_src_videos_videos_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "controller", + "id": "backend_src_videos_videos_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "delete", + "id": "backend_src_videos_videos_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "get", + "id": "backend_src_videos_videos_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "param", + "id": "backend_src_videos_videos_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "post", + "id": "backend_src_videos_videos_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "put", + "id": "backend_src_videos_videos_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "query", + "id": "backend_src_videos_videos_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "useguards", + "id": "backend_src_videos_videos_controller_ts_useguards" + }, + { + "label": "videos.module.ts", + "file_type": "code", + "source_file": "backend/src/videos/videos.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "videos.module.ts", + "id": "backend_src_videos_videos_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "module", + "id": "backend_src_videos_videos_module_ts_module" + }, + { + "label": "videos.service.ts", + "file_type": "code", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "videos.service.ts", + "id": "backend_src_videos_videos_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 20, + "community_name": "CreateVideoDto", + "norm_label": "injectable", + "id": "backend_src_videos_videos_service_ts_injectable" }, { "label": "application/README.md", @@ -27317,10 +28587,11 @@ "source_file": "frontend/application/README.md", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_readme", "community": 200, "community_name": "application/README.md", - "norm_label": "application/readme.md" + "norm_label": "application/readme.md", + "node_kind": "page", + "id": "frontend_application_readme" }, { "label": "Deploy on Vercel", @@ -27328,10 +28599,11 @@ "source_file": "frontend/application/README.md", "source_location": "L32", "_origin": "ast", - "id": "frontend_application_readme_deploy_on_vercel", "community": 200, "community_name": "application/README.md", - "norm_label": "deploy on vercel" + "norm_label": "deploy on vercel", + "node_kind": "heading", + "id": "frontend_application_readme_deploy_on_vercel" }, { "label": "Getting Started", @@ -27339,10 +28611,11 @@ "source_file": "frontend/application/README.md", "source_location": "L3", "_origin": "ast", - "id": "frontend_application_readme_getting_started", "community": 200, "community_name": "application/README.md", - "norm_label": "getting started" + "norm_label": "getting started", + "node_kind": "heading", + "id": "frontend_application_readme_getting_started" }, { "label": "Learn More", @@ -27350,10 +28623,11 @@ "source_file": "frontend/application/README.md", "source_location": "L23", "_origin": "ast", - "id": "frontend_application_readme_learn_more", "community": 200, "community_name": "application/README.md", - "norm_label": "learn more" + "norm_label": "learn more", + "node_kind": "heading", + "id": "frontend_application_readme_learn_more" }, { "label": "deploy.sh", @@ -27365,10 +28639,10 @@ "kind": "file" }, "_origin": "ast", - "id": "scripts_deploy", "community": 201, "community_name": "deploy.sh", - "norm_label": "deploy.sh" + "norm_label": "deploy.sh", + "id": "scripts_deploy" }, { "label": "COMPOSE_DOCKER_CLI_BUILD", @@ -27380,10 +28654,10 @@ "kind": "code" }, "_origin": "ast", - "id": "scripts_deploy_compose_docker_cli_build", "community": 201, "community_name": "deploy.sh", - "norm_label": "compose_docker_cli_build" + "norm_label": "compose_docker_cli_build", + "id": "scripts_deploy_compose_docker_cli_build" }, { "label": "DOCKER_BUILDKIT", @@ -27395,10 +28669,10 @@ "kind": "code" }, "_origin": "ast", - "id": "scripts_deploy_docker_buildkit", "community": 201, "community_name": "deploy.sh", - "norm_label": "docker_buildkit" + "norm_label": "docker_buildkit", + "id": "scripts_deploy_docker_buildkit" }, { "label": "deploy.sh script", @@ -27410,10 +28684,10 @@ "kind": "bash_entrypoint" }, "_origin": "ast", - "id": "scripts_deploy_sh__entry", "community": 201, "community_name": "deploy.sh", - "norm_label": "deploy.sh script" + "norm_label": "deploy.sh script", + "id": "scripts_deploy_sh__entry" }, { "label": "security_review.md", @@ -27421,10 +28695,11 @@ "source_file": ".ai_agency/specs/reviews/security_review.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_reviews_security_review", "community": 202, "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", - "norm_label": "security_review.md" + "norm_label": "security_review.md", + "node_kind": "page", + "id": "ai_agency_specs_reviews_security_review" }, { "label": "Security Architecture & Best Practices", @@ -27432,10 +28707,11 @@ "source_file": ".ai_agency/specs/reviews/security_review.md", "source_location": "L3", "_origin": "ast", - "id": "ai_agency_specs_reviews_security_review_security_architecture_best_practices", "community": 202, "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", - "norm_label": "security architecture & best practices" + "norm_label": "security architecture & best practices", + "node_kind": "heading", + "id": "ai_agency_specs_reviews_security_review_security_architecture_best_practices" }, { "label": "\ud83d\udd12 Security & Performance Review (09_devops_security)", @@ -27443,10 +28719,11 @@ "source_file": ".ai_agency/specs/reviews/security_review.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security", "community": 202, "community_name": "\ud83d\udd12 Security & Performance Review (09_devops_security)", - "norm_label": "\ud83d\udd12 security & performance review (09_devops_security)" + "norm_label": "\ud83d\udd12 security & performance review (09_devops_security)", + "node_kind": "heading", + "id": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security" }, { "label": "ux_review.md", @@ -27454,10 +28731,11 @@ "source_file": ".ai_agency/specs/reviews/ux_review.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_reviews_ux_review", "community": 203, "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", - "norm_label": "ux_review.md" + "norm_label": "ux_review.md", + "node_kind": "page", + "id": "ai_agency_specs_reviews_ux_review" }, { "label": "Persona Experience Alignment", @@ -27465,10 +28743,11 @@ "source_file": ".ai_agency/specs/reviews/ux_review.md", "source_location": "L3", "_origin": "ast", - "id": "ai_agency_specs_reviews_ux_review_persona_experience_alignment", "community": 203, "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", - "norm_label": "persona experience alignment" + "norm_label": "persona experience alignment", + "node_kind": "heading", + "id": "ai_agency_specs_reviews_ux_review_persona_experience_alignment" }, { "label": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", @@ -27476,32 +28755,11 @@ "source_file": ".ai_agency/specs/reviews/ux_review.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa", "community": 203, "community_name": "\ud83d\udc41\ufe0f UX & Persona Interface Review (08_visual_qa)", - "norm_label": "\ud83d\udc41\ufe0f ux & persona interface review (08_visual_qa)" - }, - { - "label": "reflect-metadata", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L43", - "_origin": "ast", - "id": "backend_package_dependencies_reflect_metadata", - "community": 204, - "community_name": "reflect-metadata", - "norm_label": "reflect-metadata" - }, - { - "label": "reflect-metadata", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L43", - "_origin": "ast", - "id": "reflect_metadata", - "community": 204, - "community_name": "reflect-metadata", - "norm_label": "reflect-metadata" + "norm_label": "\ud83d\udc41\ufe0f ux & persona interface review (08_visual_qa)", + "node_kind": "heading", + "id": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa" }, { "label": "prisma/scientificTerms.ts", @@ -27509,10 +28767,10 @@ "source_file": "backend/prisma/scientificTerms.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_prisma_scientificterms", "community": 205, "community_name": "prisma/scientificTerms.ts", - "norm_label": "prisma/scientificterms.ts" + "norm_label": "prisma/scientificterms.ts", + "id": "backend_prisma_scientificterms" }, { "label": "SCIENTIFIC_TERMS", @@ -27520,10 +28778,10 @@ "source_file": "backend/prisma/scientificTerms.ts", "source_location": "L7", "_origin": "ast", - "id": "backend_prisma_scientificterms_scientific_terms", "community": 205, "community_name": "prisma/scientificTerms.ts", - "norm_label": "scientific_terms" + "norm_label": "scientific_terms", + "id": "backend_prisma_scientificterms_scientific_terms" }, { "label": "seed-blogs.ts", @@ -27531,10 +28789,10 @@ "source_file": "backend/prisma/seed-blogs.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_prisma_seed_blogs", "community": 206, "community_name": "seed-blogs.ts", - "norm_label": "seed-blogs.ts" + "norm_label": "seed-blogs.ts", + "id": "backend_prisma_seed_blogs" }, { "label": "prisma", @@ -27542,10 +28800,10 @@ "source_file": "backend/prisma/seed-blogs.ts", "source_location": "L3", "_origin": "ast", - "id": "backend_prisma_seed_blogs_prisma", "community": 206, "community_name": "seed-blogs.ts", - "norm_label": "prisma" + "norm_label": "prisma", + "id": "backend_prisma_seed_blogs_prisma" }, { "label": "seed-custom.ts", @@ -27553,10 +28811,10 @@ "source_file": "backend/prisma/seed-custom.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_prisma_seed_custom", "community": 207, "community_name": "seed-custom.ts", - "norm_label": "seed-custom.ts" + "norm_label": "seed-custom.ts", + "id": "backend_prisma_seed_custom" }, { "label": "prisma", @@ -27564,10 +28822,10 @@ "source_file": "backend/prisma/seed-custom.ts", "source_location": "L5", "_origin": "ast", - "id": "backend_prisma_seed_custom_prisma", "community": 207, "community_name": "seed-custom.ts", - "norm_label": "prisma" + "norm_label": "prisma", + "id": "backend_prisma_seed_custom_prisma" }, { "label": "github-and-merge.md", @@ -27575,10 +28833,11 @@ "source_file": ".claude/skills/graphify/references/github-and-merge.md", "source_location": "L1", "_origin": "ast", - "id": "claude_skills_graphify_references_github_and_merge", "community": 208, "community_name": "graphify reference: GitHub clone and cross-repo merge", - "norm_label": "github-and-merge.md" + "norm_label": "github-and-merge.md", + "node_kind": "page", + "id": "claude_skills_graphify_references_github_and_merge" }, { "label": "graphify reference: GitHub clone and cross-repo merge", @@ -27586,10 +28845,11 @@ "source_file": ".claude/skills/graphify/references/github-and-merge.md", "source_location": "L1", "_origin": "ast", - "id": "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge", "community": 208, "community_name": "graphify reference: GitHub clone and cross-repo merge", - "norm_label": "graphify reference: github clone and cross-repo merge" + "norm_label": "graphify reference: github clone and cross-repo merge", + "node_kind": "heading", + "id": "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge" }, { "label": "Step 0 - Clone GitHub repo(s) (only if a GitHub URL was given)", @@ -27597,10 +28857,11 @@ "source_file": ".claude/skills/graphify/references/github-and-merge.md", "source_location": "L5", "_origin": "ast", - "id": "claude_skills_graphify_references_github_and_merge_step_0_clone_github_repo_s_only_if_a_github_url_was_given", "community": 208, "community_name": "graphify reference: GitHub clone and cross-repo merge", - "norm_label": "step 0 - clone github repo(s) (only if a github url was given)" + "norm_label": "step 0 - clone github repo(s) (only if a github url was given)", + "node_kind": "heading", + "id": "claude_skills_graphify_references_github_and_merge_step_0_clone_github_repo_s_only_if_a_github_url_was_given" }, { "label": "transcribe.md", @@ -27608,10 +28869,11 @@ "source_file": ".claude/skills/graphify/references/transcribe.md", "source_location": "L1", "_origin": "ast", - "id": "claude_skills_graphify_references_transcribe", "community": 209, "community_name": "graphify reference: transcribe video and audio", - "norm_label": "transcribe.md" + "norm_label": "transcribe.md", + "node_kind": "page", + "id": "claude_skills_graphify_references_transcribe" }, { "label": "graphify reference: transcribe video and audio", @@ -27619,10 +28881,11 @@ "source_file": ".claude/skills/graphify/references/transcribe.md", "source_location": "L1", "_origin": "ast", - "id": "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio", "community": 209, "community_name": "graphify reference: transcribe video and audio", - "norm_label": "graphify reference: transcribe video and audio" + "norm_label": "graphify reference: transcribe video and audio", + "node_kind": "heading", + "id": "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio" }, { "label": "Step 2.5 - Transcribe video / audio files (only if video files detected)", @@ -27630,109 +28893,154 @@ "source_file": ".claude/skills/graphify/references/transcribe.md", "source_location": "L5", "_origin": "ast", - "id": "claude_skills_graphify_references_transcribe_step_2_5_transcribe_video_audio_files_only_if_video_files_detected", "community": 209, "community_name": "graphify reference: transcribe video and audio", - "norm_label": "step 2.5 - transcribe video / audio files (only if video files detected)" + "norm_label": "step 2.5 - transcribe video / audio files (only if video files detected)", + "node_kind": "heading", + "id": "claude_skills_graphify_references_transcribe_step_2_5_transcribe_video_audio_files_only_if_video_files_detected" }, { - "label": "ProductPage.tsx", + "label": "Button.tsx", "file_type": "code", - "source_file": "frontend/application/components/ProductPage.tsx", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_productpage", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "productpage.tsx" + "community": 7, + "community_name": "Button.tsx", + "norm_label": "button.tsx", + "id": "frontend_admin_panel_src_components_ui_button" }, { - "label": "ICON_MAP", + "label": "Spinner.tsx", "file_type": "code", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L34", - "_origin": "ast", - "id": "frontend_application_components_productpage_icon_map", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "icon_map" - }, - { - "label": "ProductReviews", - "file_type": "code", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L74", - "_origin": "ast", - "id": "frontend_application_components_productpage_productreviews", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "productreviews" - }, - { - "label": "useCalculatorStore", - "file_type": "code", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L61", - "_origin": "ast", - "id": "frontend_application_components_productpage_usecalculatorstore", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "usecalculatorstore" - }, - { - "label": "ProductReviews.tsx", - "file_type": "code", - "source_file": "frontend/application/components/ProductReviews.tsx", + "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_productreviews", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "productreviews.tsx" + "community": 7, + "community_name": "Button.tsx", + "norm_label": "spinner.tsx", + "id": "frontend_admin_panel_src_components_ui_spinner" }, { - "label": "Tooltip.test.tsx", + "label": "DoctorsManager.tsx", "file_type": "code", - "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_tests_tooltip_test", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "tooltip.test.tsx" + "community": 7, + "community_name": "Button.tsx", + "norm_label": "doctorsmanager.tsx", + "id": "frontend_admin_panel_src_pages_doctorsmanager" }, { - "label": "Tooltip.tsx", + "label": "FAQManager.tsx", "file_type": "code", - "source_file": "frontend/application/components/Tooltip.tsx", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_tooltip", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "tooltip.tsx" + "community": 7, + "community_name": "Button.tsx", + "norm_label": "faqmanager.tsx", + "id": "frontend_admin_panel_src_pages_faqmanager" }, { - "label": "data/scientificTerms.ts", + "label": "PaymentGatewaysPage.tsx", "file_type": "code", - "source_file": "frontend/application/lib/data/scientificTerms.ts", + "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_lib_data_scientificterms", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "data/scientificterms.ts" + "community": 7, + "community_name": "Button.tsx", + "norm_label": "paymentgatewayspage.tsx", + "id": "frontend_admin_panel_src_pages_paymentgatewayspage" }, { - "label": "SCIENTIFIC_TERMS", + "label": "Reviews.tsx", "file_type": "code", - "source_file": "frontend/application/lib/data/scientificTerms.ts", - "source_location": "L7", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L1", "_origin": "ast", - "id": "frontend_application_lib_data_scientificterms_scientific_terms", - "community": 21, - "community_name": "ProductPage.tsx", - "norm_label": "scientific_terms" + "community": 7, + "community_name": "Button.tsx", + "norm_label": "reviews.tsx", + "id": "frontend_admin_panel_src_pages_reviews" + }, + { + "label": "Settings.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Settings.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "settings.tsx", + "id": "frontend_admin_panel_src_pages_settings" + }, + { + "label": "ShippingSettingsPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "shippingsettingspage.tsx", + "id": "frontend_admin_panel_src_pages_shippingsettingspage" + }, + { + "label": "SslSettingsPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "sslsettingspage.tsx", + "id": "frontend_admin_panel_src_pages_sslsettingspage" + }, + { + "label": "FAQManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L45", + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "faqmanager", + "id": "frontend_admin_panel_src_routes_adminroutes_faqmanager" + }, + { + "label": "Reviews", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L43", + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "reviews", + "id": "frontend_admin_panel_src_routes_adminroutes_reviews" + }, + { + "label": "Settings", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L15", + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "settings", + "id": "frontend_admin_panel_src_routes_adminroutes_settings" + }, + { + "label": "SslSettingsPage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L40", + "_origin": "ast", + "community": 7, + "community_name": "Button.tsx", + "norm_label": "sslsettingspage", + "id": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage" }, { "label": "18-compiler-diagnostic-dispositions.md", @@ -27740,10 +29048,11 @@ "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_18_compiler_diagnostic_dispositions", "community": 210, "community_name": "Compiler Diagnostic Dispositions", - "norm_label": "18-compiler-diagnostic-dispositions.md" + "norm_label": "18-compiler-diagnostic-dispositions.md", + "node_kind": "page", + "id": "docs_audit_18_compiler_diagnostic_dispositions" }, { "label": "Compiler Diagnostic Dispositions", @@ -27751,10 +29060,11 @@ "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions", "community": 210, "community_name": "Compiler Diagnostic Dispositions", - "norm_label": "compiler diagnostic dispositions" + "norm_label": "compiler diagnostic dispositions", + "node_kind": "heading", + "id": "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions" }, { "label": "Reconciled Compiler Diagnostic Table", @@ -27762,10 +29072,11 @@ "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", "source_location": "L11", "_origin": "ast", - "id": "docs_audit_18_compiler_diagnostic_dispositions_reconciled_compiler_diagnostic_table", "community": 210, "community_name": "Compiler Diagnostic Dispositions", - "norm_label": "reconciled compiler diagnostic table" + "norm_label": "reconciled compiler diagnostic table", + "node_kind": "heading", + "id": "docs_audit_18_compiler_diagnostic_dispositions_reconciled_compiler_diagnostic_table" }, { "label": "build_manifest.js", @@ -27773,10 +29084,10 @@ "source_file": "docs/audit/build_manifest.js", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_build_manifest", "community": 212, "community_name": "build_manifest.js", - "norm_label": "build_manifest.js" + "norm_label": "build_manifest.js", + "id": "docs_audit_build_manifest" }, { "label": "entries", @@ -27784,10 +29095,10 @@ "source_file": "docs/audit/build_manifest.js", "source_location": "L8", "_origin": "ast", - "id": "docs_audit_build_manifest_entries", "community": 212, "community_name": "build_manifest.js", - "norm_label": "entries" + "norm_label": "entries", + "id": "docs_audit_build_manifest_entries" }, { "label": "lines", @@ -27795,10 +29106,10 @@ "source_file": "docs/audit/build_manifest.js", "source_location": "L3", "_origin": "ast", - "id": "docs_audit_build_manifest_lines", "community": 212, "community_name": "build_manifest.js", - "norm_label": "lines" + "norm_label": "lines", + "id": "docs_audit_build_manifest_lines" }, { "label": "generate_classification.js", @@ -27806,10 +29117,10 @@ "source_file": "docs/audit/generate_classification.js", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_generate_classification", "community": 213, "community_name": "generate_classification.js", - "norm_label": "generate_classification.js" + "norm_label": "generate_classification.js", + "id": "docs_audit_generate_classification" }, { "label": "classified", @@ -27817,10 +29128,10 @@ "source_file": "docs/audit/generate_classification.js", "source_location": "L8", "_origin": "ast", - "id": "docs_audit_generate_classification_classified", "community": 213, "community_name": "generate_classification.js", - "norm_label": "classified" + "norm_label": "classified", + "id": "docs_audit_generate_classification_classified" }, { "label": "lines", @@ -27828,10 +29139,10 @@ "source_file": "docs/audit/generate_classification.js", "source_location": "L3", "_origin": "ast", - "id": "docs_audit_generate_classification_lines", "community": 213, "community_name": "generate_classification.js", - "norm_label": "lines" + "norm_label": "lines", + "id": "docs_audit_generate_classification_lines" }, { "label": "generate_evidence.js", @@ -27839,10 +29150,10 @@ "source_file": "docs/audit/generate_evidence.js", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_generate_evidence", "community": 214, "community_name": "generate_evidence.js", - "norm_label": "generate_evidence.js" + "norm_label": "generate_evidence.js", + "id": "docs_audit_generate_evidence" }, { "label": "classification", @@ -27850,10 +29161,10 @@ "source_file": "docs/audit/generate_evidence.js", "source_location": "L4", "_origin": "ast", - "id": "docs_audit_generate_evidence_classification", "community": 214, "community_name": "generate_evidence.js", - "norm_label": "classification" + "norm_label": "classification", + "id": "docs_audit_generate_evidence_classification" }, { "label": "evidenceEntries", @@ -27861,10 +29172,10 @@ "source_file": "docs/audit/generate_evidence.js", "source_location": "L6", "_origin": "ast", - "id": "docs_audit_generate_evidence_evidenceentries", "community": 214, "community_name": "generate_evidence.js", - "norm_label": "evidenceentries" + "norm_label": "evidenceentries", + "id": "docs_audit_generate_evidence_evidenceentries" }, { "label": "generate_ledger.js", @@ -27872,10 +29183,10 @@ "source_file": "docs/audit/generate_ledger.js", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_generate_ledger", "community": 215, "community_name": "generate_ledger.js", - "norm_label": "generate_ledger.js" + "norm_label": "generate_ledger.js", + "id": "docs_audit_generate_ledger" }, { "label": "evidence", @@ -27883,10 +29194,10 @@ "source_file": "docs/audit/generate_ledger.js", "source_location": "L3", "_origin": "ast", - "id": "docs_audit_generate_ledger_evidence", "community": 215, "community_name": "generate_ledger.js", - "norm_label": "evidence" + "norm_label": "evidence", + "id": "docs_audit_generate_ledger_evidence" }, { "label": "ledgerEntries", @@ -27894,10 +29205,10 @@ "source_file": "docs/audit/generate_ledger.js", "source_location": "L5", "_origin": "ast", - "id": "docs_audit_generate_ledger_ledgerentries", "community": 215, "community_name": "generate_ledger.js", - "norm_label": "ledgerentries" + "norm_label": "ledgerentries", + "id": "docs_audit_generate_ledger_ledgerentries" }, { "label": "generate_manifest.js", @@ -27905,10 +29216,10 @@ "source_file": "docs/audit/generate_manifest.js", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_generate_manifest", "community": 216, "community_name": "generate_manifest.js", - "norm_label": "generate_manifest.js" + "norm_label": "generate_manifest.js", + "id": "docs_audit_generate_manifest" }, { "label": "evidence", @@ -27916,10 +29227,10 @@ "source_file": "docs/audit/generate_manifest.js", "source_location": "L3", "_origin": "ast", - "id": "docs_audit_generate_manifest_evidence", "community": 216, "community_name": "generate_manifest.js", - "norm_label": "evidence" + "norm_label": "evidence", + "id": "docs_audit_generate_manifest_evidence" }, { "label": "manifestEntries", @@ -27927,10 +29238,10 @@ "source_file": "docs/audit/generate_manifest.js", "source_location": "L5", "_origin": "ast", - "id": "docs_audit_generate_manifest_manifestentries", "community": 216, "community_name": "generate_manifest.js", - "norm_label": "manifestentries" + "norm_label": "manifestentries", + "id": "docs_audit_generate_manifest_manifestentries" }, { "label": "sync_honest_manifest.js", @@ -27938,10 +29249,10 @@ "source_file": "docs/audit/sync_honest_manifest.js", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_sync_honest_manifest", "community": 217, "community_name": "sync_honest_manifest.js", - "norm_label": "sync_honest_manifest.js" + "norm_label": "sync_honest_manifest.js", + "id": "docs_audit_sync_honest_manifest" }, { "label": "ledger", @@ -27949,10 +29260,10 @@ "source_file": "docs/audit/sync_honest_manifest.js", "source_location": "L3", "_origin": "ast", - "id": "docs_audit_sync_honest_manifest_ledger", "community": 217, "community_name": "sync_honest_manifest.js", - "norm_label": "ledger" + "norm_label": "ledger", + "id": "docs_audit_sync_honest_manifest_ledger" }, { "label": "manifest", @@ -27960,10 +29271,10 @@ "source_file": "docs/audit/sync_honest_manifest.js", "source_location": "L5", "_origin": "ast", - "id": "docs_audit_sync_honest_manifest_manifest", "community": 217, "community_name": "sync_honest_manifest.js", - "norm_label": "manifest" + "norm_label": "manifest", + "id": "docs_audit_sync_honest_manifest_manifest" }, { "label": "sync_manifest.js", @@ -27971,10 +29282,10 @@ "source_file": "docs/audit/sync_manifest.js", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_sync_manifest", "community": 218, "community_name": "sync_manifest.js", - "norm_label": "sync_manifest.js" + "norm_label": "sync_manifest.js", + "id": "docs_audit_sync_manifest" }, { "label": "ledger", @@ -27982,10 +29293,10 @@ "source_file": "docs/audit/sync_manifest.js", "source_location": "L3", "_origin": "ast", - "id": "docs_audit_sync_manifest_ledger", "community": 218, "community_name": "sync_manifest.js", - "norm_label": "ledger" + "norm_label": "ledger", + "id": "docs_audit_sync_manifest_ledger" }, { "label": "manifestEntries", @@ -27993,10 +29304,10 @@ "source_file": "docs/audit/sync_manifest.js", "source_location": "L5", "_origin": "ast", - "id": "docs_audit_sync_manifest_manifestentries", "community": 218, "community_name": "sync_manifest.js", - "norm_label": "manifestentries" + "norm_label": "manifestentries", + "id": "docs_audit_sync_manifest_manifestentries" }, { "label": "FormField.tsx", @@ -28004,10 +29315,32 @@ "source_file": "frontend/admin-panel/src/components/ui/FormField.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_formfield", "community": 219, "community_name": "FormField.tsx", - "norm_label": "formfield.tsx" + "norm_label": "formfield.tsx", + "id": "frontend_admin_panel_src_components_ui_formfield" + }, + { + "label": "B2BPortal", + "file_type": "code", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L14", + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": "b2bportal", + "id": "frontend_application_app_clientlayout_b2bportal" + }, + { + "label": "LoginModal", + "file_type": "code", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L12", + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": "loginmodal", + "id": "frontend_application_app_clientlayout_loginmodal" }, { "label": "verify/page.tsx", @@ -28015,21 +29348,10 @@ "source_file": "frontend/application/app/payment/verify/page.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_payment_verify_page", "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "verify/page.tsx" - }, - { - "label": "AddressModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_addressmodal", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "addressmodal.tsx" + "community_name": "lib/services/api.ts", + "norm_label": "verify/page.tsx", + "id": "frontend_application_app_payment_verify_page" }, { "label": "B2BPortal.tsx", @@ -28037,54 +29359,21 @@ "source_file": "frontend/application/components/B2BPortal.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_b2bportal", "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "b2bportal.tsx" + "community_name": "lib/services/api.ts", + "norm_label": "b2bportal.tsx", + "id": "frontend_application_components_b2bportal" }, { - "label": "BackButton.tsx", + "label": "ContactFormClient.tsx", "file_type": "code", - "source_file": "frontend/application/components/BackButton.tsx", + "source_file": "frontend/application/components/ContactFormClient.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_backbutton", "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "backbutton.tsx" - }, - { - "label": "CheckoutPage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_checkoutpage", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "checkoutpage.tsx" - }, - { - "label": "DeleteConfirmModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/DeleteConfirmModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_deleteconfirmmodal", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "deleteconfirmmodal.tsx" - }, - { - "label": "HeaderButton.tsx", - "file_type": "code", - "source_file": "frontend/application/components/HeaderButton.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_headerbutton", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "headerbutton.tsx" + "community_name": "lib/services/api.ts", + "norm_label": "contactformclient.tsx", + "id": "frontend_application_components_contactformclient" }, { "label": "LoginModal.tsx", @@ -28092,10 +29381,10 @@ "source_file": "frontend/application/components/LoginModal.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_loginmodal", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "loginmodal.tsx" + "community": 88, + "community_name": "toPersian", + "norm_label": "loginmodal.tsx", + "id": "frontend_application_components_loginmodal" }, { "label": "PrescriptionUploadModal.tsx", @@ -28103,120 +29392,76 @@ "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_prescriptionuploadmodal", "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "prescriptionuploadmodal.tsx" + "community_name": "lib/services/api.ts", + "norm_label": "prescriptionuploadmodal.tsx", + "id": "frontend_application_components_prescriptionuploadmodal" }, { - "label": "SearchableSelect.tsx", + "label": "lib/services/api.ts", "file_type": "code", - "source_file": "frontend/application/components/SearchableSelect.tsx", + "source_file": "frontend/application/lib/services/api.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_searchableselect", "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "searchableselect.tsx" + "community_name": "lib/services/api.ts", + "norm_label": "lib/services/api.ts", + "id": "frontend_application_lib_services_api" }, { - "label": "Header.test.tsx", + "label": "api", "file_type": "code", - "source_file": "frontend/application/components/__tests__/Header.test.tsx", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L26", + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "api", + "id": "frontend_application_lib_services_api_api" + }, + { + "label": "baseURL", + "file_type": "code", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L13", + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "baseurl", + "id": "frontend_application_lib_services_api_baseurl" + }, + { + "label": "authService.ts", + "file_type": "code", + "source_file": "frontend/application/lib/services/authService.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_tests_header_test", "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "header.test.tsx" + "community_name": "lib/services/api.ts", + "norm_label": "authservice.ts", + "id": "frontend_application_lib_services_authservice" }, { - "label": "TopUpModal.tsx", + "label": "settingsStore.test.ts", "file_type": "code", - "source_file": "frontend/application/components/TopUpModal.tsx", + "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_topupmodal", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "topupmodal.tsx" + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "settingsstore.test.ts", + "id": "frontend_application_lib_store_tests_settingsstore_test" }, { - "label": "PRESET_AMOUNTS", + "label": "userStore.test.ts", "file_type": "code", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L18", - "_origin": "ast", - "id": "frontend_application_components_topupmodal_preset_amounts", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "preset_amounts" - }, - { - "label": "UserDashboard.tsx", - "file_type": "code", - "source_file": "frontend/application/components/UserDashboard.tsx", + "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_userdashboard", "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "userdashboard.tsx" - }, - { - "label": "provinces.ts", - "file_type": "code", - "source_file": "frontend/application/lib/data/provinces.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_data_provinces", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "provinces.ts" - }, - { - "label": "IRAN_PROVINCES", - "file_type": "code", - "source_file": "frontend/application/lib/data/provinces.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_data_provinces_iran_provinces", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "iran_provinces" - }, - { - "label": "PROVINCE_CITIES", - "file_type": "code", - "source_file": "frontend/application/lib/data/provinces.ts", - "source_location": "L35", - "_origin": "ast", - "id": "frontend_application_lib_data_provinces_province_cities", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "province_cities" - }, - { - "label": "useCartStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L54", - "_origin": "ast", - "id": "frontend_application_lib_store_cartstore_usecartstore", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "usecartstore" - }, - { - "label": "usePetStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L65", - "_origin": "ast", - "id": "frontend_application_lib_store_usepetstore_usepetstore", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "usepetstore" + "community_name": "lib/services/api.ts", + "norm_label": "userstore.test.ts", + "id": "frontend_application_lib_store_tests_userstore_test" }, { "label": "userStore.ts", @@ -28224,10 +29469,10 @@ "source_file": "frontend/application/lib/store/userStore.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_lib_store_userstore", "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "userstore.ts" + "community_name": "lib/services/api.ts", + "norm_label": "userstore.ts", + "id": "frontend_application_lib_store_userstore" }, { "label": "useUserStore", @@ -28235,21 +29480,10 @@ "source_file": "frontend/application/lib/store/userStore.ts", "source_location": "L63", "_origin": "ast", - "id": "frontend_application_lib_store_userstore_useuserstore", "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "useuserstore" - }, - { - "label": "utils.ts", - "file_type": "code", - "source_file": "frontend/application/lib/utils.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_utils", - "community": 22, - "community_name": "UserDashboard.tsx", - "norm_label": "utils.ts" + "community_name": "lib/services/api.ts", + "norm_label": "useuserstore", + "id": "frontend_application_lib_store_userstore_useuserstore" }, { "label": "Input.tsx", @@ -28257,10 +29491,10 @@ "source_file": "frontend/admin-panel/src/components/ui/Input.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_input", "community": 220, "community_name": "Input.tsx", - "norm_label": "input.tsx" + "norm_label": "input.tsx", + "id": "frontend_admin_panel_src_components_ui_input" }, { "label": "Input", @@ -28268,10 +29502,10 @@ "source_file": "frontend/admin-panel/src/components/ui/Input.tsx", "source_location": "L9", "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_input_input", "community": 220, "community_name": "Input.tsx", - "norm_label": "input" + "norm_label": "input", + "id": "frontend_admin_panel_src_components_ui_input_input" }, { "label": "Textarea.tsx", @@ -28279,10 +29513,10 @@ "source_file": "frontend/admin-panel/src/components/ui/Textarea.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_textarea", "community": 221, "community_name": "Textarea.tsx", - "norm_label": "textarea.tsx" + "norm_label": "textarea.tsx", + "id": "frontend_admin_panel_src_components_ui_textarea" }, { "label": "Textarea", @@ -28290,10 +29524,10 @@ "source_file": "frontend/admin-panel/src/components/ui/Textarea.tsx", "source_location": "L7", "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_textarea_textarea", "community": 221, "community_name": "Textarea.tsx", - "norm_label": "textarea" + "norm_label": "textarea", + "id": "frontend_admin_panel_src_components_ui_textarea_textarea" }, { "label": "admin-panel/tsconfig.json", @@ -28301,10 +29535,10 @@ "source_file": "frontend/admin-panel/tsconfig.json", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_tsconfig", "community": 222, "community_name": "admin-panel/tsconfig.json", - "norm_label": "admin-panel/tsconfig.json" + "norm_label": "admin-panel/tsconfig.json", + "id": "frontend_admin_panel_tsconfig" }, { "label": "files", @@ -28312,10 +29546,10 @@ "source_file": "frontend/admin-panel/tsconfig.json", "source_location": "L2", "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_files", "community": 222, "community_name": "admin-panel/tsconfig.json", - "norm_label": "files" + "norm_label": "files", + "id": "frontend_admin_panel_tsconfig_files" }, { "label": "references", @@ -28323,32 +29557,10 @@ "source_file": "frontend/admin-panel/tsconfig.json", "source_location": "L3", "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_references", "community": 222, "community_name": "admin-panel/tsconfig.json", - "norm_label": "references" - }, - { - "label": "swagger-ui-express", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L45", - "_origin": "ast", - "id": "backend_package_dependencies_swagger_ui_express", - "community": 223, - "community_name": "swagger-ui-express", - "norm_label": "swagger-ui-express" - }, - { - "label": "swagger-ui-express", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L45", - "_origin": "ast", - "id": "swagger_ui_express", - "community": 223, - "community_name": "swagger-ui-express", - "norm_label": "swagger-ui-express" + "norm_label": "references", + "id": "frontend_admin_panel_tsconfig_references" }, { "label": "jest", @@ -28356,10 +29568,10 @@ "source_file": "backend/package.json", "source_location": "L67", "_origin": "ast", - "id": "backend_package_devdependencies_jest", "community": 224, "community_name": "jest", - "norm_label": "jest" + "norm_label": "jest", + "id": "backend_package_devdependencies_jest" }, { "label": "jest", @@ -28367,10 +29579,10 @@ "source_file": "backend/package.json", "source_location": "L67", "_origin": "ast", - "id": "jest", "community": 224, "community_name": "jest", - "norm_label": "jest" + "norm_label": "jest", + "id": "jest" }, { "label": "next.config.ts", @@ -28378,10 +29590,10 @@ "source_file": "frontend/application/next.config.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_next_config", "community": 225, "community_name": "next.config.ts", - "norm_label": "next.config.ts" + "norm_label": "next.config.ts", + "id": "frontend_application_next_config" }, { "label": "nextConfig", @@ -28389,10 +29601,10 @@ "source_file": "frontend/application/next.config.ts", "source_location": "L12", "_origin": "ast", - "id": "frontend_application_next_config_nextconfig", "community": 225, "community_name": "next.config.ts", - "norm_label": "nextconfig" + "norm_label": "nextconfig", + "id": "frontend_application_next_config_nextconfig" }, { "label": "securityHeaders", @@ -28400,10 +29612,10 @@ "source_file": "frontend/application/next.config.ts", "source_location": "L3", "_origin": "ast", - "id": "frontend_application_next_config_securityheaders", "community": 225, "community_name": "next.config.ts", - "norm_label": "securityheaders" + "norm_label": "securityheaders", + "id": "frontend_application_next_config_securityheaders" }, { "label": "AGENTS.md", @@ -28411,10 +29623,11 @@ "source_file": "AGENTS.md", "source_location": "L1", "_origin": "ast", - "id": "agents", "community": 227, "community_name": "AGENTS.md", - "norm_label": "agents.md" + "norm_label": "agents.md", + "node_kind": "page", + "id": "agents" }, { "label": "graphify", @@ -28422,10 +29635,11 @@ "source_file": "AGENTS.md", "source_location": "L1", "_origin": "ast", - "id": "agents_graphify", "community": 227, "community_name": "AGENTS.md", - "norm_label": "graphify" + "norm_label": "graphify", + "node_kind": "heading", + "id": "agents_graphify" }, { "label": "rules/graphify.md", @@ -28433,10 +29647,15 @@ "source_file": ".agents/rules/graphify.md", "source_location": "L1", "_origin": "ast", - "id": "agents_rules_graphify", "community": 228, "community_name": "rules/graphify.md", - "norm_label": "rules/graphify.md" + "norm_label": "rules/graphify.md", + "frontmatter": { + "trigger": "always_on", + "description": "Consult the graphify knowledge graph at graphify-out/ for codebase and architecture questions." + }, + "node_kind": "page", + "id": "agents_rules_graphify" }, { "label": "graphify", @@ -28444,10 +29663,11 @@ "source_file": ".agents/rules/graphify.md", "source_location": "L6", "_origin": "ast", - "id": "agents_rules_graphify_graphify", "community": 228, "community_name": "rules/graphify.md", - "norm_label": "graphify" + "norm_label": "graphify", + "node_kind": "heading", + "id": "agents_rules_graphify_graphify" }, { "label": ".agents/workflows/graphify.md", @@ -28455,10 +29675,15 @@ "source_file": ".agents/workflows/graphify.md", "source_location": "L1", "_origin": "ast", - "id": "agents_workflows_graphify", "community": 229, "community_name": ".agents/workflows/graphify.md", - "norm_label": ".agents/workflows/graphify.md" + "norm_label": ".agents/workflows/graphify.md", + "frontmatter": { + "name": "graphify", + "description": "Turn any folder of files into a navigable knowledge graph" + }, + "node_kind": "page", + "id": "agents_workflows_graphify" }, { "label": "Workflow: graphify", @@ -28466,10 +29691,11 @@ "source_file": ".agents/workflows/graphify.md", "source_location": "L6", "_origin": "ast", - "id": "agents_workflows_graphify_workflow_graphify", "community": 229, "community_name": ".agents/workflows/graphify.md", - "norm_label": "workflow: graphify" + "norm_label": "workflow: graphify", + "node_kind": "heading", + "id": "agents_workflows_graphify_workflow_graphify" }, { "label": "ApiBearerAuth", @@ -28477,10 +29703,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_menu_menu_controller_ts_apibearerauth", "community": 23, "community_name": "MenuService", - "norm_label": "apibearerauth" + "norm_label": "apibearerauth", + "id": "backend_src_menu_menu_controller_ts_apibearerauth" }, { "label": "ApiOperation", @@ -28488,10 +29714,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_menu_menu_controller_ts_apioperation", "community": 23, "community_name": "MenuService", - "norm_label": "apioperation" + "norm_label": "apioperation", + "id": "backend_src_menu_menu_controller_ts_apioperation" }, { "label": "ApiQuery", @@ -28499,10 +29725,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_menu_menu_controller_ts_apiquery", "community": 23, "community_name": "MenuService", - "norm_label": "apiquery" + "norm_label": "apiquery", + "id": "backend_src_menu_menu_controller_ts_apiquery" }, { "label": "ApiTags", @@ -28510,10 +29736,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_menu_menu_controller_ts_apitags", "community": 23, "community_name": "MenuService", - "norm_label": "apitags" + "norm_label": "apitags", + "id": "backend_src_menu_menu_controller_ts_apitags" }, { "label": "Body", @@ -28521,10 +29747,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_menu_menu_controller_ts_body", "community": 23, "community_name": "MenuService", - "norm_label": "body" + "norm_label": "body", + "id": "backend_src_menu_menu_controller_ts_body" }, { "label": "Controller", @@ -28532,10 +29758,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_menu_menu_controller_ts_controller", "community": 23, "community_name": "MenuService", - "norm_label": "controller" + "norm_label": "controller", + "id": "backend_src_menu_menu_controller_ts_controller" }, { "label": "Delete", @@ -28543,10 +29769,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_menu_menu_controller_ts_delete", "community": 23, "community_name": "MenuService", - "norm_label": "delete" + "norm_label": "delete", + "id": "backend_src_menu_menu_controller_ts_delete" }, { "label": "Get", @@ -28554,10 +29780,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_menu_menu_controller_ts_get", "community": 23, "community_name": "MenuService", - "norm_label": "get" + "norm_label": "get", + "id": "backend_src_menu_menu_controller_ts_get" }, { "label": "Param", @@ -28565,10 +29791,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_menu_menu_controller_ts_param", "community": 23, "community_name": "MenuService", - "norm_label": "param" + "norm_label": "param", + "id": "backend_src_menu_menu_controller_ts_param" }, { "label": "Post", @@ -28576,10 +29802,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_menu_menu_controller_ts_post", "community": 23, "community_name": "MenuService", - "norm_label": "post" + "norm_label": "post", + "id": "backend_src_menu_menu_controller_ts_post" }, { "label": "Put", @@ -28587,10 +29813,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_menu_menu_controller_ts_put", "community": 23, "community_name": "MenuService", - "norm_label": "put" + "norm_label": "put", + "id": "backend_src_menu_menu_controller_ts_put" }, { "label": "Query", @@ -28598,10 +29824,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_menu_menu_controller_ts_query", "community": 23, "community_name": "MenuService", - "norm_label": "query" + "norm_label": "query", + "id": "backend_src_menu_menu_controller_ts_query" }, { "label": "UseGuards", @@ -28609,10 +29835,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_menu_menu_controller_ts_useguards", "community": 23, "community_name": "MenuService", - "norm_label": "useguards" + "norm_label": "useguards", + "id": "backend_src_menu_menu_controller_ts_useguards" }, { "label": "Injectable", @@ -28620,10 +29846,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_menu_menu_service_ts_injectable", "community": 23, "community_name": "MenuService", - "norm_label": "injectable" + "norm_label": "injectable", + "id": "backend_src_menu_menu_service_ts_injectable" }, { "label": "instructions.md", @@ -28631,10 +29857,11 @@ "source_file": ".antigravity/instructions.md", "source_location": "L1", "_origin": "ast", - "id": "antigravity_instructions", "community": 230, "community_name": "instructions.md", - "norm_label": "instructions.md" + "norm_label": "instructions.md", + "node_kind": "page", + "id": "antigravity_instructions" }, { "label": "graphify", @@ -28642,32 +29869,11 @@ "source_file": ".antigravity/instructions.md", "source_location": "L1", "_origin": "ast", - "id": "antigravity_instructions_graphify", "community": 230, "community_name": "instructions.md", - "norm_label": "graphify" - }, - { - "label": "@eslint/eslintrc", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L48", - "_origin": "ast", - "id": "backend_package_devdependencies_eslint_eslintrc", - "community": 231, - "community_name": "@eslint/eslintrc", - "norm_label": "@eslint/eslintrc" - }, - { - "label": "@eslint/eslintrc", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L48", - "_origin": "ast", - "id": "eslint_eslintrc", - "community": 231, - "community_name": "@eslint/eslintrc", - "norm_label": "@eslint/eslintrc" + "norm_label": "graphify", + "node_kind": "heading", + "id": "antigravity_instructions_graphify" }, { "label": "@eslint/js", @@ -28675,10 +29881,10 @@ "source_file": "backend/package.json", "source_location": "L49", "_origin": "ast", - "id": "backend_package_devdependencies_eslint_js", "community": 232, "community_name": "@eslint/js", - "norm_label": "@eslint/js" + "norm_label": "@eslint/js", + "id": "backend_package_devdependencies_eslint_js" }, { "label": "@eslint/js", @@ -28686,32 +29892,10 @@ "source_file": "backend/package.json", "source_location": "L49", "_origin": "ast", - "id": "backend_package_json_eslint_js", "community": 232, "community_name": "@eslint/js", - "norm_label": "@eslint/js" - }, - { - "label": "eslint-plugin-prettier", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L65", - "_origin": "ast", - "id": "backend_package_devdependencies_eslint_plugin_prettier", - "community": 233, - "community_name": "eslint-plugin-prettier", - "norm_label": "eslint-plugin-prettier" - }, - { - "label": "eslint-plugin-prettier", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L65", - "_origin": "ast", - "id": "eslint_plugin_prettier", - "community": 233, - "community_name": "eslint-plugin-prettier", - "norm_label": "eslint-plugin-prettier" + "norm_label": "@eslint/js", + "id": "backend_package_json_eslint_js" }, { "label": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", @@ -28719,10 +29903,10 @@ "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "source_location": null, "_origin": "ast", - "id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration", "community": 234, "community_name": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", - "norm_label": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql" + "norm_label": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", + "id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration" }, { "label": "\"scientific_terms\"", @@ -28730,10 +29914,10 @@ "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "source_location": "L10", "_origin": "ast", - "id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_scientific_terms", "community": 234, "community_name": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", - "norm_label": "\"scientific_terms\"" + "norm_label": "\"scientific_terms\"", + "id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_scientific_terms" }, { "label": "\"ui_texts\"", @@ -28741,76 +29925,10 @@ "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", "source_location": "L2", "_origin": "ast", - "id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_ui_texts", "community": 234, "community_name": "20260526160916_add_ui_texts_and_scientific_terms/migration.sql", - "norm_label": "\"ui_texts\"" - }, - { - "label": "@nestjs/cli", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L50", - "_origin": "ast", - "id": "backend_package_devdependencies_nestjs_cli", - "community": 235, - "community_name": "@nestjs/cli", - "norm_label": "@nestjs/cli" - }, - { - "label": "@nestjs/cli", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L50", - "_origin": "ast", - "id": "nestjs_cli", - "community": 235, - "community_name": "@nestjs/cli", - "norm_label": "@nestjs/cli" - }, - { - "label": "@nestjs/testing", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L52", - "_origin": "ast", - "id": "backend_package_devdependencies_nestjs_testing", - "community": 236, - "community_name": "@nestjs/testing", - "norm_label": "@nestjs/testing" - }, - { - "label": "@nestjs/testing", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L52", - "_origin": "ast", - "id": "nestjs_testing", - "community": 236, - "community_name": "@nestjs/testing", - "norm_label": "@nestjs/testing" - }, - { - "label": "eslint", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L63", - "_origin": "ast", - "id": "backend_package_devdependencies_eslint", - "community": 237, - "community_name": "eslint", - "norm_label": "eslint" - }, - { - "label": "eslint", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L63", - "_origin": "ast", - "id": "backend_package_json_eslint", - "community": 237, - "community_name": "eslint", - "norm_label": "eslint" + "norm_label": "\"ui_texts\"", + "id": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_ui_texts" }, { "label": "prisma", @@ -28818,10 +29936,10 @@ "source_file": "backend/package.json", "source_location": "L69", "_origin": "ast", - "id": "backend_package_devdependencies_prisma", "community": 238, "community_name": "prisma", - "norm_label": "prisma" + "norm_label": "prisma", + "id": "backend_package_devdependencies_prisma" }, { "label": "prisma", @@ -28829,10 +29947,10 @@ "source_file": "backend/package.json", "source_location": "L69", "_origin": "ast", - "id": "prisma", "community": 238, "community_name": "prisma", - "norm_label": "prisma" + "norm_label": "prisma", + "id": "prisma" }, { "label": "source-map-support", @@ -28840,10 +29958,10 @@ "source_file": "backend/package.json", "source_location": "L70", "_origin": "ast", - "id": "backend_package_devdependencies_source_map_support", "community": 239, "community_name": "source-map-support", - "norm_label": "source-map-support" + "norm_label": "source-map-support", + "id": "backend_package_devdependencies_source_map_support" }, { "label": "source-map-support", @@ -28851,10 +29969,10 @@ "source_file": "backend/package.json", "source_location": "L70", "_origin": "ast", - "id": "source_map_support", "community": 239, "community_name": "source-map-support", - "norm_label": "source-map-support" + "norm_label": "source-map-support", + "id": "source_map_support" }, { "label": "07-backend-audit.md", @@ -28862,10 +29980,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_07_backend_audit", "community": 24, "community_name": "BE-001", - "norm_label": "07-backend-audit.md" + "norm_label": "07-backend-audit.md", + "node_kind": "page", + "id": "docs_audit_07_backend_audit" }, { "label": "Acceptance Criteria", @@ -28873,10 +29992,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L113", "_origin": "ast", - "id": "docs_audit_07_backend_audit_acceptance_criteria", "community": 24, "community_name": "BE-001", - "norm_label": "acceptance criteria" + "norm_label": "acceptance criteria", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_acceptance_criteria" }, { "label": "Affected Application", @@ -28884,10 +30004,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L53", "_origin": "ast", - "id": "docs_audit_07_backend_audit_affected_application", "community": 24, "community_name": "BE-001", - "norm_label": "affected application" + "norm_label": "affected application", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_affected_application" }, { "label": "Affected Files", @@ -28895,10 +30016,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L56", "_origin": "ast", - "id": "docs_audit_07_backend_audit_affected_files", "community": 24, "community_name": "BE-001", - "norm_label": "affected files" + "norm_label": "affected files", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_affected_files" }, { "label": "Alternative Direction", @@ -28906,10 +30028,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L95", "_origin": "ast", - "id": "docs_audit_07_backend_audit_alternative_direction", "community": 24, "community_name": "BE-001", - "norm_label": "alternative direction" + "norm_label": "alternative direction", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_alternative_direction" }, { "label": "BE-001", @@ -28917,10 +30040,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L33", "_origin": "ast", - "id": "docs_audit_07_backend_audit_be_001", "community": 24, "community_name": "BE-001", - "norm_label": "be-001" + "norm_label": "be-001", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_be_001" }, { "label": "Category", @@ -28928,10 +30052,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L41", "_origin": "ast", - "id": "docs_audit_07_backend_audit_category", "community": 24, "community_name": "BE-001", - "norm_label": "category" + "norm_label": "category", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_category" }, { "label": "Completion Statement", @@ -28939,10 +30064,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L133", "_origin": "ast", - "id": "docs_audit_07_backend_audit_completion_statement", "community": 24, "community_name": "BE-001", - "norm_label": "completion statement" + "norm_label": "completion statement", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_completion_statement" }, { "label": "Confidence", @@ -28950,10 +30076,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L47", "_origin": "ast", - "id": "docs_audit_07_backend_audit_confidence", "community": 24, "community_name": "BE-001", - "norm_label": "confidence" + "norm_label": "confidence", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_confidence" }, { "label": "Dependencies", @@ -28961,10 +30088,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L101", "_origin": "ast", - "id": "docs_audit_07_backend_audit_dependencies", "community": 24, "community_name": "BE-001", - "norm_label": "dependencies" + "norm_label": "dependencies", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_dependencies" }, { "label": "Domain", @@ -28972,10 +30100,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L38", "_origin": "ast", - "id": "docs_audit_07_backend_audit_domain", "community": 24, "community_name": "BE-001", - "norm_label": "domain" + "norm_label": "domain", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_domain" }, { "label": "Domain Overview & Confirmed Strengths", @@ -28983,10 +30112,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L15", "_origin": "ast", - "id": "docs_audit_07_backend_audit_domain_overview_confirmed_strengths", "community": 24, "community_name": "BE-001", - "norm_label": "domain overview & confirmed strengths" + "norm_label": "domain overview & confirmed strengths", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_domain_overview_confirmed_strengths" }, { "label": "Evaluation of 6 Existing TypeScript Compiler Diagnostics", @@ -28994,10 +30124,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L21", "_origin": "ast", - "id": "docs_audit_07_backend_audit_evaluation_of_6_existing_typescript_compiler_diagnostics", "community": 24, "community_name": "BE-001", - "norm_label": "evaluation of 6 existing typescript compiler diagnostics" + "norm_label": "evaluation of 6 existing typescript compiler diagnostics", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_evaluation_of_6_existing_typescript_compiler_diagnostics" }, { "label": "Evidence", @@ -29005,10 +30136,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L62", "_origin": "ast", - "id": "docs_audit_07_backend_audit_evidence", "community": 24, "community_name": "BE-001", - "norm_label": "evidence" + "norm_label": "evidence", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_evidence" }, { "label": "Finding Summary", @@ -29016,10 +30148,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L121", "_origin": "ast", - "id": "docs_audit_07_backend_audit_finding_summary", "community": 24, "community_name": "BE-001", - "norm_label": "finding summary" + "norm_label": "finding summary", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_finding_summary" }, { "label": "Findings", @@ -29027,10 +30160,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L31", "_origin": "ast", - "id": "docs_audit_07_backend_audit_findings", "community": 24, "community_name": "BE-001", - "norm_label": "findings" + "norm_label": "findings", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_findings" }, { "label": "Implementation Complexity", @@ -29038,10 +30172,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L98", "_origin": "ast", - "id": "docs_audit_07_backend_audit_implementation_complexity", "community": 24, "community_name": "BE-001", - "norm_label": "implementation complexity" + "norm_label": "implementation complexity", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_implementation_complexity" }, { "label": "NestJS Backend Audit Report", @@ -29049,10 +30184,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_07_backend_audit_nestjs_backend_audit_report", "community": 24, "community_name": "BE-001", - "norm_label": "nestjs backend audit report" + "norm_label": "nestjs backend audit report", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_nestjs_backend_audit_report" }, { "label": "Notes and Limitations", @@ -29060,10 +30196,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L116", "_origin": "ast", - "id": "docs_audit_07_backend_audit_notes_and_limitations", "community": 24, "community_name": "BE-001", - "norm_label": "notes and limitations" + "norm_label": "notes and limitations", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_notes_and_limitations" }, { "label": "Problem", @@ -29071,10 +30208,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L73", "_origin": "ast", - "id": "docs_audit_07_backend_audit_problem", "community": 24, "community_name": "BE-001", - "norm_label": "problem" + "norm_label": "problem", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_problem" }, { "label": "Recommended Direction", @@ -29082,10 +30220,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L92", "_origin": "ast", - "id": "docs_audit_07_backend_audit_recommended_direction", "community": 24, "community_name": "BE-001", - "norm_label": "recommended direction" + "norm_label": "recommended direction", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_recommended_direction" }, { "label": "Relevant Symbols or Lines", @@ -29093,10 +30232,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L59", "_origin": "ast", - "id": "docs_audit_07_backend_audit_relevant_symbols_or_lines", "community": 24, "community_name": "BE-001", - "norm_label": "relevant symbols or lines" + "norm_label": "relevant symbols or lines", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_relevant_symbols_or_lines" }, { "label": "Risks", @@ -29104,10 +30244,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L104", "_origin": "ast", - "id": "docs_audit_07_backend_audit_risks", "community": 24, "community_name": "BE-001", - "norm_label": "risks" + "norm_label": "risks", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_risks" }, { "label": "Root Cause", @@ -29115,10 +30256,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L77", "_origin": "ast", - "id": "docs_audit_07_backend_audit_root_cause", "community": 24, "community_name": "BE-001", - "norm_label": "root cause" + "norm_label": "root cause", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_root_cause" }, { "label": "Security or Data-Integrity Impact", @@ -29126,10 +30268,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L89", "_origin": "ast", - "id": "docs_audit_07_backend_audit_security_or_data_integrity_impact", "community": 24, "community_name": "BE-001", - "norm_label": "security or data-integrity impact" + "norm_label": "security or data-integrity impact", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_security_or_data_integrity_impact" }, { "label": "Severity", @@ -29137,10 +30280,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L44", "_origin": "ast", - "id": "docs_audit_07_backend_audit_severity", "community": 24, "community_name": "BE-001", - "norm_label": "severity" + "norm_label": "severity", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_severity" }, { "label": "Status", @@ -29148,10 +30292,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L50", "_origin": "ast", - "id": "docs_audit_07_backend_audit_status", "community": 24, "community_name": "BE-001", - "norm_label": "status" + "norm_label": "status", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_status" }, { "label": "Technical Impact", @@ -29159,10 +30304,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L86", "_origin": "ast", - "id": "docs_audit_07_backend_audit_technical_impact", "community": 24, "community_name": "BE-001", - "norm_label": "technical impact" + "norm_label": "technical impact", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_technical_impact" }, { "label": "Testing Requirements", @@ -29170,10 +30316,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L110", "_origin": "ast", - "id": "docs_audit_07_backend_audit_testing_requirements", "community": 24, "community_name": "BE-001", - "norm_label": "testing requirements" + "norm_label": "testing requirements", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_testing_requirements" }, { "label": "Title", @@ -29181,10 +30328,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L35", "_origin": "ast", - "id": "docs_audit_07_backend_audit_title", "community": 24, "community_name": "BE-001", - "norm_label": "title" + "norm_label": "title", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_title" }, { "label": "User or Business Impact", @@ -29192,10 +30340,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L83", "_origin": "ast", - "id": "docs_audit_07_backend_audit_user_or_business_impact", "community": 24, "community_name": "BE-001", - "norm_label": "user or business impact" + "norm_label": "user or business impact", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_user_or_business_impact" }, { "label": "Verification Requirements", @@ -29203,10 +30352,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L107", "_origin": "ast", - "id": "docs_audit_07_backend_audit_verification_requirements", "community": 24, "community_name": "BE-001", - "norm_label": "verification requirements" + "norm_label": "verification requirements", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_verification_requirements" }, { "label": "Why It Matters", @@ -29214,10 +30364,11 @@ "source_file": "docs/audit/07-backend-audit.md", "source_location": "L80", "_origin": "ast", - "id": "docs_audit_07_backend_audit_why_it_matters", "community": 24, "community_name": "BE-001", - "norm_label": "why it matters" + "norm_label": "why it matters", + "node_kind": "heading", + "id": "docs_audit_07_backend_audit_why_it_matters" }, { "label": "supertest", @@ -29225,10 +30376,10 @@ "source_file": "backend/package.json", "source_location": "L71", "_origin": "ast", - "id": "backend_package_devdependencies_supertest", "community": 240, "community_name": "supertest", - "norm_label": "supertest" + "norm_label": "supertest", + "id": "backend_package_devdependencies_supertest" }, { "label": "supertest", @@ -29236,10 +30387,10 @@ "source_file": "backend/package.json", "source_location": "L71", "_origin": "ast", - "id": "supertest", "community": 240, "community_name": "supertest", - "norm_label": "supertest" + "norm_label": "supertest", + "id": "supertest" }, { "label": "blog.entity.ts", @@ -29247,10 +30398,10 @@ "source_file": "backend/src/blogs/entities/blog.entity.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_blogs_entities_blog_entity", "community": 241, "community_name": "blog.entity.ts", - "norm_label": "blog.entity.ts" + "norm_label": "blog.entity.ts", + "id": "backend_src_blogs_entities_blog_entity" }, { "label": "home.entity.ts", @@ -29258,10 +30409,10 @@ "source_file": "backend/src/home/entities/home.entity.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_home_entities_home_entity", "community": 242, "community_name": "home.entity.ts", - "norm_label": "home.entity.ts" + "norm_label": "home.entity.ts", + "id": "backend_src_home_entities_home_entity" }, { "label": "wiki.entity.ts", @@ -29269,10 +30420,10 @@ "source_file": "backend/src/wiki/entities/wiki.entity.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_wiki_entities_wiki_entity", "community": 243, "community_name": "wiki.entity.ts", - "norm_label": "wiki.entity.ts" + "norm_label": "wiki.entity.ts", + "id": "backend_src_wiki_entities_wiki_entity" }, { "label": "CLAUDE.md", @@ -29280,10 +30431,11 @@ "source_file": "CLAUDE.md", "source_location": "L1", "_origin": "ast", - "id": "claude", "community": 245, "community_name": "CLAUDE.md", - "norm_label": "claude.md" + "norm_label": "claude.md", + "node_kind": "page", + "id": "claude" }, { "label": "graphify", @@ -29291,10 +30443,11 @@ "source_file": "CLAUDE.md", "source_location": "L1", "_origin": "ast", - "id": "claude_graphify", "community": 245, "community_name": "CLAUDE.md", - "norm_label": "graphify" + "norm_label": "graphify", + "node_kind": "heading", + "id": "claude_graphify" }, { "label": ".claude/CLAUDE.md", @@ -29302,10 +30455,11 @@ "source_file": ".claude/CLAUDE.md", "source_location": "L1", "_origin": "ast", - "id": "claude_claude", "community": 246, "community_name": ".claude/CLAUDE.md", - "norm_label": ".claude/claude.md" + "norm_label": ".claude/claude.md", + "node_kind": "page", + "id": "claude_claude" }, { "label": "graphify", @@ -29313,10 +30467,11 @@ "source_file": ".claude/CLAUDE.md", "source_location": "L1", "_origin": "ast", - "id": "claude_claude_graphify", "community": 246, "community_name": ".claude/CLAUDE.md", - "norm_label": "graphify" + "norm_label": "graphify", + "node_kind": "heading", + "id": "claude_claude_graphify" }, { "label": "extraction-spec.md", @@ -29324,10 +30479,11 @@ "source_file": ".claude/skills/graphify/references/extraction-spec.md", "source_location": "L1", "_origin": "ast", - "id": "claude_skills_graphify_references_extraction_spec", "community": 247, "community_name": "extraction-spec.md", - "norm_label": "extraction-spec.md" + "norm_label": "extraction-spec.md", + "node_kind": "page", + "id": "claude_skills_graphify_references_extraction_spec" }, { "label": "graphify reference: extraction subagent prompt", @@ -29335,10 +30491,11 @@ "source_file": ".claude/skills/graphify/references/extraction-spec.md", "source_location": "L1", "_origin": "ast", - "id": "claude_skills_graphify_references_extraction_spec_graphify_reference_extraction_subagent_prompt", "community": 247, "community_name": "extraction-spec.md", - "norm_label": "graphify reference: extraction subagent prompt" + "norm_label": "graphify reference: extraction subagent prompt", + "node_kind": "heading", + "id": "claude_skills_graphify_references_extraction_spec_graphify_reference_extraction_subagent_prompt" }, { "label": "06-storefront-audit.md", @@ -29346,10 +30503,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_06_storefront_audit", "community": 25, "community_name": "FE-001", - "norm_label": "06-storefront-audit.md" + "norm_label": "06-storefront-audit.md", + "node_kind": "page", + "id": "docs_audit_06_storefront_audit" }, { "label": "Acceptance Criteria", @@ -29357,10 +30515,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L96", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_acceptance_criteria", "community": 25, "community_name": "FE-001", - "norm_label": "acceptance criteria" + "norm_label": "acceptance criteria", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_acceptance_criteria" }, { "label": "Affected Application", @@ -29368,10 +30527,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L44", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_affected_application", "community": 25, "community_name": "FE-001", - "norm_label": "affected application" + "norm_label": "affected application", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_affected_application" }, { "label": "Affected Files", @@ -29379,10 +30539,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L47", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_affected_files", "community": 25, "community_name": "FE-001", - "norm_label": "affected files" + "norm_label": "affected files", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_affected_files" }, { "label": "Alternative Direction", @@ -29390,10 +30551,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L78", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_alternative_direction", "community": 25, "community_name": "FE-001", - "norm_label": "alternative direction" + "norm_label": "alternative direction", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_alternative_direction" }, { "label": "Architecture Overview & Confirmed Strengths", @@ -29401,10 +30563,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L15", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_architecture_overview_confirmed_strengths", "community": 25, "community_name": "FE-001", - "norm_label": "architecture overview & confirmed strengths" + "norm_label": "architecture overview & confirmed strengths", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_architecture_overview_confirmed_strengths" }, { "label": "Category", @@ -29412,10 +30575,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L32", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_category", "community": 25, "community_name": "FE-001", - "norm_label": "category" + "norm_label": "category", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_category" }, { "label": "Completion Statement", @@ -29423,10 +30587,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L116", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_completion_statement", "community": 25, "community_name": "FE-001", - "norm_label": "completion statement" + "norm_label": "completion statement", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_completion_statement" }, { "label": "Confidence", @@ -29434,10 +30599,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L38", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_confidence", "community": 25, "community_name": "FE-001", - "norm_label": "confidence" + "norm_label": "confidence", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_confidence" }, { "label": "Dependencies", @@ -29445,10 +30611,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L84", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_dependencies", "community": 25, "community_name": "FE-001", - "norm_label": "dependencies" + "norm_label": "dependencies", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_dependencies" }, { "label": "Domain", @@ -29456,10 +30623,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L29", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_domain", "community": 25, "community_name": "FE-001", - "norm_label": "domain" + "norm_label": "domain", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_domain" }, { "label": "Evidence", @@ -29467,10 +30635,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L54", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_evidence", "community": 25, "community_name": "FE-001", - "norm_label": "evidence" + "norm_label": "evidence", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_evidence" }, { "label": "FE-001", @@ -29478,10 +30647,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L24", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_fe_001", "community": 25, "community_name": "FE-001", - "norm_label": "fe-001" + "norm_label": "fe-001", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_fe_001" }, { "label": "Finding Summary", @@ -29489,10 +30659,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L104", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_finding_summary", "community": 25, "community_name": "FE-001", - "norm_label": "finding summary" + "norm_label": "finding summary", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_finding_summary" }, { "label": "Findings", @@ -29500,10 +30671,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L22", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_findings", "community": 25, "community_name": "FE-001", - "norm_label": "findings" + "norm_label": "findings", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_findings" }, { "label": "Implementation Complexity", @@ -29511,10 +30683,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L81", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_implementation_complexity", "community": 25, "community_name": "FE-001", - "norm_label": "implementation complexity" + "norm_label": "implementation complexity", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_implementation_complexity" }, { "label": "Notes and Limitations", @@ -29522,10 +30695,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L99", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_notes_and_limitations", "community": 25, "community_name": "FE-001", - "norm_label": "notes and limitations" + "norm_label": "notes and limitations", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_notes_and_limitations" }, { "label": "Problem", @@ -29533,10 +30707,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L57", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_problem", "community": 25, "community_name": "FE-001", - "norm_label": "problem" + "norm_label": "problem", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_problem" }, { "label": "React / Vite Storefront Audit Report", @@ -29544,10 +30719,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", "community": 25, "community_name": "FE-001", - "norm_label": "react / vite storefront audit report" + "norm_label": "react / vite storefront audit report", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report" }, { "label": "Recommended Direction", @@ -29555,10 +30731,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L75", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_recommended_direction", "community": 25, "community_name": "FE-001", - "norm_label": "recommended direction" + "norm_label": "recommended direction", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_recommended_direction" }, { "label": "Relevant Symbols or Lines", @@ -29566,10 +30743,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L51", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_relevant_symbols_or_lines", "community": 25, "community_name": "FE-001", - "norm_label": "relevant symbols or lines" + "norm_label": "relevant symbols or lines", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_relevant_symbols_or_lines" }, { "label": "Risks", @@ -29577,10 +30755,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L87", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_risks", "community": 25, "community_name": "FE-001", - "norm_label": "risks" + "norm_label": "risks", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_risks" }, { "label": "Root Cause", @@ -29588,10 +30767,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L60", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_root_cause", "community": 25, "community_name": "FE-001", - "norm_label": "root cause" + "norm_label": "root cause", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_root_cause" }, { "label": "Security or Data-Integrity Impact", @@ -29599,10 +30779,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L72", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_security_or_data_integrity_impact", "community": 25, "community_name": "FE-001", - "norm_label": "security or data-integrity impact" + "norm_label": "security or data-integrity impact", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_security_or_data_integrity_impact" }, { "label": "Severity", @@ -29610,10 +30791,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L35", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_severity", "community": 25, "community_name": "FE-001", - "norm_label": "severity" + "norm_label": "severity", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_severity" }, { "label": "Status", @@ -29621,10 +30803,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L41", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_status", "community": 25, "community_name": "FE-001", - "norm_label": "status" + "norm_label": "status", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_status" }, { "label": "Technical Impact", @@ -29632,10 +30815,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L69", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_technical_impact", "community": 25, "community_name": "FE-001", - "norm_label": "technical impact" + "norm_label": "technical impact", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_technical_impact" }, { "label": "Testing Requirements", @@ -29643,10 +30827,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L93", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_testing_requirements", "community": 25, "community_name": "FE-001", - "norm_label": "testing requirements" + "norm_label": "testing requirements", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_testing_requirements" }, { "label": "Title", @@ -29654,10 +30839,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L26", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_title", "community": 25, "community_name": "FE-001", - "norm_label": "title" + "norm_label": "title", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_title" }, { "label": "User or Business Impact", @@ -29665,10 +30851,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L66", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_user_or_business_impact", "community": 25, "community_name": "FE-001", - "norm_label": "user or business impact" + "norm_label": "user or business impact", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_user_or_business_impact" }, { "label": "Verification Requirements", @@ -29676,10 +30863,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L90", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_verification_requirements", "community": 25, "community_name": "FE-001", - "norm_label": "verification requirements" + "norm_label": "verification requirements", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_verification_requirements" }, { "label": "Why It Matters", @@ -29687,10 +30875,11 @@ "source_file": "docs/audit/06-storefront-audit.md", "source_location": "L63", "_origin": "ast", - "id": "docs_audit_06_storefront_audit_why_it_matters", "community": 25, "community_name": "FE-001", - "norm_label": "why it matters" + "norm_label": "why it matters", + "node_kind": "heading", + "id": "docs_audit_06_storefront_audit_why_it_matters" }, { "label": "robots.ts", @@ -29698,10 +30887,10 @@ "source_file": "frontend/application/app/robots.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_robots", "community": 253, "community_name": "robots.ts", - "norm_label": "robots.ts" + "norm_label": "robots.ts", + "id": "frontend_application_app_robots" }, { "label": "application/eslint.config.mjs", @@ -29709,10 +30898,10 @@ "source_file": "frontend/application/eslint.config.mjs", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_eslint_config", "community": 254, "community_name": "application/eslint.config.mjs", - "norm_label": "application/eslint.config.mjs" + "norm_label": "application/eslint.config.mjs", + "id": "frontend_application_eslint_config" }, { "label": "eslintConfig", @@ -29720,10 +30909,10 @@ "source_file": "frontend/application/eslint.config.mjs", "source_location": "L5", "_origin": "ast", - "id": "frontend_application_eslint_config_eslintconfig", "community": 254, "community_name": "application/eslint.config.mjs", - "norm_label": "eslintconfig" + "norm_label": "eslintconfig", + "id": "frontend_application_eslint_config_eslintconfig" }, { "label": "postcss.config.mjs", @@ -29731,10 +30920,10 @@ "source_file": "frontend/application/postcss.config.mjs", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_postcss_config", "community": 255, "community_name": "postcss.config.mjs", - "norm_label": "postcss.config.mjs" + "norm_label": "postcss.config.mjs", + "id": "frontend_application_postcss_config" }, { "label": "config", @@ -29742,10 +30931,10 @@ "source_file": "frontend/application/postcss.config.mjs", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_postcss_config_config", "community": 255, "community_name": "postcss.config.mjs", - "norm_label": "config" + "norm_label": "config", + "id": "frontend_application_postcss_config_config" }, { "label": "vitest.setup.ts", @@ -29753,10 +30942,10 @@ "source_file": "frontend/application/vitest.setup.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_vitest_setup", "community": 256, "community_name": "vitest.setup.ts", - "norm_label": "vitest.setup.ts" + "norm_label": "vitest.setup.ts", + "id": "frontend_application_vitest_setup" }, { "label": "backup_db.sh", @@ -29768,10 +30957,10 @@ "kind": "file" }, "_origin": "ast", - "id": "scripts_backup_db", "community": 257, "community_name": "backup_db.sh", - "norm_label": "backup_db.sh" + "norm_label": "backup_db.sh", + "id": "scripts_backup_db" }, { "label": "backup_db.sh script", @@ -29783,10 +30972,10 @@ "kind": "bash_entrypoint" }, "_origin": "ast", - "id": "scripts_backup_db_sh__entry", "community": 257, "community_name": "backup_db.sh", - "norm_label": "backup_db.sh script" + "norm_label": "backup_db.sh script", + "id": "scripts_backup_db_sh__entry" }, { "label": "start.sh", @@ -29798,10 +30987,10 @@ "kind": "file" }, "_origin": "ast", - "id": "start", "community": 258, "community_name": "start.sh", - "norm_label": "start.sh" + "norm_label": "start.sh", + "id": "start" }, { "label": "start.sh script", @@ -29813,10 +31002,10 @@ "kind": "bash_entrypoint" }, "_origin": "ast", - "id": "start_sh__entry", "community": 258, "community_name": "start.sh", - "norm_label": "start.sh script" + "norm_label": "start.sh script", + "id": "start_sh__entry" }, { "label": "reviews/README.md", @@ -29824,10 +31013,11 @@ "source_file": ".ai_agency/specs/reviews/README.md", "source_location": "L1", "_origin": "ast", - "id": "ai_agency_specs_reviews_readme", "community": 259, "community_name": "reviews/README.md", - "norm_label": "reviews/readme.md" + "norm_label": "reviews/readme.md", + "node_kind": "page", + "id": "ai_agency_specs_reviews_readme" }, { "label": "08-admin-features-audit.md", @@ -29835,10 +31025,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit", "community": 26, "community_name": "ADM-001", - "norm_label": "08-admin-features-audit.md" + "norm_label": "08-admin-features-audit.md", + "node_kind": "page", + "id": "docs_audit_08_admin_features_audit" }, { "label": "Acceptance Criteria", @@ -29846,10 +31037,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L101", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_acceptance_criteria", "community": 26, "community_name": "ADM-001", - "norm_label": "acceptance criteria" + "norm_label": "acceptance criteria", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_acceptance_criteria" }, { "label": "ADM-001", @@ -29857,10 +31049,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L23", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_adm_001", "community": 26, "community_name": "ADM-001", - "norm_label": "adm-001" + "norm_label": "adm-001", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_adm_001" }, { "label": "Admin Features Audit Report", @@ -29868,10 +31061,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_admin_features_audit_report", "community": 26, "community_name": "ADM-001", - "norm_label": "admin features audit report" + "norm_label": "admin features audit report", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_admin_features_audit_report" }, { "label": "Affected Application", @@ -29879,10 +31073,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L43", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_affected_application", "community": 26, "community_name": "ADM-001", - "norm_label": "affected application" + "norm_label": "affected application", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_affected_application" }, { "label": "Affected Files", @@ -29890,10 +31085,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L46", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_affected_files", "community": 26, "community_name": "ADM-001", - "norm_label": "affected files" + "norm_label": "affected files", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_affected_files" }, { "label": "Alternative Direction", @@ -29901,10 +31097,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L83", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_alternative_direction", "community": 26, "community_name": "ADM-001", - "norm_label": "alternative direction" + "norm_label": "alternative direction", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_alternative_direction" }, { "label": "Category", @@ -29912,10 +31109,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L31", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_category", "community": 26, "community_name": "ADM-001", - "norm_label": "category" + "norm_label": "category", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_category" }, { "label": "Completion Statement", @@ -29923,10 +31121,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L121", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_completion_statement", "community": 26, "community_name": "ADM-001", - "norm_label": "completion statement" + "norm_label": "completion statement", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_completion_statement" }, { "label": "Confidence", @@ -29934,10 +31133,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L37", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_confidence", "community": 26, "community_name": "ADM-001", - "norm_label": "confidence" + "norm_label": "confidence", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_confidence" }, { "label": "Dependencies", @@ -29945,10 +31145,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L89", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_dependencies", "community": 26, "community_name": "ADM-001", - "norm_label": "dependencies" + "norm_label": "dependencies", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_dependencies" }, { "label": "Domain", @@ -29956,10 +31157,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L28", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_domain", "community": 26, "community_name": "ADM-001", - "norm_label": "domain" + "norm_label": "domain", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_domain" }, { "label": "Domain Overview & Confirmed Strengths", @@ -29967,10 +31169,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L15", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_domain_overview_confirmed_strengths", "community": 26, "community_name": "ADM-001", - "norm_label": "domain overview & confirmed strengths" + "norm_label": "domain overview & confirmed strengths", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_domain_overview_confirmed_strengths" }, { "label": "Evidence", @@ -29978,10 +31181,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L53", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_evidence", "community": 26, "community_name": "ADM-001", - "norm_label": "evidence" + "norm_label": "evidence", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_evidence" }, { "label": "Finding Summary", @@ -29989,10 +31193,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L109", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_finding_summary", "community": 26, "community_name": "ADM-001", - "norm_label": "finding summary" + "norm_label": "finding summary", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_finding_summary" }, { "label": "Findings", @@ -30000,10 +31205,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L21", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_findings", "community": 26, "community_name": "ADM-001", - "norm_label": "findings" + "norm_label": "findings", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_findings" }, { "label": "Implementation Complexity", @@ -30011,10 +31217,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L86", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_implementation_complexity", "community": 26, "community_name": "ADM-001", - "norm_label": "implementation complexity" + "norm_label": "implementation complexity", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_implementation_complexity" }, { "label": "Notes and Limitations", @@ -30022,10 +31229,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L104", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_notes_and_limitations", "community": 26, "community_name": "ADM-001", - "norm_label": "notes and limitations" + "norm_label": "notes and limitations", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_notes_and_limitations" }, { "label": "Problem", @@ -30033,10 +31241,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L62", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_problem", "community": 26, "community_name": "ADM-001", - "norm_label": "problem" + "norm_label": "problem", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_problem" }, { "label": "Recommended Direction", @@ -30044,10 +31253,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L80", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_recommended_direction", "community": 26, "community_name": "ADM-001", - "norm_label": "recommended direction" + "norm_label": "recommended direction", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_recommended_direction" }, { "label": "Relevant Symbols or Lines", @@ -30055,10 +31265,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L49", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_relevant_symbols_or_lines", "community": 26, "community_name": "ADM-001", - "norm_label": "relevant symbols or lines" + "norm_label": "relevant symbols or lines", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_relevant_symbols_or_lines" }, { "label": "Risks", @@ -30066,10 +31277,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L92", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_risks", "community": 26, "community_name": "ADM-001", - "norm_label": "risks" + "norm_label": "risks", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_risks" }, { "label": "Root Cause", @@ -30077,10 +31289,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L65", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_root_cause", "community": 26, "community_name": "ADM-001", - "norm_label": "root cause" + "norm_label": "root cause", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_root_cause" }, { "label": "Security or Data-Integrity Impact", @@ -30088,10 +31301,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L77", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_security_or_data_integrity_impact", "community": 26, "community_name": "ADM-001", - "norm_label": "security or data-integrity impact" + "norm_label": "security or data-integrity impact", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_security_or_data_integrity_impact" }, { "label": "Severity", @@ -30099,10 +31313,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L34", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_severity", "community": 26, "community_name": "ADM-001", - "norm_label": "severity" + "norm_label": "severity", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_severity" }, { "label": "Status", @@ -30110,10 +31325,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L40", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_status", "community": 26, "community_name": "ADM-001", - "norm_label": "status" + "norm_label": "status", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_status" }, { "label": "Technical Impact", @@ -30121,10 +31337,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L74", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_technical_impact", "community": 26, "community_name": "ADM-001", - "norm_label": "technical impact" + "norm_label": "technical impact", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_technical_impact" }, { "label": "Testing Requirements", @@ -30132,10 +31349,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L98", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_testing_requirements", "community": 26, "community_name": "ADM-001", - "norm_label": "testing requirements" + "norm_label": "testing requirements", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_testing_requirements" }, { "label": "Title", @@ -30143,10 +31361,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L25", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_title", "community": 26, "community_name": "ADM-001", - "norm_label": "title" + "norm_label": "title", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_title" }, { "label": "User or Business Impact", @@ -30154,10 +31373,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L71", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_user_or_business_impact", "community": 26, "community_name": "ADM-001", - "norm_label": "user or business impact" + "norm_label": "user or business impact", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_user_or_business_impact" }, { "label": "Verification Requirements", @@ -30165,10 +31385,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L95", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_verification_requirements", "community": 26, "community_name": "ADM-001", - "norm_label": "verification requirements" + "norm_label": "verification requirements", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_verification_requirements" }, { "label": "Why It Matters", @@ -30176,10 +31397,11 @@ "source_file": "docs/audit/08-admin-features-audit.md", "source_location": "L68", "_origin": "ast", - "id": "docs_audit_08_admin_features_audit_why_it_matters", "community": 26, "community_name": "ADM-001", - "norm_label": "why it matters" + "norm_label": "why it matters", + "node_kind": "heading", + "id": "docs_audit_08_admin_features_audit_why_it_matters" }, { "label": "backend/eslint.config.mjs", @@ -30187,10 +31409,10 @@ "source_file": "backend/eslint.config.mjs", "source_location": "L1", "_origin": "ast", - "id": "backend_eslint_config", "community": 260, "community_name": "backend/eslint.config.mjs", - "norm_label": "backend/eslint.config.mjs" + "norm_label": "backend/eslint.config.mjs", + "id": "backend_eslint_config" }, { "label": "generate-openapi.d.ts", @@ -30198,10 +31420,10 @@ "source_file": "backend/scripts/generate-openapi.d.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_scripts_generate_openapi_d", "community": 263, "community_name": "generate-openapi.d.ts", - "norm_label": "generate-openapi.d.ts" + "norm_label": "generate-openapi.d.ts", + "id": "backend_scripts_generate_openapi_d" }, { "label": "ts-loader", @@ -30209,10 +31431,10 @@ "source_file": "backend/package.json", "source_location": "L73", "_origin": "ast", - "id": "backend_package_devdependencies_ts_loader", "community": 264, "community_name": "ts-loader", - "norm_label": "ts-loader" + "norm_label": "ts-loader", + "id": "backend_package_devdependencies_ts_loader" }, { "label": "ts-loader", @@ -30220,10 +31442,10 @@ "source_file": "backend/package.json", "source_location": "L73", "_origin": "ast", - "id": "ts_loader", "community": 264, "community_name": "ts-loader", - "norm_label": "ts-loader" + "norm_label": "ts-loader", + "id": "ts_loader" }, { "label": "@testing-library/jest-dom", @@ -30231,10 +31453,10 @@ "source_file": "frontend/application/package.json", "source_location": "L23", "_origin": "ast", - "id": "frontend_application_package_devdependencies_testing_library_jest_dom", "community": 265, "community_name": "@testing-library/jest-dom", - "norm_label": "@testing-library/jest-dom" + "norm_label": "@testing-library/jest-dom", + "id": "frontend_application_package_devdependencies_testing_library_jest_dom" }, { "label": "@testing-library/jest-dom", @@ -30242,10 +31464,10 @@ "source_file": "frontend/application/package.json", "source_location": "L23", "_origin": "ast", - "id": "testing_library_jest_dom", "community": 265, "community_name": "@testing-library/jest-dom", - "norm_label": "@testing-library/jest-dom" + "norm_label": "@testing-library/jest-dom", + "id": "testing_library_jest_dom" }, { "label": "ts-node", @@ -30253,10 +31475,10 @@ "source_file": "backend/package.json", "source_location": "L74", "_origin": "ast", - "id": "backend_package_devdependencies_ts_node", "community": 266, "community_name": "ts-node", - "norm_label": "ts-node" + "norm_label": "ts-node", + "id": "backend_package_devdependencies_ts_node" }, { "label": "ts-node", @@ -30264,10 +31486,10 @@ "source_file": "backend/package.json", "source_location": "L74", "_origin": "ast", - "id": "ts_node", "community": 266, "community_name": "ts-node", - "norm_label": "ts-node" + "norm_label": "ts-node", + "id": "ts_node" }, { "label": "tsconfig-paths", @@ -30275,10 +31497,10 @@ "source_file": "backend/package.json", "source_location": "L75", "_origin": "ast", - "id": "backend_package_devdependencies_tsconfig_paths", "community": 267, "community_name": "tsconfig-paths", - "norm_label": "tsconfig-paths" + "norm_label": "tsconfig-paths", + "id": "backend_package_devdependencies_tsconfig_paths" }, { "label": "tsconfig-paths", @@ -30286,10 +31508,10 @@ "source_file": "backend/package.json", "source_location": "L75", "_origin": "ast", - "id": "tsconfig_paths", "community": 267, "community_name": "tsconfig-paths", - "norm_label": "tsconfig-paths" + "norm_label": "tsconfig-paths", + "id": "tsconfig_paths" }, { "label": "@types/bcrypt", @@ -30297,10 +31519,10 @@ "source_file": "backend/package.json", "source_location": "L53", "_origin": "ast", - "id": "backend_package_devdependencies_types_bcrypt", "community": 268, "community_name": "@types/bcrypt", - "norm_label": "@types/bcrypt" + "norm_label": "@types/bcrypt", + "id": "backend_package_devdependencies_types_bcrypt" }, { "label": "@types/bcrypt", @@ -30308,10 +31530,10 @@ "source_file": "backend/package.json", "source_location": "L53", "_origin": "ast", - "id": "types_bcrypt", "community": 268, "community_name": "@types/bcrypt", - "norm_label": "@types/bcrypt" + "norm_label": "@types/bcrypt", + "id": "types_bcrypt" }, { "label": "eslint-plugin-react-hooks", @@ -30319,10 +31541,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L33", "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks", "community": 269, "community_name": "eslint-plugin-react-hooks", - "norm_label": "eslint-plugin-react-hooks" + "norm_label": "eslint-plugin-react-hooks", + "id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks" }, { "label": "eslint-plugin-react-hooks", @@ -30330,10 +31552,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L33", "_origin": "ast", - "id": "eslint_plugin_react_hooks", "community": 269, "community_name": "eslint-plugin-react-hooks", - "norm_label": "eslint-plugin-react-hooks" + "norm_label": "eslint-plugin-react-hooks", + "id": "eslint_plugin_react_hooks" }, { "label": "09-database-audit.md", @@ -30341,10 +31563,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_09_database_audit", "community": 27, "community_name": "DB-001", - "norm_label": "09-database-audit.md" + "norm_label": "09-database-audit.md", + "node_kind": "page", + "id": "docs_audit_09_database_audit" }, { "label": "Acceptance Criteria", @@ -30352,10 +31575,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L103", "_origin": "ast", - "id": "docs_audit_09_database_audit_acceptance_criteria", "community": 27, "community_name": "DB-001", - "norm_label": "acceptance criteria" + "norm_label": "acceptance criteria", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_acceptance_criteria" }, { "label": "Affected Application", @@ -30363,10 +31587,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L43", "_origin": "ast", - "id": "docs_audit_09_database_audit_affected_application", "community": 27, "community_name": "DB-001", - "norm_label": "affected application" + "norm_label": "affected application", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_affected_application" }, { "label": "Affected Files", @@ -30374,10 +31599,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L46", "_origin": "ast", - "id": "docs_audit_09_database_audit_affected_files", "community": 27, "community_name": "DB-001", - "norm_label": "affected files" + "norm_label": "affected files", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_affected_files" }, { "label": "Alternative Direction", @@ -30385,10 +31611,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L85", "_origin": "ast", - "id": "docs_audit_09_database_audit_alternative_direction", "community": 27, "community_name": "DB-001", - "norm_label": "alternative direction" + "norm_label": "alternative direction", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_alternative_direction" }, { "label": "Category", @@ -30396,10 +31623,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L31", "_origin": "ast", - "id": "docs_audit_09_database_audit_category", "community": 27, "community_name": "DB-001", - "norm_label": "category" + "norm_label": "category", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_category" }, { "label": "Completion Statement", @@ -30407,10 +31635,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L123", "_origin": "ast", - "id": "docs_audit_09_database_audit_completion_statement", "community": 27, "community_name": "DB-001", - "norm_label": "completion statement" + "norm_label": "completion statement", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_completion_statement" }, { "label": "Confidence", @@ -30418,10 +31647,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L37", "_origin": "ast", - "id": "docs_audit_09_database_audit_confidence", "community": 27, "community_name": "DB-001", - "norm_label": "confidence" + "norm_label": "confidence", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_confidence" }, { "label": "Database and Data Integrity Audit Report", @@ -30429,10 +31659,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", "community": 27, "community_name": "DB-001", - "norm_label": "database and data integrity audit report" + "norm_label": "database and data integrity audit report", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_database_and_data_integrity_audit_report" }, { "label": "DB-001", @@ -30440,10 +31671,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L23", "_origin": "ast", - "id": "docs_audit_09_database_audit_db_001", "community": 27, "community_name": "DB-001", - "norm_label": "db-001" + "norm_label": "db-001", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_db_001" }, { "label": "Dependencies", @@ -30451,10 +31683,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L91", "_origin": "ast", - "id": "docs_audit_09_database_audit_dependencies", "community": 27, "community_name": "DB-001", - "norm_label": "dependencies" + "norm_label": "dependencies", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_dependencies" }, { "label": "Domain", @@ -30462,10 +31695,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L28", "_origin": "ast", - "id": "docs_audit_09_database_audit_domain", "community": 27, "community_name": "DB-001", - "norm_label": "domain" + "norm_label": "domain", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_domain" }, { "label": "Domain Overview & Confirmed Strengths", @@ -30473,10 +31707,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L15", "_origin": "ast", - "id": "docs_audit_09_database_audit_domain_overview_confirmed_strengths", "community": 27, "community_name": "DB-001", - "norm_label": "domain overview & confirmed strengths" + "norm_label": "domain overview & confirmed strengths", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_domain_overview_confirmed_strengths" }, { "label": "Evidence", @@ -30484,10 +31719,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L52", "_origin": "ast", - "id": "docs_audit_09_database_audit_evidence", "community": 27, "community_name": "DB-001", - "norm_label": "evidence" + "norm_label": "evidence", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_evidence" }, { "label": "Finding Summary", @@ -30495,10 +31731,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L111", "_origin": "ast", - "id": "docs_audit_09_database_audit_finding_summary", "community": 27, "community_name": "DB-001", - "norm_label": "finding summary" + "norm_label": "finding summary", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_finding_summary" }, { "label": "Findings", @@ -30506,10 +31743,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L21", "_origin": "ast", - "id": "docs_audit_09_database_audit_findings", "community": 27, "community_name": "DB-001", - "norm_label": "findings" + "norm_label": "findings", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_findings" }, { "label": "Implementation Complexity", @@ -30517,10 +31755,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L88", "_origin": "ast", - "id": "docs_audit_09_database_audit_implementation_complexity", "community": 27, "community_name": "DB-001", - "norm_label": "implementation complexity" + "norm_label": "implementation complexity", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_implementation_complexity" }, { "label": "Notes and Limitations", @@ -30528,10 +31767,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L106", "_origin": "ast", - "id": "docs_audit_09_database_audit_notes_and_limitations", "community": 27, "community_name": "DB-001", - "norm_label": "notes and limitations" + "norm_label": "notes and limitations", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_notes_and_limitations" }, { "label": "Problem", @@ -30539,10 +31779,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L64", "_origin": "ast", - "id": "docs_audit_09_database_audit_problem", "community": 27, "community_name": "DB-001", - "norm_label": "problem" + "norm_label": "problem", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_problem" }, { "label": "Recommended Direction", @@ -30550,10 +31791,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L82", "_origin": "ast", - "id": "docs_audit_09_database_audit_recommended_direction", "community": 27, "community_name": "DB-001", - "norm_label": "recommended direction" + "norm_label": "recommended direction", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_recommended_direction" }, { "label": "Relevant Symbols or Lines", @@ -30561,10 +31803,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L49", "_origin": "ast", - "id": "docs_audit_09_database_audit_relevant_symbols_or_lines", "community": 27, "community_name": "DB-001", - "norm_label": "relevant symbols or lines" + "norm_label": "relevant symbols or lines", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_relevant_symbols_or_lines" }, { "label": "Risks", @@ -30572,10 +31815,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L94", "_origin": "ast", - "id": "docs_audit_09_database_audit_risks", "community": 27, "community_name": "DB-001", - "norm_label": "risks" + "norm_label": "risks", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_risks" }, { "label": "Root Cause", @@ -30583,10 +31827,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L67", "_origin": "ast", - "id": "docs_audit_09_database_audit_root_cause", "community": 27, "community_name": "DB-001", - "norm_label": "root cause" + "norm_label": "root cause", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_root_cause" }, { "label": "Security or Data-Integrity Impact", @@ -30594,10 +31839,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L79", "_origin": "ast", - "id": "docs_audit_09_database_audit_security_or_data_integrity_impact", "community": 27, "community_name": "DB-001", - "norm_label": "security or data-integrity impact" + "norm_label": "security or data-integrity impact", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_security_or_data_integrity_impact" }, { "label": "Severity", @@ -30605,10 +31851,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L34", "_origin": "ast", - "id": "docs_audit_09_database_audit_severity", "community": 27, "community_name": "DB-001", - "norm_label": "severity" + "norm_label": "severity", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_severity" }, { "label": "Status", @@ -30616,10 +31863,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L40", "_origin": "ast", - "id": "docs_audit_09_database_audit_status", "community": 27, "community_name": "DB-001", - "norm_label": "status" + "norm_label": "status", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_status" }, { "label": "Technical Impact", @@ -30627,10 +31875,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L76", "_origin": "ast", - "id": "docs_audit_09_database_audit_technical_impact", "community": 27, "community_name": "DB-001", - "norm_label": "technical impact" + "norm_label": "technical impact", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_technical_impact" }, { "label": "Testing Requirements", @@ -30638,10 +31887,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L100", "_origin": "ast", - "id": "docs_audit_09_database_audit_testing_requirements", "community": 27, "community_name": "DB-001", - "norm_label": "testing requirements" + "norm_label": "testing requirements", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_testing_requirements" }, { "label": "Title", @@ -30649,10 +31899,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L25", "_origin": "ast", - "id": "docs_audit_09_database_audit_title", "community": 27, "community_name": "DB-001", - "norm_label": "title" + "norm_label": "title", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_title" }, { "label": "User or Business Impact", @@ -30660,10 +31911,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L73", "_origin": "ast", - "id": "docs_audit_09_database_audit_user_or_business_impact", "community": 27, "community_name": "DB-001", - "norm_label": "user or business impact" + "norm_label": "user or business impact", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_user_or_business_impact" }, { "label": "Verification Requirements", @@ -30671,10 +31923,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L97", "_origin": "ast", - "id": "docs_audit_09_database_audit_verification_requirements", "community": 27, "community_name": "DB-001", - "norm_label": "verification requirements" + "norm_label": "verification requirements", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_verification_requirements" }, { "label": "Why It Matters", @@ -30682,10 +31935,11 @@ "source_file": "docs/audit/09-database-audit.md", "source_location": "L70", "_origin": "ast", - "id": "docs_audit_09_database_audit_why_it_matters", "community": 27, "community_name": "DB-001", - "norm_label": "why it matters" + "norm_label": "why it matters", + "node_kind": "heading", + "id": "docs_audit_09_database_audit_why_it_matters" }, { "label": "app-audit-verification.e2e-spec.d.ts", @@ -30693,10 +31947,10 @@ "source_file": "backend/test/app-audit-verification.e2e-spec.d.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_test_app_audit_verification_e2e_spec_d", "community": 270, "community_name": "app-audit-verification.e2e-spec.d.ts", - "norm_label": "app-audit-verification.e2e-spec.d.ts" + "norm_label": "app-audit-verification.e2e-spec.d.ts", + "id": "backend_test_app_audit_verification_e2e_spec_d" }, { "label": "app.e2e-spec.d.ts", @@ -30704,10 +31958,10 @@ "source_file": "backend/test/app.e2e-spec.d.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_test_app_e2e_spec_d", "community": 271, "community_name": "app.e2e-spec.d.ts", - "norm_label": "app.e2e-spec.d.ts" + "norm_label": "app.e2e-spec.d.ts", + "id": "backend_test_app_e2e_spec_d" }, { "label": "eslint.config.js", @@ -30715,10 +31969,10 @@ "source_file": "frontend/admin-panel/eslint.config.js", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_eslint_config", "community": 278, "community_name": "eslint.config.js", - "norm_label": "eslint.config.js" + "norm_label": "eslint.config.js", + "id": "frontend_admin_panel_eslint_config" }, { "label": "postcss.config.js", @@ -30726,10 +31980,10 @@ "source_file": "frontend/admin-panel/postcss.config.js", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_postcss_config", "community": 279, "community_name": "postcss.config.js", - "norm_label": "postcss.config.js" + "norm_label": "postcss.config.js", + "id": "frontend_admin_panel_postcss_config" }, { "label": "11-code-quality-audit.md", @@ -30737,10 +31991,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit", "community": 28, "community_name": "TS-001", - "norm_label": "11-code-quality-audit.md" + "norm_label": "11-code-quality-audit.md", + "node_kind": "page", + "id": "docs_audit_11_code_quality_audit" }, { "label": "Acceptance Criteria", @@ -30748,10 +32003,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L98", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_acceptance_criteria", "community": 28, "community_name": "TS-001", - "norm_label": "acceptance criteria" + "norm_label": "acceptance criteria", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_acceptance_criteria" }, { "label": "Affected Application", @@ -30759,10 +32015,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L42", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_affected_application", "community": 28, "community_name": "TS-001", - "norm_label": "affected application" + "norm_label": "affected application", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_affected_application" }, { "label": "Affected Files", @@ -30770,10 +32027,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L45", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_affected_files", "community": 28, "community_name": "TS-001", - "norm_label": "affected files" + "norm_label": "affected files", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_affected_files" }, { "label": "Alternative Direction", @@ -30781,10 +32039,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L80", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_alternative_direction", "community": 28, "community_name": "TS-001", - "norm_label": "alternative direction" + "norm_label": "alternative direction", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_alternative_direction" }, { "label": "Category", @@ -30792,10 +32051,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L30", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_category", "community": 28, "community_name": "TS-001", - "norm_label": "category" + "norm_label": "category", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_category" }, { "label": "Completion Statement", @@ -30803,10 +32063,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L118", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_completion_statement", "community": 28, "community_name": "TS-001", - "norm_label": "completion statement" + "norm_label": "completion statement", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_completion_statement" }, { "label": "Confidence", @@ -30814,10 +32075,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L36", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_confidence", "community": 28, "community_name": "TS-001", - "norm_label": "confidence" + "norm_label": "confidence", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_confidence" }, { "label": "Dependencies", @@ -30825,10 +32087,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L86", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_dependencies", "community": 28, "community_name": "TS-001", - "norm_label": "dependencies" + "norm_label": "dependencies", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_dependencies" }, { "label": "Domain", @@ -30836,10 +32099,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L27", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_domain", "community": 28, "community_name": "TS-001", - "norm_label": "domain" + "norm_label": "domain", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_domain" }, { "label": "Domain Overview & Confirmed Strengths", @@ -30847,10 +32111,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L15", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_domain_overview_confirmed_strengths", "community": 28, "community_name": "TS-001", - "norm_label": "domain overview & confirmed strengths" + "norm_label": "domain overview & confirmed strengths", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_domain_overview_confirmed_strengths" }, { "label": "Evidence", @@ -30858,10 +32123,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L51", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_evidence", "community": 28, "community_name": "TS-001", - "norm_label": "evidence" + "norm_label": "evidence", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_evidence" }, { "label": "Finding Summary", @@ -30869,10 +32135,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L106", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_finding_summary", "community": 28, "community_name": "TS-001", - "norm_label": "finding summary" + "norm_label": "finding summary", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_finding_summary" }, { "label": "Findings", @@ -30880,10 +32147,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L20", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_findings", "community": 28, "community_name": "TS-001", - "norm_label": "findings" + "norm_label": "findings", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_findings" }, { "label": "Implementation Complexity", @@ -30891,10 +32159,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L83", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_implementation_complexity", "community": 28, "community_name": "TS-001", - "norm_label": "implementation complexity" + "norm_label": "implementation complexity", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_implementation_complexity" }, { "label": "Notes and Limitations", @@ -30902,10 +32171,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L101", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_notes_and_limitations", "community": 28, "community_name": "TS-001", - "norm_label": "notes and limitations" + "norm_label": "notes and limitations", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_notes_and_limitations" }, { "label": "Problem", @@ -30913,10 +32183,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L59", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_problem", "community": 28, "community_name": "TS-001", - "norm_label": "problem" + "norm_label": "problem", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_problem" }, { "label": "Recommended Direction", @@ -30924,10 +32195,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L77", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_recommended_direction", "community": 28, "community_name": "TS-001", - "norm_label": "recommended direction" + "norm_label": "recommended direction", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_recommended_direction" }, { "label": "Relevant Symbols or Lines", @@ -30935,10 +32207,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L48", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_relevant_symbols_or_lines", "community": 28, "community_name": "TS-001", - "norm_label": "relevant symbols or lines" + "norm_label": "relevant symbols or lines", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_relevant_symbols_or_lines" }, { "label": "Risks", @@ -30946,10 +32219,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L89", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_risks", "community": 28, "community_name": "TS-001", - "norm_label": "risks" + "norm_label": "risks", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_risks" }, { "label": "Root Cause", @@ -30957,10 +32231,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L62", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_root_cause", "community": 28, "community_name": "TS-001", - "norm_label": "root cause" + "norm_label": "root cause", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_root_cause" }, { "label": "Security or Data-Integrity Impact", @@ -30968,10 +32243,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L74", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_security_or_data_integrity_impact", "community": 28, "community_name": "TS-001", - "norm_label": "security or data-integrity impact" + "norm_label": "security or data-integrity impact", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_security_or_data_integrity_impact" }, { "label": "Severity", @@ -30979,10 +32255,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L33", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_severity", "community": 28, "community_name": "TS-001", - "norm_label": "severity" + "norm_label": "severity", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_severity" }, { "label": "Status", @@ -30990,10 +32267,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L39", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_status", "community": 28, "community_name": "TS-001", - "norm_label": "status" + "norm_label": "status", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_status" }, { "label": "Technical Impact", @@ -31001,10 +32279,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L71", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_technical_impact", "community": 28, "community_name": "TS-001", - "norm_label": "technical impact" + "norm_label": "technical impact", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_technical_impact" }, { "label": "Testing Requirements", @@ -31012,10 +32291,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L95", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_testing_requirements", "community": 28, "community_name": "TS-001", - "norm_label": "testing requirements" + "norm_label": "testing requirements", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_testing_requirements" }, { "label": "Title", @@ -31023,10 +32303,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L24", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_title", "community": 28, "community_name": "TS-001", - "norm_label": "title" + "norm_label": "title", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_title" }, { "label": "TS-001", @@ -31034,10 +32315,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L22", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_ts_001", "community": 28, "community_name": "TS-001", - "norm_label": "ts-001" + "norm_label": "ts-001", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_ts_001" }, { "label": "TypeScript and Code Quality Audit Report", @@ -31045,10 +32327,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", "community": 28, "community_name": "TS-001", - "norm_label": "typescript and code quality audit report" + "norm_label": "typescript and code quality audit report", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report" }, { "label": "User or Business Impact", @@ -31056,10 +32339,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L68", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_user_or_business_impact", "community": 28, "community_name": "TS-001", - "norm_label": "user or business impact" + "norm_label": "user or business impact", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_user_or_business_impact" }, { "label": "Verification Requirements", @@ -31067,10 +32351,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L92", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_verification_requirements", "community": 28, "community_name": "TS-001", - "norm_label": "verification requirements" + "norm_label": "verification requirements", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_verification_requirements" }, { "label": "Why It Matters", @@ -31078,10 +32363,11 @@ "source_file": "docs/audit/11-code-quality-audit.md", "source_location": "L65", "_origin": "ast", - "id": "docs_audit_11_code_quality_audit_why_it_matters", "community": 28, "community_name": "TS-001", - "norm_label": "why it matters" + "norm_label": "why it matters", + "node_kind": "heading", + "id": "docs_audit_11_code_quality_audit_why_it_matters" }, { "label": "admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", @@ -31089,10 +32375,11 @@ "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_changelog", "community": 280, "community_name": "admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", - "norm_label": "admin-panel/public/fonts/sahel-font-v3.4.0/changelog.md" + "norm_label": "admin-panel/public/fonts/sahel-font-v3.4.0/changelog.md", + "node_kind": "page", + "id": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_changelog" }, { "label": "shabnam-font-v5.0.1/CHANGELOG.md", @@ -31100,10 +32387,11 @@ "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_changelog", "community": 281, "community_name": "shabnam-font-v5.0.1/CHANGELOG.md", - "norm_label": "shabnam-font-v5.0.1/changelog.md" + "norm_label": "shabnam-font-v5.0.1/changelog.md", + "node_kind": "page", + "id": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_changelog" }, { "label": "tailwind.config.js", @@ -31111,10 +32399,10 @@ "source_file": "frontend/admin-panel/tailwind.config.js", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_tailwind_config", "community": 282, "community_name": "tailwind.config.js", - "norm_label": "tailwind.config.js" + "norm_label": "tailwind.config.js", + "id": "frontend_admin_panel_tailwind_config" }, { "label": "vite.config.ts", @@ -31122,10 +32410,10 @@ "source_file": "frontend/admin-panel/vite.config.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_vite_config", "community": 283, "community_name": "vite.config.ts", - "norm_label": "vite.config.ts" + "norm_label": "vite.config.ts", + "id": "frontend_admin_panel_vite_config" }, { "label": "application/CLAUDE.md", @@ -31133,10 +32421,11 @@ "source_file": "frontend/application/CLAUDE.md", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_claude", "community": 284, "community_name": "application/CLAUDE.md", - "norm_label": "application/claude.md" + "norm_label": "application/claude.md", + "node_kind": "page", + "id": "frontend_application_claude" }, { "label": "application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", @@ -31144,10 +32433,11 @@ "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_public_fonts_sahel_font_v3_4_0_changelog", "community": 285, "community_name": "application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md", - "norm_label": "application/public/fonts/sahel-font-v3.4.0/changelog.md" + "norm_label": "application/public/fonts/sahel-font-v3.4.0/changelog.md", + "node_kind": "page", + "id": "frontend_application_public_fonts_sahel_font_v3_4_0_changelog" }, { "label": "vitest.config.ts", @@ -31155,10 +32445,10 @@ "source_file": "frontend/application/vitest.config.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_vitest_config", "community": 289, "community_name": "vitest.config.ts", - "norm_label": "vitest.config.ts" + "norm_label": "vitest.config.ts", + "id": "frontend_application_vitest_config" }, { "label": "12-testing-audit.md", @@ -31166,10 +32456,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_12_testing_audit", "community": 29, "community_name": "TEST-001", - "norm_label": "12-testing-audit.md" + "norm_label": "12-testing-audit.md", + "node_kind": "page", + "id": "docs_audit_12_testing_audit" }, { "label": "Acceptance Criteria", @@ -31177,10 +32468,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L102", "_origin": "ast", - "id": "docs_audit_12_testing_audit_acceptance_criteria", "community": 29, "community_name": "TEST-001", - "norm_label": "acceptance criteria" + "norm_label": "acceptance criteria", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_acceptance_criteria" }, { "label": "Affected Application", @@ -31188,10 +32480,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L42", "_origin": "ast", - "id": "docs_audit_12_testing_audit_affected_application", "community": 29, "community_name": "TEST-001", - "norm_label": "affected application" + "norm_label": "affected application", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_affected_application" }, { "label": "Affected Files", @@ -31199,10 +32492,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L45", "_origin": "ast", - "id": "docs_audit_12_testing_audit_affected_files", "community": 29, "community_name": "TEST-001", - "norm_label": "affected files" + "norm_label": "affected files", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_affected_files" }, { "label": "Alternative Direction", @@ -31210,10 +32504,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L84", "_origin": "ast", - "id": "docs_audit_12_testing_audit_alternative_direction", "community": 29, "community_name": "TEST-001", - "norm_label": "alternative direction" + "norm_label": "alternative direction", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_alternative_direction" }, { "label": "Category", @@ -31221,10 +32516,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L30", "_origin": "ast", - "id": "docs_audit_12_testing_audit_category", "community": 29, "community_name": "TEST-001", - "norm_label": "category" + "norm_label": "category", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_category" }, { "label": "Completion Statement", @@ -31232,10 +32528,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L122", "_origin": "ast", - "id": "docs_audit_12_testing_audit_completion_statement", "community": 29, "community_name": "TEST-001", - "norm_label": "completion statement" + "norm_label": "completion statement", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_completion_statement" }, { "label": "Confidence", @@ -31243,10 +32540,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L36", "_origin": "ast", - "id": "docs_audit_12_testing_audit_confidence", "community": 29, "community_name": "TEST-001", - "norm_label": "confidence" + "norm_label": "confidence", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_confidence" }, { "label": "Dependencies", @@ -31254,10 +32552,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L90", "_origin": "ast", - "id": "docs_audit_12_testing_audit_dependencies", "community": 29, "community_name": "TEST-001", - "norm_label": "dependencies" + "norm_label": "dependencies", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_dependencies" }, { "label": "Domain", @@ -31265,10 +32564,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L27", "_origin": "ast", - "id": "docs_audit_12_testing_audit_domain", "community": 29, "community_name": "TEST-001", - "norm_label": "domain" + "norm_label": "domain", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_domain" }, { "label": "Domain Overview & Confirmed Strengths", @@ -31276,10 +32576,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L15", "_origin": "ast", - "id": "docs_audit_12_testing_audit_domain_overview_confirmed_strengths", "community": 29, "community_name": "TEST-001", - "norm_label": "domain overview & confirmed strengths" + "norm_label": "domain overview & confirmed strengths", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_domain_overview_confirmed_strengths" }, { "label": "Evidence", @@ -31287,10 +32588,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L55", "_origin": "ast", - "id": "docs_audit_12_testing_audit_evidence", "community": 29, "community_name": "TEST-001", - "norm_label": "evidence" + "norm_label": "evidence", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_evidence" }, { "label": "Finding Summary", @@ -31298,10 +32600,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L110", "_origin": "ast", - "id": "docs_audit_12_testing_audit_finding_summary", "community": 29, "community_name": "TEST-001", - "norm_label": "finding summary" + "norm_label": "finding summary", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_finding_summary" }, { "label": "Findings", @@ -31309,10 +32612,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L20", "_origin": "ast", - "id": "docs_audit_12_testing_audit_findings", "community": 29, "community_name": "TEST-001", - "norm_label": "findings" + "norm_label": "findings", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_findings" }, { "label": "Implementation Complexity", @@ -31320,10 +32624,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L87", "_origin": "ast", - "id": "docs_audit_12_testing_audit_implementation_complexity", "community": 29, "community_name": "TEST-001", - "norm_label": "implementation complexity" + "norm_label": "implementation complexity", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_implementation_complexity" }, { "label": "Notes and Limitations", @@ -31331,10 +32636,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L105", "_origin": "ast", - "id": "docs_audit_12_testing_audit_notes_and_limitations", "community": 29, "community_name": "TEST-001", - "norm_label": "notes and limitations" + "norm_label": "notes and limitations", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_notes_and_limitations" }, { "label": "Problem", @@ -31342,10 +32648,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L63", "_origin": "ast", - "id": "docs_audit_12_testing_audit_problem", "community": 29, "community_name": "TEST-001", - "norm_label": "problem" + "norm_label": "problem", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_problem" }, { "label": "Recommended Direction", @@ -31353,10 +32660,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L81", "_origin": "ast", - "id": "docs_audit_12_testing_audit_recommended_direction", "community": 29, "community_name": "TEST-001", - "norm_label": "recommended direction" + "norm_label": "recommended direction", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_recommended_direction" }, { "label": "Relevant Symbols or Lines", @@ -31364,10 +32672,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L50", "_origin": "ast", - "id": "docs_audit_12_testing_audit_relevant_symbols_or_lines", "community": 29, "community_name": "TEST-001", - "norm_label": "relevant symbols or lines" + "norm_label": "relevant symbols or lines", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_relevant_symbols_or_lines" }, { "label": "Risks", @@ -31375,10 +32684,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L93", "_origin": "ast", - "id": "docs_audit_12_testing_audit_risks", "community": 29, "community_name": "TEST-001", - "norm_label": "risks" + "norm_label": "risks", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_risks" }, { "label": "Root Cause", @@ -31386,10 +32696,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L66", "_origin": "ast", - "id": "docs_audit_12_testing_audit_root_cause", "community": 29, "community_name": "TEST-001", - "norm_label": "root cause" + "norm_label": "root cause", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_root_cause" }, { "label": "Security or Data-Integrity Impact", @@ -31397,10 +32708,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L78", "_origin": "ast", - "id": "docs_audit_12_testing_audit_security_or_data_integrity_impact", "community": 29, "community_name": "TEST-001", - "norm_label": "security or data-integrity impact" + "norm_label": "security or data-integrity impact", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_security_or_data_integrity_impact" }, { "label": "Severity", @@ -31408,10 +32720,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L33", "_origin": "ast", - "id": "docs_audit_12_testing_audit_severity", "community": 29, "community_name": "TEST-001", - "norm_label": "severity" + "norm_label": "severity", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_severity" }, { "label": "Status", @@ -31419,10 +32732,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L39", "_origin": "ast", - "id": "docs_audit_12_testing_audit_status", "community": 29, "community_name": "TEST-001", - "norm_label": "status" + "norm_label": "status", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_status" }, { "label": "Technical Impact", @@ -31430,10 +32744,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L75", "_origin": "ast", - "id": "docs_audit_12_testing_audit_technical_impact", "community": 29, "community_name": "TEST-001", - "norm_label": "technical impact" + "norm_label": "technical impact", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_technical_impact" }, { "label": "TEST-001", @@ -31441,10 +32756,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L22", "_origin": "ast", - "id": "docs_audit_12_testing_audit_test_001", "community": 29, "community_name": "TEST-001", - "norm_label": "test-001" + "norm_label": "test-001", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_test_001" }, { "label": "Testing and Reliability Audit Report", @@ -31452,10 +32768,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", "community": 29, "community_name": "TEST-001", - "norm_label": "testing and reliability audit report" + "norm_label": "testing and reliability audit report", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_testing_and_reliability_audit_report" }, { "label": "Testing Requirements", @@ -31463,10 +32780,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L99", "_origin": "ast", - "id": "docs_audit_12_testing_audit_testing_requirements", "community": 29, "community_name": "TEST-001", - "norm_label": "testing requirements" + "norm_label": "testing requirements", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_testing_requirements" }, { "label": "Title", @@ -31474,10 +32792,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L24", "_origin": "ast", - "id": "docs_audit_12_testing_audit_title", "community": 29, "community_name": "TEST-001", - "norm_label": "title" + "norm_label": "title", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_title" }, { "label": "User or Business Impact", @@ -31485,10 +32804,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L72", "_origin": "ast", - "id": "docs_audit_12_testing_audit_user_or_business_impact", "community": 29, "community_name": "TEST-001", - "norm_label": "user or business impact" + "norm_label": "user or business impact", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_user_or_business_impact" }, { "label": "Verification Requirements", @@ -31496,10 +32816,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L96", "_origin": "ast", - "id": "docs_audit_12_testing_audit_verification_requirements", "community": 29, "community_name": "TEST-001", - "norm_label": "verification requirements" + "norm_label": "verification requirements", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_verification_requirements" }, { "label": "Why It Matters", @@ -31507,10 +32828,11 @@ "source_file": "docs/audit/12-testing-audit.md", "source_location": "L69", "_origin": "ast", - "id": "docs_audit_12_testing_audit_why_it_matters", "community": 29, "community_name": "TEST-001", - "norm_label": "why it matters" + "norm_label": "why it matters", + "node_kind": "heading", + "id": "docs_audit_12_testing_audit_why_it_matters" }, { "label": "Injectable", @@ -31518,21 +32840,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_service_ts_injectable", "community": 294, "community_name": "ZibalService", - "norm_label": "injectable" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_zibal_service_ts_injectable", - "community": 294, - "community_name": "ZibalService", - "norm_label": "injectable" + "norm_label": "injectable", + "id": "backend_src_payment_zibal_service_ts_injectable" }, { "label": "eslint-plugin-react-refresh", @@ -31540,10 +32851,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L34", "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh", "community": 295, "community_name": "eslint-plugin-react-refresh", - "norm_label": "eslint-plugin-react-refresh" + "norm_label": "eslint-plugin-react-refresh", + "id": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh" }, { "label": "eslint-plugin-react-refresh", @@ -31551,10 +32862,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L34", "_origin": "ast", - "id": "eslint_plugin_react_refresh", "community": 295, "community_name": "eslint-plugin-react-refresh", - "norm_label": "eslint-plugin-react-refresh" + "norm_label": "eslint-plugin-react-refresh", + "id": "eslint_plugin_react_refresh" }, { "label": "tailwindcss", @@ -31562,10 +32873,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L37", "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_tailwindcss", "community": 296, "community_name": "tailwindcss", - "norm_label": "tailwindcss" + "norm_label": "tailwindcss", + "id": "frontend_admin_panel_package_devdependencies_tailwindcss" }, { "label": "tailwindcss", @@ -31573,10 +32884,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L37", "_origin": "ast", - "id": "frontend_admin_panel_package_json_tailwindcss", "community": 296, "community_name": "tailwindcss", - "norm_label": "tailwindcss" + "norm_label": "tailwindcss", + "id": "frontend_admin_panel_package_json_tailwindcss" }, { "label": "Injectable", @@ -31584,10 +32895,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_zibal_ebank_service_ts_injectable", "community": 297, "community_name": "ZibalEBankService", - "norm_label": "injectable" + "norm_label": "injectable", + "id": "backend_src_payment_zibal_ebank_service_ts_injectable" }, { "label": "verify-payment.dto.ts", @@ -31595,10 +32906,10 @@ "source_file": "backend/src/payment/dto/verify-payment.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_payment_dto_verify_payment_dto", "community": 298, "community_name": ".initiateOrderPayment", - "norm_label": "verify-payment.dto.ts" + "norm_label": "verify-payment.dto.ts", + "id": "backend_src_payment_dto_verify_payment_dto" }, { "label": "ApiPropertyOptional", @@ -31606,10 +32917,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional", "community": 298, "community_name": ".initiateOrderPayment", - "norm_label": "apipropertyoptional" + "norm_label": "apipropertyoptional", + "id": "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional" }, { "label": "IsOptional", @@ -31617,10 +32928,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_dto_verify_payment_dto_ts_isoptional", "community": 298, "community_name": ".initiateOrderPayment", - "norm_label": "isoptional" + "norm_label": "isoptional", + "id": "backend_src_payment_dto_verify_payment_dto_ts_isoptional" }, { "label": "IsString", @@ -31628,10 +32939,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_dto_verify_payment_dto_ts_isstring", "community": 298, "community_name": ".initiateOrderPayment", - "norm_label": "isstring" + "norm_label": "isstring", + "id": "backend_src_payment_dto_verify_payment_dto_ts_isstring" }, { "label": "ApiBadRequestResponse", @@ -31639,10 +32950,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_apibadrequestresponse", "community": 298, "community_name": ".initiateOrderPayment", - "norm_label": "apibadrequestresponse" + "norm_label": "apibadrequestresponse", + "id": "backend_src_payment_payment_controller_ts_apibadrequestresponse" }, { "label": "ApiOkResponse", @@ -31650,10 +32961,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_apiokresponse", "community": 298, "community_name": ".initiateOrderPayment", - "norm_label": "apiokresponse" + "norm_label": "apiokresponse", + "id": "backend_src_payment_payment_controller_ts_apiokresponse" }, { "label": "Req", @@ -31661,10 +32972,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_req", "community": 298, "community_name": ".initiateOrderPayment", - "norm_label": "req" + "norm_label": "req", + "id": "backend_src_payment_payment_controller_ts_req" }, { "label": "Res", @@ -31672,10 +32983,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_payment_payment_controller_ts_res", "community": 298, "community_name": ".initiateOrderPayment", - "norm_label": "res" + "norm_label": "res", + "id": "backend_src_payment_payment_controller_ts_res" }, { "label": "Headers", @@ -31683,10 +32994,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "headers", "community": 298, "community_name": ".initiateOrderPayment", - "norm_label": "headers" + "norm_label": "headers", + "id": "headers" }, { "label": "Ip", @@ -31694,10 +33005,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "ip", "community": 298, "community_name": ".initiateOrderPayment", - "norm_label": "ip" + "norm_label": "ip", + "id": "ip" }, { "label": "@tailwindcss/postcss", @@ -31705,10 +33016,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L26", "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss", "community": 299, "community_name": "@tailwindcss/postcss", - "norm_label": "@tailwindcss/postcss" + "norm_label": "@tailwindcss/postcss", + "id": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss" }, { "label": "@tailwindcss/postcss", @@ -31716,10 +33027,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L26", "_origin": "ast", - "id": "frontend_admin_panel_package_json_tailwindcss_postcss", "community": 299, "community_name": "@tailwindcss/postcss", - "norm_label": "@tailwindcss/postcss" + "norm_label": "@tailwindcss/postcss", + "id": "frontend_admin_panel_package_json_tailwindcss_postcss" }, { "label": "CatalogClient.tsx", @@ -31727,21 +33038,10 @@ "source_file": "frontend/application/app/catalog/CatalogClient.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_catalog_catalogclient", "community": 3, "community_name": "ProductService", - "norm_label": "catalogclient.tsx" - }, - { - "label": "search/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/search/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_search_page", - "community": 3, - "community_name": "ProductService", - "norm_label": "search/page.tsx" + "norm_label": "catalogclient.tsx", + "id": "frontend_application_app_catalog_catalogclient" }, { "label": "feed.xml/route.ts", @@ -31749,10 +33049,10 @@ "source_file": "frontend/application/app/shop/feed.xml/route.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_shop_feed_xml_route", "community": 3, "community_name": "ProductService", - "norm_label": "feed.xml/route.ts" + "norm_label": "feed.xml/route.ts", + "id": "frontend_application_app_shop_feed_xml_route" }, { "label": "dynamic", @@ -31760,10 +33060,10 @@ "source_file": "frontend/application/app/shop/feed.xml/route.ts", "source_location": "L5", "_origin": "ast", - "id": "frontend_application_app_shop_feed_xml_route_dynamic", "community": 3, "community_name": "ProductService", - "norm_label": "dynamic" + "norm_label": "dynamic", + "id": "frontend_application_app_shop_feed_xml_route_dynamic" }, { "label": "revalidate", @@ -31771,10 +33071,10 @@ "source_file": "frontend/application/app/shop/feed.xml/route.ts", "source_location": "L6", "_origin": "ast", - "id": "frontend_application_app_shop_feed_xml_route_revalidate", "community": 3, "community_name": "ProductService", - "norm_label": "revalidate" + "norm_label": "revalidate", + "id": "frontend_application_app_shop_feed_xml_route_revalidate" }, { "label": "sitemap.ts", @@ -31782,10 +33082,10 @@ "source_file": "frontend/application/app/sitemap.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_sitemap", "community": 3, "community_name": "ProductService", - "norm_label": "sitemap.ts" + "norm_label": "sitemap.ts", + "id": "frontend_application_app_sitemap" }, { "label": "sitemap-categories.xml/route.ts", @@ -31793,10 +33093,10 @@ "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_sitemap_categories_xml_route", "community": 3, "community_name": "ProductService", - "norm_label": "sitemap-categories.xml/route.ts" + "norm_label": "sitemap-categories.xml/route.ts", + "id": "frontend_application_app_sitemap_categories_xml_route" }, { "label": "DEFAULT_CATEGORIES", @@ -31804,10 +33104,10 @@ "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", "source_location": "L7", "_origin": "ast", - "id": "frontend_application_app_sitemap_categories_xml_route_default_categories", "community": 3, "community_name": "ProductService", - "norm_label": "default_categories" + "norm_label": "default_categories", + "id": "frontend_application_app_sitemap_categories_xml_route_default_categories" }, { "label": "dynamic", @@ -31815,10 +33115,10 @@ "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", "source_location": "L4", "_origin": "ast", - "id": "frontend_application_app_sitemap_categories_xml_route_dynamic", "community": 3, "community_name": "ProductService", - "norm_label": "dynamic" + "norm_label": "dynamic", + "id": "frontend_application_app_sitemap_categories_xml_route_dynamic" }, { "label": "revalidate", @@ -31826,10 +33126,10 @@ "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", "source_location": "L5", "_origin": "ast", - "id": "frontend_application_app_sitemap_categories_xml_route_revalidate", "community": 3, "community_name": "ProductService", - "norm_label": "revalidate" + "norm_label": "revalidate", + "id": "frontend_application_app_sitemap_categories_xml_route_revalidate" }, { "label": "sitemap-products.xml/route.ts", @@ -31837,10 +33137,10 @@ "source_file": "frontend/application/app/sitemap-products.xml/route.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_sitemap_products_xml_route", "community": 3, "community_name": "ProductService", - "norm_label": "sitemap-products.xml/route.ts" + "norm_label": "sitemap-products.xml/route.ts", + "id": "frontend_application_app_sitemap_products_xml_route" }, { "label": "dynamic", @@ -31848,10 +33148,10 @@ "source_file": "frontend/application/app/sitemap-products.xml/route.ts", "source_location": "L5", "_origin": "ast", - "id": "frontend_application_app_sitemap_products_xml_route_dynamic", "community": 3, "community_name": "ProductService", - "norm_label": "dynamic" + "norm_label": "dynamic", + "id": "frontend_application_app_sitemap_products_xml_route_dynamic" }, { "label": "revalidate", @@ -31859,10 +33159,10 @@ "source_file": "frontend/application/app/sitemap-products.xml/route.ts", "source_location": "L6", "_origin": "ast", - "id": "frontend_application_app_sitemap_products_xml_route_revalidate", "community": 3, "community_name": "ProductService", - "norm_label": "revalidate" + "norm_label": "revalidate", + "id": "frontend_application_app_sitemap_products_xml_route_revalidate" }, { "label": "CatalogPageSpread.tsx", @@ -31870,10 +33170,10 @@ "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_catalog_catalogpagespread", "community": 3, "community_name": "ProductService", - "norm_label": "catalogpagespread.tsx" + "norm_label": "catalogpagespread.tsx", + "id": "frontend_application_components_catalog_catalogpagespread" }, { "label": "FlipbookCatalog.tsx", @@ -31881,10 +33181,10 @@ "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_catalog_flipbookcatalog", "community": 3, "community_name": "ProductService", - "norm_label": "flipbookcatalog.tsx" + "norm_label": "flipbookcatalog.tsx", + "id": "frontend_application_components_catalog_flipbookcatalog" }, { "label": "IngredientWiki.tsx", @@ -31892,10 +33192,10 @@ "source_file": "frontend/application/components/IngredientWiki.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_ingredientwiki", "community": 3, "community_name": "ProductService", - "norm_label": "ingredientwiki.tsx" + "norm_label": "ingredientwiki.tsx", + "id": "frontend_application_components_ingredientwiki" }, { "label": "INGREDIENT_MATCH_KEYWORDS", @@ -31903,54 +33203,10 @@ "source_file": "frontend/application/components/IngredientWiki.tsx", "source_location": "L16", "_origin": "ast", - "id": "frontend_application_components_ingredientwiki_ingredient_match_keywords", "community": 3, "community_name": "ProductService", - "norm_label": "ingredient_match_keywords" - }, - { - "label": "SearchResultsPage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/SearchResultsPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_searchresultspage", - "community": 3, - "community_name": "ProductService", - "norm_label": "searchresultspage.tsx" - }, - { - "label": "SmartAdvisor.tsx", - "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_smartadvisor", - "community": 3, - "community_name": "ProductService", - "norm_label": "smartadvisor.tsx" - }, - { - "label": "CURRENT_SYMPTOMS", - "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L32", - "_origin": "ast", - "id": "frontend_application_components_smartadvisor_current_symptoms", - "community": 3, - "community_name": "ProductService", - "norm_label": "current_symptoms" - }, - { - "label": "MEDICAL_HISTORIES", - "file_type": "code", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L44", - "_origin": "ast", - "id": "frontend_application_components_smartadvisor_medical_histories", - "community": 3, - "community_name": "ProductService", - "norm_label": "medical_histories" + "norm_label": "ingredient_match_keywords", + "id": "frontend_application_components_ingredientwiki_ingredient_match_keywords" }, { "label": "products.ts", @@ -31958,10 +33214,10 @@ "source_file": "frontend/application/lib/data/products.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_lib_data_products", "community": 3, "community_name": "ProductService", - "norm_label": "products.ts" + "norm_label": "products.ts", + "id": "frontend_application_lib_data_products" }, { "label": "INGREDIENTS_WIKI", @@ -31969,10 +33225,10 @@ "source_file": "frontend/application/lib/data/products.ts", "source_location": "L99", "_origin": "ast", - "id": "frontend_application_lib_data_products_ingredients_wiki", "community": 3, "community_name": "ProductService", - "norm_label": "ingredients_wiki" + "norm_label": "ingredients_wiki", + "id": "frontend_application_lib_data_products_ingredients_wiki" }, { "label": "PRODUCTS", @@ -31980,10 +33236,10 @@ "source_file": "frontend/application/lib/data/products.ts", "source_location": "L402", "_origin": "ast", - "id": "frontend_application_lib_data_products_products", "community": 3, "community_name": "ProductService", - "norm_label": "products" + "norm_label": "products", + "id": "frontend_application_lib_data_products_products" }, { "label": "productService.ts", @@ -31991,10 +33247,10 @@ "source_file": "frontend/application/lib/services/productService.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_lib_services_productservice", "community": 3, "community_name": "ProductService", - "norm_label": "productservice.ts" + "norm_label": "productservice.ts", + "id": "frontend_application_lib_services_productservice" }, { "label": "CATEGORY_SLUG_TO_NAME", @@ -32002,10 +33258,10 @@ "source_file": "frontend/application/lib/services/productService.ts", "source_location": "L5", "_origin": "ast", - "id": "frontend_application_lib_services_productservice_category_slug_to_name", "community": 3, "community_name": "ProductService", - "norm_label": "category_slug_to_name" + "norm_label": "category_slug_to_name", + "id": "frontend_application_lib_services_productservice_category_slug_to_name" }, { "label": "13-devops-audit.md", @@ -32013,10 +33269,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_13_devops_audit", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "13-devops-audit.md" + "norm_label": "13-devops-audit.md", + "node_kind": "page", + "id": "docs_audit_13_devops_audit" }, { "label": "Acceptance Criteria", @@ -32024,10 +33281,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L94", "_origin": "ast", - "id": "docs_audit_13_devops_audit_acceptance_criteria", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "acceptance criteria" + "norm_label": "acceptance criteria", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_acceptance_criteria" }, { "label": "Affected Application", @@ -32035,10 +33293,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L43", "_origin": "ast", - "id": "docs_audit_13_devops_audit_affected_application", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "affected application" + "norm_label": "affected application", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_affected_application" }, { "label": "Affected Files", @@ -32046,10 +33305,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L46", "_origin": "ast", - "id": "docs_audit_13_devops_audit_affected_files", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "affected files" + "norm_label": "affected files", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_affected_files" }, { "label": "Alternative Direction", @@ -32057,10 +33317,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L76", "_origin": "ast", - "id": "docs_audit_13_devops_audit_alternative_direction", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "alternative direction" + "norm_label": "alternative direction", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_alternative_direction" }, { "label": "Category", @@ -32068,10 +33329,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L31", "_origin": "ast", - "id": "docs_audit_13_devops_audit_category", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "category" + "norm_label": "category", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_category" }, { "label": "Completion Statement", @@ -32079,10 +33341,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L114", "_origin": "ast", - "id": "docs_audit_13_devops_audit_completion_statement", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "completion statement" + "norm_label": "completion statement", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_completion_statement" }, { "label": "Confidence", @@ -32090,10 +33353,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L37", "_origin": "ast", - "id": "docs_audit_13_devops_audit_confidence", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "confidence" + "norm_label": "confidence", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_confidence" }, { "label": "Dependencies", @@ -32101,10 +33365,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L82", "_origin": "ast", - "id": "docs_audit_13_devops_audit_dependencies", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "dependencies" + "norm_label": "dependencies", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_dependencies" }, { "label": "DEVOPS-001", @@ -32112,10 +33377,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L23", "_origin": "ast", - "id": "docs_audit_13_devops_audit_devops_001", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "devops-001" + "norm_label": "devops-001", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_devops_001" }, { "label": "DevOps and CI/CD Audit Report", @@ -32123,10 +33389,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "devops and ci/cd audit report" + "norm_label": "devops and ci/cd audit report", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report" }, { "label": "Domain", @@ -32134,10 +33401,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L28", "_origin": "ast", - "id": "docs_audit_13_devops_audit_domain", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "domain" + "norm_label": "domain", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_domain" }, { "label": "Domain Overview & Confirmed Strengths", @@ -32145,10 +33413,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L15", "_origin": "ast", - "id": "docs_audit_13_devops_audit_domain_overview_confirmed_strengths", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "domain overview & confirmed strengths" + "norm_label": "domain overview & confirmed strengths", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_domain_overview_confirmed_strengths" }, { "label": "Evidence", @@ -32156,10 +33425,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L52", "_origin": "ast", - "id": "docs_audit_13_devops_audit_evidence", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "evidence" + "norm_label": "evidence", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_evidence" }, { "label": "Finding Summary", @@ -32167,10 +33437,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L102", "_origin": "ast", - "id": "docs_audit_13_devops_audit_finding_summary", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "finding summary" + "norm_label": "finding summary", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_finding_summary" }, { "label": "Findings", @@ -32178,10 +33449,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L21", "_origin": "ast", - "id": "docs_audit_13_devops_audit_findings", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "findings" + "norm_label": "findings", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_findings" }, { "label": "Implementation Complexity", @@ -32189,10 +33461,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L79", "_origin": "ast", - "id": "docs_audit_13_devops_audit_implementation_complexity", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "implementation complexity" + "norm_label": "implementation complexity", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_implementation_complexity" }, { "label": "Notes and Limitations", @@ -32200,10 +33473,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L97", "_origin": "ast", - "id": "docs_audit_13_devops_audit_notes_and_limitations", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "notes and limitations" + "norm_label": "notes and limitations", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_notes_and_limitations" }, { "label": "Problem", @@ -32211,10 +33485,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L55", "_origin": "ast", - "id": "docs_audit_13_devops_audit_problem", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "problem" + "norm_label": "problem", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_problem" }, { "label": "Recommended Direction", @@ -32222,10 +33497,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L73", "_origin": "ast", - "id": "docs_audit_13_devops_audit_recommended_direction", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "recommended direction" + "norm_label": "recommended direction", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_recommended_direction" }, { "label": "Relevant Symbols or Lines", @@ -32233,10 +33509,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L49", "_origin": "ast", - "id": "docs_audit_13_devops_audit_relevant_symbols_or_lines", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "relevant symbols or lines" + "norm_label": "relevant symbols or lines", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_relevant_symbols_or_lines" }, { "label": "Risks", @@ -32244,10 +33521,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L85", "_origin": "ast", - "id": "docs_audit_13_devops_audit_risks", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "risks" + "norm_label": "risks", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_risks" }, { "label": "Root Cause", @@ -32255,10 +33533,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L58", "_origin": "ast", - "id": "docs_audit_13_devops_audit_root_cause", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "root cause" + "norm_label": "root cause", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_root_cause" }, { "label": "Security or Data-Integrity Impact", @@ -32266,10 +33545,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L70", "_origin": "ast", - "id": "docs_audit_13_devops_audit_security_or_data_integrity_impact", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "security or data-integrity impact" + "norm_label": "security or data-integrity impact", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_security_or_data_integrity_impact" }, { "label": "Severity", @@ -32277,10 +33557,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L34", "_origin": "ast", - "id": "docs_audit_13_devops_audit_severity", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "severity" + "norm_label": "severity", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_severity" }, { "label": "Status", @@ -32288,10 +33569,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L40", "_origin": "ast", - "id": "docs_audit_13_devops_audit_status", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "status" + "norm_label": "status", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_status" }, { "label": "Technical Impact", @@ -32299,10 +33581,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L67", "_origin": "ast", - "id": "docs_audit_13_devops_audit_technical_impact", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "technical impact" + "norm_label": "technical impact", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_technical_impact" }, { "label": "Testing Requirements", @@ -32310,10 +33593,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L91", "_origin": "ast", - "id": "docs_audit_13_devops_audit_testing_requirements", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "testing requirements" + "norm_label": "testing requirements", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_testing_requirements" }, { "label": "Title", @@ -32321,10 +33605,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L25", "_origin": "ast", - "id": "docs_audit_13_devops_audit_title", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "title" + "norm_label": "title", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_title" }, { "label": "User or Business Impact", @@ -32332,10 +33617,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L64", "_origin": "ast", - "id": "docs_audit_13_devops_audit_user_or_business_impact", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "user or business impact" + "norm_label": "user or business impact", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_user_or_business_impact" }, { "label": "Verification Requirements", @@ -32343,10 +33629,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L88", "_origin": "ast", - "id": "docs_audit_13_devops_audit_verification_requirements", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "verification requirements" + "norm_label": "verification requirements", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_verification_requirements" }, { "label": "Why It Matters", @@ -32354,10 +33641,11 @@ "source_file": "docs/audit/13-devops-audit.md", "source_location": "L61", "_origin": "ast", - "id": "docs_audit_13_devops_audit_why_it_matters", "community": 30, "community_name": "DEVOPS-001", - "norm_label": "why it matters" + "norm_label": "why it matters", + "node_kind": "heading", + "id": "docs_audit_13_devops_audit_why_it_matters" }, { "label": "typescript", @@ -32365,10 +33653,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L38", "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_typescript", "community": 300, "community_name": "typescript", - "norm_label": "typescript" + "norm_label": "typescript", + "id": "frontend_admin_panel_package_devdependencies_typescript" }, { "label": "typescript", @@ -32376,10 +33664,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L38", "_origin": "ast", - "id": "frontend_admin_panel_package_json_typescript", "community": 300, "community_name": "typescript", - "norm_label": "typescript" + "norm_label": "typescript", + "id": "frontend_admin_panel_package_json_typescript" }, { "label": "@types/compression", @@ -32387,10 +33675,10 @@ "source_file": "backend/package.json", "source_location": "L55", "_origin": "ast", - "id": "backend_package_devdependencies_types_compression", "community": 301, "community_name": "@types/compression", - "norm_label": "@types/compression" + "norm_label": "@types/compression", + "id": "backend_package_devdependencies_types_compression" }, { "label": "@types/compression", @@ -32398,10 +33686,10 @@ "source_file": "backend/package.json", "source_location": "L55", "_origin": "ast", - "id": "types_compression", "community": 301, "community_name": "@types/compression", - "norm_label": "@types/compression" + "norm_label": "@types/compression", + "id": "types_compression" }, { "label": "typescript-eslint", @@ -32409,10 +33697,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L39", "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_typescript_eslint", "community": 302, "community_name": "typescript-eslint", - "norm_label": "typescript-eslint" + "norm_label": "typescript-eslint", + "id": "frontend_admin_panel_package_devdependencies_typescript_eslint" }, { "label": "typescript-eslint", @@ -32420,10 +33708,10 @@ "source_file": "frontend/admin-panel/package.json", "source_location": "L39", "_origin": "ast", - "id": "frontend_admin_panel_package_json_typescript_eslint", "community": 302, "community_name": "typescript-eslint", - "norm_label": "typescript-eslint" + "norm_label": "typescript-eslint", + "id": "frontend_admin_panel_package_json_typescript_eslint" }, { "label": "@types/express", @@ -32431,10 +33719,10 @@ "source_file": "backend/package.json", "source_location": "L56", "_origin": "ast", - "id": "backend_package_devdependencies_types_express", "community": 303, "community_name": "@types/express", - "norm_label": "@types/express" + "norm_label": "@types/express", + "id": "backend_package_devdependencies_types_express" }, { "label": "@types/express", @@ -32442,10 +33730,10 @@ "source_file": "backend/package.json", "source_location": "L56", "_origin": "ast", - "id": "types_express", "community": 303, "community_name": "@types/express", - "norm_label": "@types/express" + "norm_label": "@types/express", + "id": "types_express" }, { "label": "@types/jest", @@ -32453,10 +33741,10 @@ "source_file": "backend/package.json", "source_location": "L57", "_origin": "ast", - "id": "backend_package_devdependencies_types_jest", "community": 304, "community_name": "@types/jest", - "norm_label": "@types/jest" + "norm_label": "@types/jest", + "id": "backend_package_devdependencies_types_jest" }, { "label": "@types/jest", @@ -32464,10 +33752,10 @@ "source_file": "backend/package.json", "source_location": "L57", "_origin": "ast", - "id": "types_jest", "community": 304, "community_name": "@types/jest", - "norm_label": "@types/jest" + "norm_label": "@types/jest", + "id": "types_jest" }, { "label": "@types/react", @@ -32475,10 +33763,10 @@ "source_file": "frontend/application/package.json", "source_location": "L26", "_origin": "ast", - "id": "frontend_application_package_devdependencies_types_react", "community": 305, "community_name": "@types/react", - "norm_label": "@types/react" + "norm_label": "@types/react", + "id": "frontend_application_package_devdependencies_types_react" }, { "label": "@types/react", @@ -32486,54 +33774,10 @@ "source_file": "frontend/application/package.json", "source_location": "L26", "_origin": "ast", - "id": "frontend_application_package_json_types_react", "community": 305, "community_name": "@types/react", - "norm_label": "@types/react" - }, - { - "label": "globals", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L66", - "_origin": "ast", - "id": "backend_package_devdependencies_globals", - "community": 306, - "community_name": "globals", - "norm_label": "globals" - }, - { - "label": "globals", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L66", - "_origin": "ast", - "id": "backend_package_json_globals", - "community": 306, - "community_name": "globals", - "norm_label": "globals" - }, - { - "label": "@types/js-yaml", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L58", - "_origin": "ast", - "id": "backend_package_devdependencies_types_js_yaml", - "community": 307, - "community_name": "@types/js-yaml", - "norm_label": "@types/js-yaml" - }, - { - "label": "@types/js-yaml", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L58", - "_origin": "ast", - "id": "types_js_yaml", - "community": 307, - "community_name": "@types/js-yaml", - "norm_label": "@types/js-yaml" + "norm_label": "@types/react", + "id": "frontend_application_package_json_types_react" }, { "label": "vitest", @@ -32541,10 +33785,10 @@ "source_file": "frontend/application/package.json", "source_location": "L34", "_origin": "ast", - "id": "frontend_application_package_devdependencies_vitest", "community": 308, "community_name": "vitest", - "norm_label": "vitest" + "norm_label": "vitest", + "id": "frontend_application_package_devdependencies_vitest" }, { "label": "vitest", @@ -32552,10 +33796,10 @@ "source_file": "frontend/application/package.json", "source_location": "L34", "_origin": "ast", - "id": "vitest", "community": 308, "community_name": "vitest", - "norm_label": "vitest" + "norm_label": "vitest", + "id": "vitest" }, { "label": "axios", @@ -32563,10 +33807,10 @@ "source_file": "axios", "confidence": "EXTRACTED", "_origin": "ast", - "id": "axios_axios", "community": 309, "community_name": "axios", - "norm_label": "axios" + "norm_label": "axios", + "id": "axios_axios" }, { "label": "14-documentation-audit.md", @@ -32574,10 +33818,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_14_documentation_audit", "community": 31, "community_name": "DOC-001", - "norm_label": "14-documentation-audit.md" + "norm_label": "14-documentation-audit.md", + "node_kind": "page", + "id": "docs_audit_14_documentation_audit" }, { "label": "Acceptance Criteria", @@ -32585,10 +33830,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L95", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_acceptance_criteria", "community": 31, "community_name": "DOC-001", - "norm_label": "acceptance criteria" + "norm_label": "acceptance criteria", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_acceptance_criteria" }, { "label": "Affected Application", @@ -32596,10 +33842,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L42", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_affected_application", "community": 31, "community_name": "DOC-001", - "norm_label": "affected application" + "norm_label": "affected application", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_affected_application" }, { "label": "Affected Files", @@ -32607,10 +33854,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L45", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_affected_files", "community": 31, "community_name": "DOC-001", - "norm_label": "affected files" + "norm_label": "affected files", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_affected_files" }, { "label": "Alternative Direction", @@ -32618,10 +33866,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L77", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_alternative_direction", "community": 31, "community_name": "DOC-001", - "norm_label": "alternative direction" + "norm_label": "alternative direction", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_alternative_direction" }, { "label": "Category", @@ -32629,10 +33878,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L30", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_category", "community": 31, "community_name": "DOC-001", - "norm_label": "category" + "norm_label": "category", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_category" }, { "label": "Completion Statement", @@ -32640,10 +33890,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L115", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_completion_statement", "community": 31, "community_name": "DOC-001", - "norm_label": "completion statement" + "norm_label": "completion statement", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_completion_statement" }, { "label": "Confidence", @@ -32651,10 +33902,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L36", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_confidence", "community": 31, "community_name": "DOC-001", - "norm_label": "confidence" + "norm_label": "confidence", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_confidence" }, { "label": "Dependencies", @@ -32662,10 +33914,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L83", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_dependencies", "community": 31, "community_name": "DOC-001", - "norm_label": "dependencies" + "norm_label": "dependencies", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_dependencies" }, { "label": "DOC-001", @@ -32673,10 +33926,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L22", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_doc_001", "community": 31, "community_name": "DOC-001", - "norm_label": "doc-001" + "norm_label": "doc-001", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_doc_001" }, { "label": "Documentation Audit Report", @@ -32684,10 +33938,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L1", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_documentation_audit_report", "community": 31, "community_name": "DOC-001", - "norm_label": "documentation audit report" + "norm_label": "documentation audit report", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_documentation_audit_report" }, { "label": "Domain", @@ -32695,10 +33950,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L27", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_domain", "community": 31, "community_name": "DOC-001", - "norm_label": "domain" + "norm_label": "domain", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_domain" }, { "label": "Domain Overview & Confirmed Strengths", @@ -32706,10 +33962,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L15", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_domain_overview_confirmed_strengths", "community": 31, "community_name": "DOC-001", - "norm_label": "domain overview & confirmed strengths" + "norm_label": "domain overview & confirmed strengths", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_domain_overview_confirmed_strengths" }, { "label": "Evidence", @@ -32717,10 +33974,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L53", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_evidence", "community": 31, "community_name": "DOC-001", - "norm_label": "evidence" + "norm_label": "evidence", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_evidence" }, { "label": "Finding Summary", @@ -32728,10 +33986,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L103", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_finding_summary", "community": 31, "community_name": "DOC-001", - "norm_label": "finding summary" + "norm_label": "finding summary", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_finding_summary" }, { "label": "Findings", @@ -32739,10 +33998,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L20", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_findings", "community": 31, "community_name": "DOC-001", - "norm_label": "findings" + "norm_label": "findings", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_findings" }, { "label": "Implementation Complexity", @@ -32750,10 +34010,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L80", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_implementation_complexity", "community": 31, "community_name": "DOC-001", - "norm_label": "implementation complexity" + "norm_label": "implementation complexity", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_implementation_complexity" }, { "label": "Notes and Limitations", @@ -32761,10 +34022,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L98", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_notes_and_limitations", "community": 31, "community_name": "DOC-001", - "norm_label": "notes and limitations" + "norm_label": "notes and limitations", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_notes_and_limitations" }, { "label": "Problem", @@ -32772,10 +34034,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L56", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_problem", "community": 31, "community_name": "DOC-001", - "norm_label": "problem" + "norm_label": "problem", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_problem" }, { "label": "Recommended Direction", @@ -32783,10 +34046,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L74", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_recommended_direction", "community": 31, "community_name": "DOC-001", - "norm_label": "recommended direction" + "norm_label": "recommended direction", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_recommended_direction" }, { "label": "Relevant Symbols or Lines", @@ -32794,10 +34058,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L49", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_relevant_symbols_or_lines", "community": 31, "community_name": "DOC-001", - "norm_label": "relevant symbols or lines" + "norm_label": "relevant symbols or lines", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_relevant_symbols_or_lines" }, { "label": "Risks", @@ -32805,10 +34070,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L86", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_risks", "community": 31, "community_name": "DOC-001", - "norm_label": "risks" + "norm_label": "risks", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_risks" }, { "label": "Root Cause", @@ -32816,10 +34082,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L59", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_root_cause", "community": 31, "community_name": "DOC-001", - "norm_label": "root cause" + "norm_label": "root cause", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_root_cause" }, { "label": "Security or Data-Integrity Impact", @@ -32827,10 +34094,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L71", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_security_or_data_integrity_impact", "community": 31, "community_name": "DOC-001", - "norm_label": "security or data-integrity impact" + "norm_label": "security or data-integrity impact", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_security_or_data_integrity_impact" }, { "label": "Severity", @@ -32838,10 +34106,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L33", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_severity", "community": 31, "community_name": "DOC-001", - "norm_label": "severity" + "norm_label": "severity", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_severity" }, { "label": "Status", @@ -32849,10 +34118,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L39", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_status", "community": 31, "community_name": "DOC-001", - "norm_label": "status" + "norm_label": "status", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_status" }, { "label": "Technical Impact", @@ -32860,10 +34130,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L68", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_technical_impact", "community": 31, "community_name": "DOC-001", - "norm_label": "technical impact" + "norm_label": "technical impact", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_technical_impact" }, { "label": "Testing Requirements", @@ -32871,10 +34142,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L92", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_testing_requirements", "community": 31, "community_name": "DOC-001", - "norm_label": "testing requirements" + "norm_label": "testing requirements", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_testing_requirements" }, { "label": "Title", @@ -32882,10 +34154,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L24", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_title", "community": 31, "community_name": "DOC-001", - "norm_label": "title" + "norm_label": "title", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_title" }, { "label": "User or Business Impact", @@ -32893,10 +34166,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L65", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_user_or_business_impact", "community": 31, "community_name": "DOC-001", - "norm_label": "user or business impact" + "norm_label": "user or business impact", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_user_or_business_impact" }, { "label": "Verification Requirements", @@ -32904,10 +34178,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L89", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_verification_requirements", "community": 31, "community_name": "DOC-001", - "norm_label": "verification requirements" + "norm_label": "verification requirements", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_verification_requirements" }, { "label": "Why It Matters", @@ -32915,10 +34190,11 @@ "source_file": "docs/audit/14-documentation-audit.md", "source_location": "L62", "_origin": "ast", - "id": "docs_audit_14_documentation_audit_why_it_matters", "community": 31, "community_name": "DOC-001", - "norm_label": "why it matters" + "norm_label": "why it matters", + "node_kind": "heading", + "id": "docs_audit_14_documentation_audit_why_it_matters" }, { "label": "tailwindcss", @@ -32926,10 +34202,10 @@ "source_file": "tailwindcss", "confidence": "EXTRACTED", "_origin": "ast", - "id": "tailwindcss_tailwindcss", "community": 310, "community_name": "tailwindcss", - "norm_label": "tailwindcss" + "norm_label": "tailwindcss", + "id": "tailwindcss_tailwindcss" }, { "label": "@types/multer", @@ -32937,10 +34213,10 @@ "source_file": "backend/package.json", "source_location": "L59", "_origin": "ast", - "id": "backend_package_devdependencies_types_multer", "community": 311, "community_name": "@types/multer", - "norm_label": "@types/multer" + "norm_label": "@types/multer", + "id": "backend_package_devdependencies_types_multer" }, { "label": "@types/multer", @@ -32948,10 +34224,10 @@ "source_file": "backend/package.json", "source_location": "L59", "_origin": "ast", - "id": "types_multer", "community": 311, "community_name": "@types/multer", - "norm_label": "@types/multer" + "norm_label": "@types/multer", + "id": "types_multer" }, { "label": "@types/passport-jwt", @@ -32959,10 +34235,10 @@ "source_file": "backend/package.json", "source_location": "L61", "_origin": "ast", - "id": "backend_package_devdependencies_types_passport_jwt", "community": 312, "community_name": "@types/passport-jwt", - "norm_label": "@types/passport-jwt" + "norm_label": "@types/passport-jwt", + "id": "backend_package_devdependencies_types_passport_jwt" }, { "label": "@types/passport-jwt", @@ -32970,1385 +34246,32 @@ "source_file": "backend/package.json", "source_location": "L61", "_origin": "ast", - "id": "types_passport_jwt", "community": 312, "community_name": "@types/passport-jwt", - "norm_label": "@types/passport-jwt" + "norm_label": "@types/passport-jwt", + "id": "types_passport_jwt" }, { - "label": "MenuManager.tsx", + "label": "Modal.tsx", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_menumanager", "community": 313, - "community_name": "MenuManager.tsx", - "norm_label": "menumanager.tsx" + "community_name": "Modal.tsx", + "norm_label": "modal.tsx", + "id": "frontend_admin_panel_src_components_ui_modal" }, { - "label": "MENU_TABS", + "label": "maxWidthClasses", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L31", + "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", + "source_location": "L16", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_menumanager_menu_tabs", "community": 313, - "community_name": "MenuManager.tsx", - "norm_label": "menu_tabs" - }, - { - "label": "MenuManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L46", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_menumanager", - "community": 313, - "community_name": "MenuManager.tsx", - "norm_label": "menumanager" - }, - { - "label": "typescript-eslint", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L77", - "_origin": "ast", - "id": "backend_package_devdependencies_typescript_eslint", - "community": 314, - "community_name": "typescript-eslint", - "norm_label": "typescript-eslint" - }, - { - "label": "typescript-eslint", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L77", - "_origin": "ast", - "id": "backend_package_json_typescript_eslint", - "community": 314, - "community_name": "typescript-eslint", - "norm_label": "typescript-eslint" - }, - { - "label": "typescript", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_typescript", - "community": 315, - "community_name": "typescript", - "norm_label": "typescript" - }, - { - "label": "typescript", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_application_package_json_typescript", - "community": 315, - "community_name": "typescript", - "norm_label": "typescript" - }, - { - "label": "revalidate/route.ts", - "file_type": "code", - "source_file": "frontend/application/app/api/revalidate/route.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_api_revalidate_route", - "community": 317, - "community_name": "revalidate/route.ts", - "norm_label": "revalidate/route.ts" - }, - { - "label": "MaskableField.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_maskablefield", - "community": 318, - "community_name": "MaskableField.tsx", - "norm_label": "maskablefield.tsx" - }, - { - "label": "App.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/App.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_app", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "app.tsx" - }, - { - "label": "main.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/main.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_main", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "main.tsx" - }, - { - "label": "Dashboard.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_dashboard", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "dashboard.tsx" - }, - { - "label": "PaymentGatewaysPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_paymentgatewayspage", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "paymentgatewayspage.tsx" - }, - { - "label": "Settings.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Settings.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_settings", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "settings.tsx" - }, - { - "label": "WholesaleApplications.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_wholesaleapplications", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "wholesaleapplications.tsx" - }, - { - "label": "ZibalPortalPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_zibalportalpage", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "zibalportalpage.tsx" - }, - { - "label": "adminRoutes.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "adminroutes.tsx" - }, - { - "label": "BannersManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L27", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_bannersmanager", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "bannersmanager" - }, - { - "label": "Categories", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_categories", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "categories" - }, - { - "label": "Dashboard", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L10", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_dashboard", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "dashboard" - }, - { - "label": "DoctorsManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L44", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_doctorsmanager", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "doctorsmanager" - }, - { - "label": "IngredientsManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L30", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "ingredientsmanager" - }, - { - "label": "Media", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L22", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_media", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "media" - }, - { - "label": "PaymentGatewaysPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L35", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_paymentgatewayspage", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "paymentgatewayspage" - }, - { - "label": "Pets", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L20", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_pets", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "pets" - }, - { - "label": "Products", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_products", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "products" - }, - { - "label": "router", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L56", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_router", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "router" - }, - { - "label": "Settings", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L15", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_settings", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "settings" - }, - { - "label": "SslSettingsPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L40", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "sslsettingspage" - }, - { - "label": "TestimonialsManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L29", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "testimonialsmanager" - }, - { - "label": "WholesaleApplications", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L24", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "wholesaleapplications" - }, - { - "label": "ZibalPortalPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L36", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_zibalportalpage", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "zibalportalpage" - }, - { - "label": "lazyWithRetry.ts", - "file_type": "code", - "source_file": "frontend/admin-panel/src/utils/lazyWithRetry.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_utils_lazywithretry", - "community": 32, - "community_name": "adminRoutes.tsx", - "norm_label": "lazywithretry.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apipropertyoptional", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isnotempty", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isoptional", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isstring", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "isstring" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_apioperation", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_apitags", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_body", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_controller", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_get", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_param", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_post", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_put", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "put" - }, - { - "label": "Request", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_request", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "request" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_controller_ts_useguards", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wholesale_wholesale_service_ts_injectable", - "community": 33, - "community_name": "WholesaleApplyDto", - "norm_label": "injectable" - }, - { - "label": "b2b.controller.ts", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller", - "community": 34, - "community_name": "B2BService", - "norm_label": "b2b.controller.ts" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_apibearerauth", - "community": 34, - "community_name": "B2BService", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_apioperation", - "community": 34, - "community_name": "B2BService", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_apitags", - "community": 34, - "community_name": "B2BService", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_body", - "community": 34, - "community_name": "B2BService", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_controller", - "community": 34, - "community_name": "B2BService", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_get", - "community": 34, - "community_name": "B2BService", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_param", - "community": 34, - "community_name": "B2BService", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_post", - "community": 34, - "community_name": "B2BService", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_put", - "community": 34, - "community_name": "B2BService", - "norm_label": "put" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_req", - "community": 34, - "community_name": "B2BService", - "norm_label": "req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_controller_ts_useguards", - "community": 34, - "community_name": "B2BService", - "norm_label": "useguards" - }, - { - "label": "b2b.module.ts", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_b2b_b2b_module", - "community": 34, - "community_name": "B2BService", - "norm_label": "b2b.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_module_ts_module", - "community": 34, - "community_name": "B2BService", - "norm_label": "module" - }, - { - "label": "b2b.service.ts", - "file_type": "code", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_b2b_b2b_service", - "community": 34, - "community_name": "B2BService", - "norm_label": "b2b.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_b2b_b2b_service_ts_injectable", - "community": 34, - "community_name": "B2BService", - "norm_label": "injectable" - }, - { - "label": "ApiBadRequestResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_apibadrequestresponse", - "community": 35, - "community_name": "AuthController", - "norm_label": "apibadrequestresponse" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_apibearerauth", - "community": 35, - "community_name": "AuthController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_apiokresponse", - "community": 35, - "community_name": "AuthController", - "norm_label": "apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_apioperation", - "community": 35, - "community_name": "AuthController", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_apitags", - "community": 35, - "community_name": "AuthController", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_body", - "community": 35, - "community_name": "AuthController", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_controller", - "community": 35, - "community_name": "AuthController", - "norm_label": "controller" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_post", - "community": 35, - "community_name": "AuthController", - "norm_label": "post" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_req", - "community": 35, - "community_name": "AuthController", - "norm_label": "req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_controller_ts_useguards", - "community": 35, - "community_name": "AuthController", - "norm_label": "useguards" - }, - { - "label": "HttpCode", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "httpcode", - "community": 35, - "community_name": "AuthController", - "norm_label": "httpcode" - }, - { - "label": "faq.controller.ts", - "file_type": "code", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_faq_faq_controller", - "community": 36, - "community_name": "FaqService", - "norm_label": "faq.controller.ts" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_faq_faq_controller_ts_apibearerauth", - "community": 36, - "community_name": "FaqService", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_faq_faq_controller_ts_apioperation", - "community": 36, - "community_name": "FaqService", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_faq_faq_controller_ts_apitags", - "community": 36, - "community_name": "FaqService", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_faq_faq_controller_ts_body", - "community": 36, - "community_name": "FaqService", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_faq_faq_controller_ts_controller", - "community": 36, - "community_name": "FaqService", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_faq_faq_controller_ts_delete", - "community": 36, - "community_name": "FaqService", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_faq_faq_controller_ts_get", - "community": 36, - "community_name": "FaqService", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_faq_faq_controller_ts_param", - "community": 36, - "community_name": "FaqService", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_faq_faq_controller_ts_post", - "community": 36, - "community_name": "FaqService", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_faq_faq_controller_ts_put", - "community": 36, - "community_name": "FaqService", - "norm_label": "put" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_faq_faq_controller_ts_useguards", - "community": 36, - "community_name": "FaqService", - "norm_label": "useguards" - }, - { - "label": "faq.module.ts", - "file_type": "code", - "source_file": "backend/src/faq/faq.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_faq_faq_module", - "community": 36, - "community_name": "FaqService", - "norm_label": "faq.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_faq_faq_module_ts_module", - "community": 36, - "community_name": "FaqService", - "norm_label": "module" - }, - { - "label": "faq.service.ts", - "file_type": "code", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_faq_faq_service", - "community": 36, - "community_name": "FaqService", - "norm_label": "faq.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_faq_faq_service_ts_injectable", - "community": 36, - "community_name": "FaqService", - "norm_label": "injectable" - }, - { - "label": "04-setup-and-deployment.md", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_04_setup_and_deployment", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "04-setup-and-deployment.md" - }, - { - "label": "\u0627\u062c\u0631\u0627\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L13", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0628\u06a9_\u0627\u0646\u062f", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f" - }, - { - "label": "\u0627\u062c\u0631\u0627\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L22", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f" - }, - { - "label": "\u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0648\u0698\u0647 \u062f\u0631 \u0633\u0631\u0648\u0631 \u0628\u0627 PM2", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L48", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0648\u0698\u0647 \u062f\u0631 \u0633\u0631\u0648\u0631 \u0628\u0627 pm2" - }, - { - "label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f:", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L52", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u06a9_\u0627\u0646\u062f", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f:" - }, - { - "label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f Next.js:", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L58", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_next_js", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f next.js:" - }, - { - "label": "\u0628\u06cc\u0644\u062f \u06a9\u0631\u062f\u0646 \u067e\u0631\u0648\u0698\u0647 (Building)", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L36", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0628\u06cc\u0644\u062f_\u06a9\u0631\u062f\u0646_\u067e\u0631\u0648\u0698\u0647_building", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0628\u06cc\u0644\u062f \u06a9\u0631\u062f\u0646 \u067e\u0631\u0648\u0698\u0647 (building)" - }, - { - "label": "\u0630\u062e\u06cc\u0631\u0647 \u067e\u0631\u0648\u0633\u0647\u200c\u0647\u0627 \u062a\u0627 \u067e\u0633 \u0627\u0632 \u0631\u06cc\u200c\u0627\u0633\u062a\u0627\u0631\u062a \u0633\u0631\u0648\u0631 \u0642\u0637\u0639 \u0646\u0634\u0648\u0646\u062f:", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L64", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0630\u062e\u06cc\u0631\u0647_\u067e\u0631\u0648\u0633\u0647_\u0647\u0627_\u062a\u0627_\u067e\u0633_\u0627\u0632_\u0631\u06cc_\u0627\u0633\u062a\u0627\u0631\u062a_\u0633\u0631\u0648\u0631_\u0642\u0637\u0639_\u0646\u0634\u0648\u0646\u062f", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0630\u062e\u06cc\u0631\u0647 \u067e\u0631\u0648\u0633\u0647\u200c\u0647\u0627 \u062a\u0627 \u067e\u0633 \u0627\u0632 \u0631\u06cc\u200c\u0627\u0633\u062a\u0627\u0631\u062a \u0633\u0631\u0648\u0631 \u0642\u0637\u0639 \u0646\u0634\u0648\u0646\u062f:" - }, - { - "label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 \u0633\u06cc\u0633\u062a\u0645 (Setup & Deployment)", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 \u0633\u06cc\u0633\u062a\u0645 (setup & deployment)" - }, - { - "label": "\u0646\u0645\u0648\u0646\u0647 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af Nginx", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L78", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u0646\u0645\u0648\u0646\u0647_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_nginx", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0646\u0645\u0648\u0646\u0647 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af nginx" - }, - { - "label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L9", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627" - }, - { - "label": "\u06f1. \u0645\u062d\u06cc\u0637 \u062a\u0648\u0633\u0639\u0647 (Development Mode)", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L5", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f1. \u0645\u062d\u06cc\u0637 \u062a\u0648\u0633\u0639\u0647 (development mode)" - }, - { - "label": "\u06f2. \u0645\u062d\u06cc\u0637 \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646 \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 (Production Deployment)", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L32", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f2. \u0645\u062d\u06cc\u0637 \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646 \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 (production deployment)" - }, - { - "label": "\u06f3. \u062a\u0646\u0638\u06cc\u0645\u0627\u062a Nginx (Reverse Proxy)", - "file_type": "document", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L72", - "_origin": "ast", - "id": "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f3. \u062a\u0646\u0638\u06cc\u0645\u0627\u062a nginx (reverse proxy)" - }, - { - "label": "05-devops-and-monitoring.md", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_05_devops_and_monitoring", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "05-devops-and-monitoring.md" - }, - { - "label": "\u062f\u0648\u0627\u067e\u0633 \u0648 \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0633\u06cc\u0633\u062a\u0645 (DevOps & Monitoring)", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u062f\u0648\u0627\u067e\u0633 \u0648 \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0633\u06cc\u0633\u062a\u0645 (devops & monitoring)" - }, - { - "label": "\u06f1. \u0641\u0631\u0622\u06cc\u0646\u062f \u0627\u0633\u062a\u0642\u0631\u0627\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 (CI/CD)", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L5", - "_origin": "ast", - "id": "docs_05_devops_and_monitoring_\u06f1_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0627\u0633\u062a\u0642\u0631\u0627\u0631_\u062e\u0648\u062f\u06a9\u0627\u0631_ci_cd", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f1. \u0641\u0631\u0627\u06cc\u0646\u062f \u0627\u0633\u062a\u0642\u0631\u0627\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 (ci/cd)" - }, - { - "label": "\u06f2. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0639\u0645\u0644\u06a9\u0631\u062f (PM2 Dashboard)", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L12", - "_origin": "ast", - "id": "docs_05_devops_and_monitoring_\u06f2_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0639\u0645\u0644\u06a9\u0631\u062f_pm2_dashboard", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f2. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0639\u0645\u0644\u06a9\u0631\u062f (pm2 dashboard)" - }, - { - "label": "\u06f3. \u0628\u0631\u0631\u0633\u06cc \u0644\u0627\u06af\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645 (Logs Management)", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L27", - "_origin": "ast", - "id": "docs_05_devops_and_monitoring_\u06f3_\u0628\u0631\u0631\u0633\u06cc_\u0644\u0627\u06af_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645_logs_management", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f3. \u0628\u0631\u0631\u0633\u06cc \u0644\u0627\u06af\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645 (logs management)" - }, - { - "label": "\u06f4. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 (PostgreSQL)", - "file_type": "document", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L39", - "_origin": "ast", - "id": "docs_05_devops_and_monitoring_\u06f4_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_postgresql", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f4. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 (postgresql)" - }, - { - "label": "06-testing.md", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_06_testing", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "06-testing.md" - }, - { - "label": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (software testing)" - }, - { - "label": "\u06f1. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0648\u0627\u062d\u062f \u062f\u0631 Backend (Unit Testing)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L5", - "_origin": "ast", - "id": "docs_06_testing_\u06f1_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0648\u0627\u062d\u062f_\u062f\u0631_backend_unit_testing", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f1. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0648\u0627\u062d\u062f \u062f\u0631 backend (unit testing)" - }, - { - "label": "\u06f2. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc End-to-End \u062f\u0631 Backend (E2E Testing)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L17", - "_origin": "ast", - "id": "docs_06_testing_\u06f2_\u062a\u0633\u062a_\u0647\u0627\u06cc_end_to_end_\u062f\u0631_backend_e2e_testing", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f2. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc end-to-end \u062f\u0631 backend (e2e testing)" - }, - { - "label": "\u06f3. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc UI \u062f\u0631 Frontend (Component Testing)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L27", - "_origin": "ast", - "id": "docs_06_testing_\u06f3_\u062a\u0633\u062a_\u0647\u0627\u06cc_ui_\u062f\u0631_frontend_component_testing", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f3. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc ui \u062f\u0631 frontend (component testing)" - }, - { - "label": "\u06f4. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc \u062f\u0631 Frontend (E2E Frontend - Playwright / Cypress)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L35", - "_origin": "ast", - "id": "docs_06_testing_\u06f4_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u062f\u0631_frontend_e2e_frontend_playwright_cypress", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f4. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc \u062f\u0631 frontend (e2e frontend - playwright / cypress)" - }, - { - "label": "\u06f5. \u0686\u06a9 \u0644\u06cc\u0633\u062a \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u062f\u0633\u062a\u06cc (Manual QA Checklist)", - "file_type": "document", - "source_file": "docs/06-testing.md", - "source_location": "L38", - "_origin": "ast", - "id": "docs_06_testing_\u06f5_\u0686\u06a9_\u0644\u06cc\u0633\u062a_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u062f\u0633\u062a\u06cc_manual_qa_checklist", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u06f5. \u0686\u06a9 \u0644\u06cc\u0633\u062a \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u062f\u0633\u062a\u06cc (manual qa checklist)" - }, - { - "label": "docs/README.md", - "file_type": "document", - "source_file": "docs/README.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_readme", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "docs/readme.md" - }, - { - "label": "\u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628 (Table of Contents)", - "file_type": "document", - "source_file": "docs/README.md", - "source_location": "L7", - "_origin": "ast", - "id": "docs_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628_table_of_contents", - "community": 37, - "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", - "norm_label": "\u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628 (table of contents)" - }, - { - "label": "TransactionReceiptModal.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_transactionreceiptmodal", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "transactionreceiptmodal.tsx" - }, - { - "label": "Button.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_button", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "button.tsx" - }, - { - "label": "ThSort.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ThSort.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_thsort", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "thsort.tsx" + "community_name": "Modal.tsx", + "norm_label": "maxwidthclasses", + "id": "frontend_admin_panel_src_components_ui_modal_maxwidthclasses" }, { "label": "ContactSubmissions.tsx", @@ -34356,21 +34279,32 @@ "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_contactsubmissions", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "contactsubmissions.tsx" + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "contactsubmissions.tsx", + "id": "frontend_admin_panel_src_pages_contactsubmissions" }, { - "label": "Reviews.tsx", + "label": "MenuManager.tsx", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_reviews", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "reviews.tsx" + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "menumanager.tsx", + "id": "frontend_admin_panel_src_pages_menumanager" + }, + { + "label": "MENU_TABS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L31", + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "menu_tabs", + "id": "frontend_admin_panel_src_pages_menumanager_menu_tabs" }, { "label": "Tickets.tsx", @@ -34378,21 +34312,32 @@ "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_tickets", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "tickets.tsx" + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "tickets.tsx", + "id": "frontend_admin_panel_src_pages_tickets" }, { - "label": "Transactions.tsx", + "label": "Wiki.tsx", "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_transactions", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "transactions.tsx" + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "wiki.tsx", + "id": "frontend_admin_panel_src_pages_wiki" + }, + { + "label": "ZibalPortalPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "zibalportalpage.tsx", + "id": "frontend_admin_panel_src_pages_zibalportalpage" }, { "label": "ContactSubmissions", @@ -34400,21 +34345,21 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L26", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "contactsubmissions" + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "contactsubmissions", + "id": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions" }, { - "label": "Reviews", + "label": "MenuManager", "file_type": "code", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L43", + "source_location": "L46", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_reviews", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "reviews" + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "menumanager", + "id": "frontend_admin_panel_src_routes_adminroutes_menumanager" }, { "label": "Tickets", @@ -34422,1561 +34367,109 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L42", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_tickets", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "tickets" + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "tickets", + "id": "frontend_admin_panel_src_routes_adminroutes_tickets" }, { - "label": "Transactions", + "label": "Wiki", "file_type": "code", "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L41", + "source_location": "L19", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_transactions", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "transactions" + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "wiki", + "id": "frontend_admin_panel_src_routes_adminroutes_wiki" }, { - "label": "useTableParams.ts", + "label": "ZibalPortalPage", "file_type": "code", - "source_file": "frontend/admin-panel/src/utils/useTableParams.ts", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L36", + "_origin": "ast", + "community": 313, + "community_name": "Modal.tsx", + "norm_label": "zibalportalpage", + "id": "frontend_admin_panel_src_routes_adminroutes_zibalportalpage" + }, + { + "label": "typescript", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L33", + "_origin": "ast", + "community": 315, + "community_name": "typescript", + "norm_label": "typescript", + "id": "frontend_application_package_devdependencies_typescript" + }, + { + "label": "typescript", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L33", + "_origin": "ast", + "community": 315, + "community_name": "typescript", + "norm_label": "typescript", + "id": "frontend_application_package_json_typescript" + }, + { + "label": "revalidate/route.ts", + "file_type": "code", + "source_file": "frontend/application/app/api/revalidate/route.ts", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_utils_usetableparams", - "community": 38, - "community_name": "Button.tsx", - "norm_label": "usetableparams.ts" + "community": 317, + "community_name": "revalidate/route.ts", + "norm_label": "revalidate/route.ts", + "id": "frontend_application_app_api_revalidate_route" }, { - "label": "categories.controller.ts", + "label": "MaskableField.tsx", "file_type": "code", - "source_file": "backend/src/admin/categories.controller.ts", + "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", "source_location": "L1", "_origin": "ast", - "id": "backend_src_admin_categories_controller", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "categories.controller.ts" + "community": 318, + "community_name": "MaskableField.tsx", + "norm_label": "maskablefield.tsx", + "id": "frontend_admin_panel_src_components_ui_maskablefield" }, { - "label": "ApiBearerAuth", + "label": "App.tsx", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_apibearerauth", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_apioperation", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "apioperation" - }, - { - "label": "ApiQuery", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_apiquery", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "apiquery" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_apitags", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_body", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_controller", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_delete", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_get", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_param", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_post", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_put", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "put" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_query", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_controller_ts_useguards", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "useguards" - }, - { - "label": "categories.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/categories.service.ts", + "source_file": "frontend/admin-panel/src/App.tsx", "source_location": "L1", "_origin": "ast", - "id": "backend_src_admin_categories_service", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "categories.service.ts" + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "app.tsx", + "id": "frontend_admin_panel_src_app" }, { - "label": "Injectable", + "label": "RouteErrorBoundary.tsx", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_categories_service_ts_injectable", - "community": 39, - "community_name": "CategoriesController", - "norm_label": "injectable" - }, - { - "label": "BlogPage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/BlogPage.tsx", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_blogpage", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "blogpage.tsx" + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "routeerrorboundary.tsx", + "id": "frontend_admin_panel_src_components_routeerrorboundary" }, { - "label": "ProductDetailModal.tsx", + "label": "main.tsx", "file_type": "code", - "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", + "source_file": "frontend/admin-panel/src/main.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_catalog_productdetailmodal", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "productdetailmodal.tsx" - }, - { - "label": "OrderDetailsModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_orderdetailsmodal", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "orderdetailsmodal.tsx" - }, - { - "label": "PodcastInlinePlayer.tsx", - "file_type": "code", - "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_podcastinlineplayer", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "podcastinlineplayer.tsx" - }, - { - "label": "PLAYBACK_RATES", - "file_type": "code", - "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", - "source_location": "L30", - "_origin": "ast", - "id": "frontend_application_components_podcastinlineplayer_playback_rates", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "playback_rates" - }, - { - "label": "PodcastPlayerModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/PodcastPlayerModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_podcastplayermodal", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "podcastplayermodal.tsx" - }, - { - "label": "PLAYBACK_RATES", - "file_type": "code", - "source_file": "frontend/application/components/PodcastPlayerModal.tsx", - "source_location": "L34", - "_origin": "ast", - "id": "frontend_application_components_podcastplayermodal_playback_rates", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "playback_rates" - }, - { - "label": "VideoModalPlayer", - "file_type": "code", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L73", - "_origin": "ast", - "id": "frontend_application_components_productpage_videomodalplayer", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "videomodalplayer" - }, - { - "label": "SafeImage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/SafeImage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_safeimage", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "safeimage.tsx" - }, - { - "label": "VetGallery.tsx", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_vetgallery", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "vetgallery.tsx" - }, - { - "label": "FALLBACK_VIDEOS", - "file_type": "code", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L28", - "_origin": "ast", - "id": "frontend_application_components_vetgallery_fallback_videos", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "fallback_videos" - }, - { - "label": "VideoModalPlayer.tsx", - "file_type": "code", - "source_file": "frontend/application/components/VideoModalPlayer.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_videomodalplayer", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "videomodalplayer.tsx" - }, - { - "label": "PLAYBACK_RATES", - "file_type": "code", - "source_file": "frontend/application/components/VideoModalPlayer.tsx", - "source_location": "L37", - "_origin": "ast", - "id": "frontend_application_components_videomodalplayer_playback_rates", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "playback_rates" - }, - { - "label": "VideosPage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/VideosPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_videospage", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "videospage.tsx" - }, - { - "label": "videoService.ts", - "file_type": "code", - "source_file": "frontend/application/lib/services/videoService.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_services_videoservice", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "videoservice.ts" - }, - { - "label": "videoService", - "file_type": "code", - "source_file": "frontend/application/lib/services/videoService.ts", - "source_location": "L15", - "_origin": "ast", - "id": "frontend_application_lib_services_videoservice_videoservice", - "community": 4, - "community_name": "SafeImage.tsx", - "norm_label": "videoservice" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_apibearerauth", - "community": 40, - "community_name": "MediaController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_apioperation", - "community": 40, - "community_name": "MediaController", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_apitags", - "community": 40, - "community_name": "MediaController", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_body", - "community": 40, - "community_name": "MediaController", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_controller", - "community": 40, - "community_name": "MediaController", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_delete", - "community": 40, - "community_name": "MediaController", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_get", - "community": 40, - "community_name": "MediaController", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_param", - "community": 40, - "community_name": "MediaController", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_post", - "community": 40, - "community_name": "MediaController", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_put", - "community": 40, - "community_name": "MediaController", - "norm_label": "put" - }, - { - "label": "UploadedFile", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_uploadedfile", - "community": 40, - "community_name": "MediaController", - "norm_label": "uploadedfile" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_useguards", - "community": 40, - "community_name": "MediaController", - "norm_label": "useguards" - }, - { - "label": "UseInterceptors", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_controller_ts_useinterceptors", - "community": 40, - "community_name": "MediaController", - "norm_label": "useinterceptors" - }, - { - "label": ".antigravity/workflows/graphify.md", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L1", - "_origin": "ast", - "id": "antigravity_workflows_graphify", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": ".antigravity/workflows/graphify.md" - }, - { - "label": "For /graphify add and --watch", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L719", - "_origin": "ast", - "id": "antigravity_workflows_graphify_for_graphify_add_and_watch", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "for /graphify add and --watch" - }, - { - "label": "For /graphify query", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L707", - "_origin": "ast", - "id": "antigravity_workflows_graphify_for_graphify_query", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "for /graphify query" - }, - { - "label": "For the commit hook and native CLAUDE.md integration", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L725", - "_origin": "ast", - "id": "antigravity_workflows_graphify_for_the_commit_hook_and_native_claude_md_integration", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "for the commit hook and native claude.md integration" - }, - { - "label": "For --update and --cluster-only", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L701", - "_origin": "ast", - "id": "antigravity_workflows_graphify_for_update_and_cluster_only", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "for --update and --cluster-only" - }, - { - "label": "/graphify", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L6", - "_origin": "ast", - "id": "antigravity_workflows_graphify_graphify", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "/graphify" - }, - { - "label": "Honesty Rules", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L744", - "_origin": "ast", - "id": "antigravity_workflows_graphify_honesty_rules", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "honesty rules" - }, - { - "label": "Interpreter guard for subcommands", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L681", - "_origin": "ast", - "id": "antigravity_workflows_graphify_interpreter_guard_for_subcommands", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "interpreter guard for subcommands" - }, - { - "label": "Part A - Structural extraction for code files", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L192", - "_origin": "ast", - "id": "antigravity_workflows_graphify_part_a_structural_extraction_for_code_files", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "part a - structural extraction for code files" - }, - { - "label": "Part B - Semantic extraction (parallel subagents)", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L218", - "_origin": "ast", - "id": "antigravity_workflows_graphify_part_b_semantic_extraction_parallel_subagents", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "part b - semantic extraction (parallel subagents)" - }, - { - "label": "Part C - Merge AST + semantic into final extraction", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L381", - "_origin": "ast", - "id": "antigravity_workflows_graphify_part_c_merge_ast_semantic_into_final_extraction", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "part c - merge ast + semantic into final extraction" - }, - { - "label": "PowerShell 5.1: Vertical scrolling stops working", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L733", - "_origin": "ast", - "id": "antigravity_workflows_graphify_powershell_5_1_vertical_scrolling_stops_working", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "powershell 5.1: vertical scrolling stops working" - }, - { - "label": "Step 0 - GitHub repos and multi-path merge (only if a URL or several paths)", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L61", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 0 - github repos and multi-path merge (only if a url or several paths)" - }, - { - "label": "Step 1 - Ensure graphify is installed", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L65", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_1_ensure_graphify_is_installed", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 1 - ensure graphify is installed" - }, - { - "label": "Step 2.5 - Video and audio (only if video files detected)", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L169", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_2_5_video_and_audio_only_if_video_files_detected", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 2.5 - video and audio (only if video files detected)" - }, - { - "label": "Step 2 - Detect files", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L129", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_2_detect_files", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 2 - detect files" - }, - { - "label": "Step 3 - Extract entities and relationships", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L173", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 3 - extract entities and relationships" - }, - { - "label": "Step 4.5 - Graph health check (read-only integrity gate)", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L478", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_4_5_graph_health_check_read_only_integrity_gate", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 4.5 - graph health check (read-only integrity gate)" - }, - { - "label": "Step 4 - Build graph, cluster, analyze, generate outputs", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L415", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_4_build_graph_cluster_analyze_generate_outputs", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 4 - build graph, cluster, analyze, generate outputs" - }, - { - "label": "Step 5 - Label communities", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L504", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_5_label_communities", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 5 - label communities" - }, - { - "label": "Step 6 - Generate Obsidian vault (opt-in) + HTML", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L553", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_6_generate_obsidian_vault_opt_in_html", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 6 - generate obsidian vault (opt-in) + html" - }, - { - "label": "Step 9 - Save manifest, update cost tracker, clean up, and report", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L579", - "_origin": "ast", - "id": "antigravity_workflows_graphify_step_9_save_manifest_update_cost_tracker_clean_up_and_report", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 9 - save manifest, update cost tracker, clean up, and report" - }, - { - "label": "Steps 6b-8 - Wiki, Neo4j, FalkorDB, SVG, GraphML, MCP, benchmark (only on their flags)", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L573", - "_origin": "ast", - "id": "antigravity_workflows_graphify_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "steps 6b-8 - wiki, neo4j, falkordb, svg, graphml, mcp, benchmark (only on their flags)" - }, - { - "label": "Troubleshooting", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L731", - "_origin": "ast", - "id": "antigravity_workflows_graphify_troubleshooting", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "troubleshooting" - }, - { - "label": "Usage", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L10", - "_origin": "ast", - "id": "antigravity_workflows_graphify_usage", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "usage" - }, - { - "label": "What graphify is for", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L45", - "_origin": "ast", - "id": "antigravity_workflows_graphify_what_graphify_is_for", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "what graphify is for" - }, - { - "label": "What You Must Do When Invoked", - "file_type": "document", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L49", - "_origin": "ast", - "id": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "community": 41, - "community_name": "What You Must Do When Invoked", - "norm_label": "what you must do when invoked" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_apibearerauth", - "community": 42, - "community_name": "SslController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_apioperation", - "community": 42, - "community_name": "SslController", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_apitags", - "community": 42, - "community_name": "SslController", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_body", - "community": 42, - "community_name": "SslController", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_controller", - "community": 42, - "community_name": "SslController", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_get", - "community": 42, - "community_name": "SslController", - "norm_label": "get" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_post", - "community": 42, - "community_name": "SslController", - "norm_label": "post" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_query", - "community": 42, - "community_name": "SslController", - "norm_label": "query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_useguards", - "community": 42, - "community_name": "SslController", - "norm_label": "useguards" - }, - { - "label": "UseInterceptors", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_ssl_controller_ts_useinterceptors", - "community": 42, - "community_name": "SslController", - "norm_label": "useinterceptors" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_ssl_service_ts_injectable", - "community": 42, - "community_name": "SslController", - "norm_label": "injectable" - }, - { - "label": "UploadedFiles", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "uploadedfiles", - "community": 42, - "community_name": "SslController", - "norm_label": "uploadedfiles" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_apibearerauth", - "community": 43, - "community_name": "BannersService", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_apioperation", - "community": 43, - "community_name": "BannersService", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_apitags", - "community": 43, - "community_name": "BannersService", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_body", - "community": 43, - "community_name": "BannersService", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_controller", - "community": 43, - "community_name": "BannersService", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_delete", - "community": 43, - "community_name": "BannersService", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_get", - "community": 43, - "community_name": "BannersService", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_param", - "community": 43, - "community_name": "BannersService", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_patch", - "community": 43, - "community_name": "BannersService", - "norm_label": "patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_post", - "community": 43, - "community_name": "BannersService", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_put", - "community": 43, - "community_name": "BannersService", - "norm_label": "put" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_controller_ts_useguards", - "community": 43, - "community_name": "BannersService", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_banners_banners_service_ts_injectable", - "community": 43, - "community_name": "BannersService", - "norm_label": "injectable" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_apibearerauth", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_apioperation", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_apitags", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_body", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_controller", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_delete", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_get", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_param", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_patch", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": "patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_post", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": "post" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_testimonials_testimonials_controller_ts_useguards", - "community": 44, - "community_name": "TestimonialsController", - "norm_label": "useguards" - }, - { - "label": "SKILL.md", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L1", - "_origin": "ast", - "id": "claude_skills_graphify_skill", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "skill.md" - }, - { - "label": "For /graphify add and --watch", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L719", - "_origin": "ast", - "id": "claude_skills_graphify_skill_for_graphify_add_and_watch", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "for /graphify add and --watch" - }, - { - "label": "For /graphify query", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L707", - "_origin": "ast", - "id": "claude_skills_graphify_skill_for_graphify_query", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "for /graphify query" - }, - { - "label": "For the commit hook and native CLAUDE.md integration", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L725", - "_origin": "ast", - "id": "claude_skills_graphify_skill_for_the_commit_hook_and_native_claude_md_integration", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "for the commit hook and native claude.md integration" - }, - { - "label": "For --update and --cluster-only", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L701", - "_origin": "ast", - "id": "claude_skills_graphify_skill_for_update_and_cluster_only", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "for --update and --cluster-only" - }, - { - "label": "/graphify", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L6", - "_origin": "ast", - "id": "claude_skills_graphify_skill_graphify", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "/graphify" - }, - { - "label": "Honesty Rules", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L744", - "_origin": "ast", - "id": "claude_skills_graphify_skill_honesty_rules", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "honesty rules" - }, - { - "label": "Interpreter guard for subcommands", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L681", - "_origin": "ast", - "id": "claude_skills_graphify_skill_interpreter_guard_for_subcommands", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "interpreter guard for subcommands" - }, - { - "label": "Part A - Structural extraction for code files", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L192", - "_origin": "ast", - "id": "claude_skills_graphify_skill_part_a_structural_extraction_for_code_files", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "part a - structural extraction for code files" - }, - { - "label": "Part B - Semantic extraction (parallel subagents)", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L218", - "_origin": "ast", - "id": "claude_skills_graphify_skill_part_b_semantic_extraction_parallel_subagents", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "part b - semantic extraction (parallel subagents)" - }, - { - "label": "Part C - Merge AST + semantic into final extraction", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L381", - "_origin": "ast", - "id": "claude_skills_graphify_skill_part_c_merge_ast_semantic_into_final_extraction", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "part c - merge ast + semantic into final extraction" - }, - { - "label": "PowerShell 5.1: Vertical scrolling stops working", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L733", - "_origin": "ast", - "id": "claude_skills_graphify_skill_powershell_5_1_vertical_scrolling_stops_working", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "powershell 5.1: vertical scrolling stops working" - }, - { - "label": "Step 0 - GitHub repos and multi-path merge (only if a URL or several paths)", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L61", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 0 - github repos and multi-path merge (only if a url or several paths)" - }, - { - "label": "Step 1 - Ensure graphify is installed", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L65", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_1_ensure_graphify_is_installed", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 1 - ensure graphify is installed" - }, - { - "label": "Step 2.5 - Video and audio (only if video files detected)", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L169", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_2_5_video_and_audio_only_if_video_files_detected", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 2.5 - video and audio (only if video files detected)" - }, - { - "label": "Step 2 - Detect files", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L129", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_2_detect_files", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 2 - detect files" - }, - { - "label": "Step 3 - Extract entities and relationships", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L173", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 3 - extract entities and relationships" - }, - { - "label": "Step 4.5 - Graph health check (read-only integrity gate)", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L478", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_4_5_graph_health_check_read_only_integrity_gate", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 4.5 - graph health check (read-only integrity gate)" - }, - { - "label": "Step 4 - Build graph, cluster, analyze, generate outputs", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L415", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_4_build_graph_cluster_analyze_generate_outputs", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 4 - build graph, cluster, analyze, generate outputs" - }, - { - "label": "Step 5 - Label communities", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L504", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_5_label_communities", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 5 - label communities" - }, - { - "label": "Step 6 - Generate Obsidian vault (opt-in) + HTML", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L553", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_6_generate_obsidian_vault_opt_in_html", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 6 - generate obsidian vault (opt-in) + html" - }, - { - "label": "Step 9 - Save manifest, update cost tracker, clean up, and report", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L579", - "_origin": "ast", - "id": "claude_skills_graphify_skill_step_9_save_manifest_update_cost_tracker_clean_up_and_report", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "step 9 - save manifest, update cost tracker, clean up, and report" - }, - { - "label": "Steps 6b-8 - Wiki, Neo4j, FalkorDB, SVG, GraphML, MCP, benchmark (only on their flags)", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L573", - "_origin": "ast", - "id": "claude_skills_graphify_skill_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "steps 6b-8 - wiki, neo4j, falkordb, svg, graphml, mcp, benchmark (only on their flags)" - }, - { - "label": "Troubleshooting", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L731", - "_origin": "ast", - "id": "claude_skills_graphify_skill_troubleshooting", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "troubleshooting" - }, - { - "label": "Usage", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L10", - "_origin": "ast", - "id": "claude_skills_graphify_skill_usage", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "usage" - }, - { - "label": "What graphify is for", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L45", - "_origin": "ast", - "id": "claude_skills_graphify_skill_what_graphify_is_for", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "what graphify is for" - }, - { - "label": "What You Must Do When Invoked", - "file_type": "document", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L49", - "_origin": "ast", - "id": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "community": 45, - "community_name": "What You Must Do When Invoked", - "norm_label": "what you must do when invoked" - }, - { - "label": "Layout.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Layout.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_layout", - "community": 46, - "community_name": "api", - "norm_label": "layout.tsx" - }, - { - "label": "Sidebar.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_sidebar", - "community": 46, - "community_name": "api", - "norm_label": "sidebar.tsx" - }, - { - "label": "Topbar.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_topbar", - "community": 46, - "community_name": "api", - "norm_label": "topbar.tsx" - }, - { - "label": "SEARCHABLE_PAGES", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_topbar_searchable_pages", - "community": 46, - "community_name": "api", - "norm_label": "searchable_pages" + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "main.tsx", + "id": "frontend_admin_panel_src_main" }, { "label": "CMS.tsx", @@ -35984,10 +34477,54 @@ "source_file": "frontend/admin-panel/src/pages/CMS.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_cms", - "community": 46, - "community_name": "api", - "norm_label": "cms.tsx" + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "cms.tsx", + "id": "frontend_admin_panel_src_pages_cms" + }, + { + "label": "Dashboard.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "dashboard.tsx", + "id": "frontend_admin_panel_src_pages_dashboard" + }, + { + "label": "Reports.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "reports.tsx", + "id": "frontend_admin_panel_src_pages_reports" + }, + { + "label": "COLORS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L24", + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "colors", + "id": "frontend_admin_panel_src_pages_reports_colors" + }, + { + "label": "adminRoutes.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "adminroutes.tsx", + "id": "frontend_admin_panel_src_routes_adminroutes" }, { "label": "CMS", @@ -35995,571 +34532,98 @@ "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L23", "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_cms", - "community": 46, - "community_name": "api", - "norm_label": "cms" + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "cms", + "id": "frontend_admin_panel_src_routes_adminroutes_cms" }, { - "label": "api", + "label": "Dashboard", "file_type": "code", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L23", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L10", "_origin": "ast", - "id": "frontend_admin_panel_src_services_api_api", - "community": 46, - "community_name": "api", - "norm_label": "api" + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "dashboard", + "id": "frontend_admin_panel_src_routes_adminroutes_dashboard" }, { - "label": "ApiBearerAuth", + "label": "DoctorsManager", "file_type": "code", - "source_file": "", - "source_location": "", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L44", "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_apibearerauth", - "community": 47, - "community_name": "IngredientsService", - "norm_label": "apibearerauth" + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "doctorsmanager", + "id": "frontend_admin_panel_src_routes_adminroutes_doctorsmanager" }, { - "label": "ApiOperation", + "label": "PaymentGatewaysPage", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_apioperation", - "community": 47, - "community_name": "IngredientsService", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_apitags", - "community": 47, - "community_name": "IngredientsService", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_body", - "community": 47, - "community_name": "IngredientsService", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_controller", - "community": 47, - "community_name": "IngredientsService", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_delete", - "community": 47, - "community_name": "IngredientsService", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_get", - "community": 47, - "community_name": "IngredientsService", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_param", - "community": 47, - "community_name": "IngredientsService", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_patch", - "community": 47, - "community_name": "IngredientsService", - "norm_label": "patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_post", - "community": 47, - "community_name": "IngredientsService", - "norm_label": "post" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_controller_ts_useguards", - "community": 47, - "community_name": "IngredientsService", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_ingredients_ingredients_service_ts_injectable", - "community": 47, - "community_name": "IngredientsService", - "norm_label": "injectable" - }, - { - "label": "[id]/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_checkout_success_id_page", - "community": 48, - "community_name": "cartStore.ts", - "norm_label": "[id]/page.tsx" - }, - { - "label": "OrderSuccess.tsx", - "file_type": "code", - "source_file": "frontend/application/components/OrderSuccess.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_ordersuccess", - "community": 48, - "community_name": "cartStore.ts", - "norm_label": "ordersuccess.tsx" - }, - { - "label": "OrderTracking.tsx", - "file_type": "code", - "source_file": "frontend/application/components/OrderTracking.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_ordertracking", - "community": 48, - "community_name": "cartStore.ts", - "norm_label": "ordertracking.tsx" - }, - { - "label": "cartStore.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_store_cartstore", - "community": 48, - "community_name": "cartStore.ts", - "norm_label": "cartstore.ts" - }, - { - "label": "devDependencies", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L24", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies", - "community": 49, - "community_name": "devDependencies", - "norm_label": "devdependencies" - }, - { - "label": "autoprefixer", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L31", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_autoprefixer", - "community": 49, - "community_name": "devDependencies", - "norm_label": "autoprefixer" - }, - { - "label": "eslint", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L32", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_eslint", - "community": 49, - "community_name": "devDependencies", - "norm_label": "eslint" - }, - { - "label": "@eslint/js", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L25", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_eslint_js", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@eslint/js" - }, - { - "label": "globals", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", "source_location": "L35", "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_globals", - "community": 49, - "community_name": "devDependencies", - "norm_label": "globals" + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "paymentgatewayspage", + "id": "frontend_admin_panel_src_routes_adminroutes_paymentgatewayspage" }, { - "label": "postcss", + "label": "Reports", "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L36", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L16", "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_postcss", - "community": 49, - "community_name": "devDependencies", - "norm_label": "postcss" + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "reports", + "id": "frontend_admin_panel_src_routes_adminroutes_reports" }, { - "label": "@types/node", + "label": "router", "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L27", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L56", "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_types_node", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@types/node" + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "router", + "id": "frontend_admin_panel_src_routes_adminroutes_router" }, { - "label": "@types/react", + "label": "ShippingSettingsPage", "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L28", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L37", "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_types_react", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@types/react" + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "shippingsettingspage", + "id": "frontend_admin_panel_src_routes_adminroutes_shippingsettingspage" }, { - "label": "@types/react-dom", + "label": "lazyWithRetry.ts", "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L29", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_types_react_dom", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@types/react-dom" - }, - { - "label": "@vitejs/plugin-react", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L30", - "_origin": "ast", - "id": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@vitejs/plugin-react" - }, - { - "label": "autoprefixer", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L31", - "_origin": "ast", - "id": "autoprefixer", - "community": 49, - "community_name": "devDependencies", - "norm_label": "autoprefixer" - }, - { - "label": "eslint", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L32", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_eslint", - "community": 49, - "community_name": "devDependencies", - "norm_label": "eslint" - }, - { - "label": "@eslint/js", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L25", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_eslint_js", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@eslint/js" - }, - { - "label": "globals", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L35", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_globals", - "community": 49, - "community_name": "devDependencies", - "norm_label": "globals" - }, - { - "label": "@types/node", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L27", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_types_node", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@types/node" - }, - { - "label": "@types/react", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L28", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_types_react", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@types/react" - }, - { - "label": "@types/react-dom", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L29", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_types_react_dom", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@types/react-dom" - }, - { - "label": "@vitejs/plugin-react", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L30", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_vitejs_plugin_react", - "community": 49, - "community_name": "devDependencies", - "norm_label": "@vitejs/plugin-react" - }, - { - "label": "postcss", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L36", - "_origin": "ast", - "id": "postcss", - "community": 49, - "community_name": "devDependencies", - "norm_label": "postcss" - }, - { - "label": "cms.controller.ts", - "file_type": "code", - "source_file": "backend/src/cms/cms.controller.ts", + "source_file": "frontend/admin-panel/src/utils/lazyWithRetry.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_cms_cms_controller", - "community": 5, - "community_name": "CmsController", - "norm_label": "cms.controller.ts" + "community": 32, + "community_name": "adminRoutes.tsx", + "norm_label": "lazywithretry.ts", + "id": "frontend_admin_panel_src_utils_lazywithretry" }, { - "label": "ApiBearerAuth", + "label": "wholesale-apply.dto.ts", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_apibearerauth", - "community": 5, - "community_name": "CmsController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_apioperation", - "community": 5, - "community_name": "CmsController", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_apitags", - "community": 5, - "community_name": "CmsController", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_body", - "community": 5, - "community_name": "CmsController", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_controller", - "community": 5, - "community_name": "CmsController", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_delete", - "community": 5, - "community_name": "CmsController", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_get", - "community": 5, - "community_name": "CmsController", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_param", - "community": 5, - "community_name": "CmsController", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_post", - "community": 5, - "community_name": "CmsController", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_put", - "community": 5, - "community_name": "CmsController", - "norm_label": "put" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_controller_ts_useguards", - "community": 5, - "community_name": "CmsController", - "norm_label": "useguards" - }, - { - "label": "cms.service.ts", - "file_type": "code", - "source_file": "backend/src/cms/cms.service.ts", + "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_src_cms_cms_service", - "community": 5, - "community_name": "CmsController", - "norm_label": "cms.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_cms_service_ts_injectable", - "community": 5, - "community_name": "CmsController", - "norm_label": "injectable" - }, - { - "label": "cms.dto.ts", - "file_type": "code", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto", - "community": 5, - "community_name": "CmsController", - "norm_label": "cms.dto.ts" + "community": 234, + "community_name": "WholesaleApplyDto", + "norm_label": "wholesale-apply.dto.ts", + "id": "backend_src_wholesale_dto_wholesale_apply_dto" }, { "label": "ApiProperty", @@ -36567,10 +34631,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_ts_apiproperty", - "community": 5, - "community_name": "CmsController", - "norm_label": "apiproperty" + "community": 234, + "community_name": "WholesaleApplyDto", + "norm_label": "apiproperty", + "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty" }, { "label": "ApiPropertyOptional", @@ -36578,32 +34642,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", - "community": 5, - "community_name": "CmsController", - "norm_label": "apipropertyoptional" + "community": 234, + "community_name": "WholesaleApplyDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apipropertyoptional" }, { - "label": "IsBoolean", + "label": "IsNotEmpty", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_ts_isboolean", - "community": 5, - "community_name": "CmsController", - "norm_label": "isboolean" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_ts_isnumber", - "community": 5, - "community_name": "CmsController", - "norm_label": "isnumber" + "community": 234, + "community_name": "WholesaleApplyDto", + "norm_label": "isnotempty", + "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isnotempty" }, { "label": "IsOptional", @@ -36611,10 +34664,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_ts_isoptional", - "community": 5, - "community_name": "CmsController", - "norm_label": "isoptional" + "community": 234, + "community_name": "WholesaleApplyDto", + "norm_label": "isoptional", + "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isoptional" }, { "label": "IsString", @@ -36622,186 +34675,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_cms_dto_cms_dto_ts_isstring", - "community": 5, - "community_name": "CmsController", - "norm_label": "isstring" - }, - { - "label": "IsUUID", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "isuuid", - "community": 5, - "community_name": "CmsController", - "norm_label": "isuuid" - }, - { - "label": "devDependencies", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L21", - "_origin": "ast", - "id": "frontend_application_package_devdependencies", - "community": 50, - "community_name": "devDependencies", - "norm_label": "devdependencies" - }, - { - "label": "eslint", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L29", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_eslint", - "community": 50, - "community_name": "devDependencies", - "norm_label": "eslint" - }, - { - "label": "eslint-config-next", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L30", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_eslint_config_next", - "community": 50, - "community_name": "devDependencies", - "norm_label": "eslint-config-next" - }, - { - "label": "jsdom", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L31", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_jsdom", - "community": 50, - "community_name": "devDependencies", - "norm_label": "jsdom" - }, - { - "label": "tailwindcss", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L32", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_tailwindcss", - "community": 50, - "community_name": "devDependencies", - "norm_label": "tailwindcss" - }, - { - "label": "@tailwindcss/postcss", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L22", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_tailwindcss_postcss", - "community": 50, - "community_name": "devDependencies", - "norm_label": "@tailwindcss/postcss" - }, - { - "label": "@types/node", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L25", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_types_node", - "community": 50, - "community_name": "devDependencies", - "norm_label": "@types/node" - }, - { - "label": "@vitejs/plugin-react", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L28", - "_origin": "ast", - "id": "frontend_application_package_devdependencies_vitejs_plugin_react", - "community": 50, - "community_name": "devDependencies", - "norm_label": "@vitejs/plugin-react" - }, - { - "label": "eslint-config-next", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L30", - "_origin": "ast", - "id": "eslint_config_next", - "community": 50, - "community_name": "devDependencies", - "norm_label": "eslint-config-next" - }, - { - "label": "eslint", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L29", - "_origin": "ast", - "id": "frontend_application_package_json_eslint", - "community": 50, - "community_name": "devDependencies", - "norm_label": "eslint" - }, - { - "label": "tailwindcss", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L32", - "_origin": "ast", - "id": "frontend_application_package_json_tailwindcss", - "community": 50, - "community_name": "devDependencies", - "norm_label": "tailwindcss" - }, - { - "label": "@tailwindcss/postcss", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L22", - "_origin": "ast", - "id": "frontend_application_package_json_tailwindcss_postcss", - "community": 50, - "community_name": "devDependencies", - "norm_label": "@tailwindcss/postcss" - }, - { - "label": "@types/node", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L25", - "_origin": "ast", - "id": "frontend_application_package_json_types_node", - "community": 50, - "community_name": "devDependencies", - "norm_label": "@types/node" - }, - { - "label": "@vitejs/plugin-react", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L28", - "_origin": "ast", - "id": "frontend_application_package_json_vitejs_plugin_react", - "community": 50, - "community_name": "devDependencies", - "norm_label": "@vitejs/plugin-react" - }, - { - "label": "jsdom", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L31", - "_origin": "ast", - "id": "jsdom", - "community": 50, - "community_name": "devDependencies", - "norm_label": "jsdom" + "community": 234, + "community_name": "WholesaleApplyDto", + "norm_label": "isstring", + "id": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isstring" }, { "label": "ApiBearerAuth", @@ -36809,10 +34686,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_apibearerauth", - "community": 51, - "community_name": "BlogsController", - "norm_label": "apibearerauth" + "community": 33, + "community_name": "WholesaleService", + "norm_label": "apibearerauth", + "id": "backend_src_wholesale_wholesale_controller_ts_apibearerauth" }, { "label": "ApiOperation", @@ -36820,21 +34697,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_apioperation", - "community": 51, - "community_name": "BlogsController", - "norm_label": "apioperation" - }, - { - "label": "ApiQuery", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_apiquery", - "community": 51, - "community_name": "BlogsController", - "norm_label": "apiquery" + "community": 33, + "community_name": "WholesaleService", + "norm_label": "apioperation", + "id": "backend_src_wholesale_wholesale_controller_ts_apioperation" }, { "label": "ApiTags", @@ -36842,10 +34708,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_apitags", - "community": 51, - "community_name": "BlogsController", - "norm_label": "apitags" + "community": 33, + "community_name": "WholesaleService", + "norm_label": "apitags", + "id": "backend_src_wholesale_wholesale_controller_ts_apitags" }, { "label": "Body", @@ -36853,10 +34719,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_body", - "community": 51, - "community_name": "BlogsController", - "norm_label": "body" + "community": 33, + "community_name": "WholesaleService", + "norm_label": "body", + "id": "backend_src_wholesale_wholesale_controller_ts_body" }, { "label": "Controller", @@ -36864,21 +34730,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_controller", - "community": 51, - "community_name": "BlogsController", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_delete", - "community": 51, - "community_name": "BlogsController", - "norm_label": "delete" + "community": 33, + "community_name": "WholesaleService", + "norm_label": "controller", + "id": "backend_src_wholesale_wholesale_controller_ts_controller" }, { "label": "Get", @@ -36886,10 +34741,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_get", - "community": 51, - "community_name": "BlogsController", - "norm_label": "get" + "community": 33, + "community_name": "WholesaleService", + "norm_label": "get", + "id": "backend_src_wholesale_wholesale_controller_ts_get" }, { "label": "Param", @@ -36897,21 +34752,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_param", - "community": 51, - "community_name": "BlogsController", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_patch", - "community": 51, - "community_name": "BlogsController", - "norm_label": "patch" + "community": 33, + "community_name": "WholesaleService", + "norm_label": "param", + "id": "backend_src_wholesale_wholesale_controller_ts_param" }, { "label": "Post", @@ -36919,10 +34763,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_post", - "community": 51, - "community_name": "BlogsController", - "norm_label": "post" + "community": 33, + "community_name": "WholesaleService", + "norm_label": "post", + "id": "backend_src_wholesale_wholesale_controller_ts_post" }, { "label": "Put", @@ -36930,21 +34774,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_put", - "community": 51, - "community_name": "BlogsController", - "norm_label": "put" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_query", - "community": 51, - "community_name": "BlogsController", - "norm_label": "query" + "community": 33, + "community_name": "WholesaleService", + "norm_label": "put", + "id": "backend_src_wholesale_wholesale_controller_ts_put" }, { "label": "Request", @@ -36952,10 +34785,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_request", - "community": 51, - "community_name": "BlogsController", - "norm_label": "request" + "community": 33, + "community_name": "WholesaleService", + "norm_label": "request", + "id": "backend_src_wholesale_wholesale_controller_ts_request" }, { "label": "UseGuards", @@ -36963,318 +34796,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_blogs_controller_ts_useguards", - "community": 51, - "community_name": "BlogsController", - "norm_label": "useguards" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_apitags", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_body", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_controller", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_get", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_param", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_patch", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": "patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_post", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": "post" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_req", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": "req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_prescriptions_prescriptions_controller_ts_useguards", - "community": 52, - "community_name": "PrescriptionsController", - "norm_label": "useguards" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_apitags", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_body", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_controller", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_delete", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_get", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_param", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_patch", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": "patch" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_post", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": "post" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards", - "community": 53, - "community_name": "SmartAdvisorController", - "norm_label": "useguards" - }, - { - "label": "auth.constants.ts", - "file_type": "code", - "source_file": "backend/src/auth/auth.constants.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_auth_constants", - "community": 54, - "community_name": "UsersService", - "norm_label": "auth.constants.ts" - }, - { - "label": "DEFAULT_JWT_REFRESH_SECRET", - "file_type": "code", - "source_file": "backend/src/auth/auth.constants.ts", - "source_location": "L4", - "_origin": "ast", - "id": "backend_src_auth_auth_constants_default_jwt_refresh_secret", - "community": 54, - "community_name": "UsersService", - "norm_label": "default_jwt_refresh_secret" - }, - { - "label": "DEFAULT_JWT_SECRET", - "file_type": "code", - "source_file": "backend/src/auth/auth.constants.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_auth_constants_default_jwt_secret", - "community": 54, - "community_name": "UsersService", - "norm_label": "default_jwt_secret" - }, - { - "label": "auth.module.ts", - "file_type": "code", - "source_file": "backend/src/auth/auth.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_auth_module", - "community": 54, - "community_name": "UsersService", - "norm_label": "auth.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_auth_auth_module_ts_module", - "community": 54, - "community_name": "UsersService", - "norm_label": "module" - }, - { - "label": "jwt.strategy.ts", - "file_type": "code", - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_auth_jwt_strategy", - "community": 54, - "community_name": "UsersService", - "norm_label": "jwt.strategy.ts" + "community": 33, + "community_name": "WholesaleService", + "norm_label": "useguards", + "id": "backend_src_wholesale_wholesale_controller_ts_useguards" }, { "label": "Injectable", @@ -37282,186 +34807,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_auth_jwt_strategy_ts_injectable", - "community": 54, - "community_name": "UsersService", - "norm_label": "injectable" - }, - { - "label": "address.dto.ts", - "file_type": "code", - "source_file": "backend/src/users/dto/address.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_users_dto_address_dto", - "community": 54, - "community_name": "UsersService", - "norm_label": "address.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_address_dto_ts_apiproperty", - "community": 54, - "community_name": "UsersService", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_address_dto_ts_apipropertyoptional", - "community": 54, - "community_name": "UsersService", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsBoolean", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_address_dto_ts_isboolean", - "community": 54, - "community_name": "UsersService", - "norm_label": "isboolean" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_address_dto_ts_isnotempty", - "community": 54, - "community_name": "UsersService", - "norm_label": "isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_address_dto_ts_isoptional", - "community": 54, - "community_name": "UsersService", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_address_dto_ts_isstring", - "community": 54, - "community_name": "UsersService", - "norm_label": "isstring" - }, - { - "label": "update-profile.dto.ts", - "file_type": "code", - "source_file": "backend/src/users/dto/update-profile.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_users_dto_update_profile_dto", - "community": 54, - "community_name": "UsersService", - "norm_label": "update-profile.dto.ts" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_update_profile_dto_ts_apipropertyoptional", - "community": 54, - "community_name": "UsersService", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsEmail", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_update_profile_dto_ts_isemail", - "community": 54, - "community_name": "UsersService", - "norm_label": "isemail" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_update_profile_dto_ts_isoptional", - "community": 54, - "community_name": "UsersService", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_update_profile_dto_ts_isstring", - "community": 54, - "community_name": "UsersService", - "norm_label": "isstring" - }, - { - "label": "MinLength", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_dto_update_profile_dto_ts_minlength", - "community": 54, - "community_name": "UsersService", - "norm_label": "minlength" - }, - { - "label": "users.controller.ts", - "file_type": "code", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_users_users_controller", - "community": 54, - "community_name": "UsersService", - "norm_label": "users.controller.ts" - }, - { - "label": "users.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/users/users.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_users_users_controller_spec", - "community": 54, - "community_name": "UsersService", - "norm_label": "users.controller.spec.ts" - }, - { - "label": "ApiBadRequestResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_apibadrequestresponse", - "community": 54, - "community_name": "UsersService", - "norm_label": "apibadrequestresponse" + "community": 33, + "community_name": "WholesaleService", + "norm_label": "injectable", + "id": "backend_src_wholesale_wholesale_service_ts_injectable" }, { "label": "ApiBearerAuth", @@ -37469,32 +34818,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_users_users_controller_ts_apibearerauth", - "community": 54, - "community_name": "UsersService", - "norm_label": "apibearerauth" - }, - { - "label": "ApiCreatedResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_apicreatedresponse", - "community": 54, - "community_name": "UsersService", - "norm_label": "apicreatedresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_apiokresponse", - "community": 54, - "community_name": "UsersService", - "norm_label": "apiokresponse" + "community": 34, + "community_name": "B2BService", + "norm_label": "apibearerauth", + "id": "backend_src_b2b_b2b_controller_ts_apibearerauth" }, { "label": "ApiOperation", @@ -37502,10 +34829,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_users_users_controller_ts_apioperation", - "community": 54, - "community_name": "UsersService", - "norm_label": "apioperation" + "community": 34, + "community_name": "B2BService", + "norm_label": "apioperation", + "id": "backend_src_b2b_b2b_controller_ts_apioperation" }, { "label": "ApiTags", @@ -37513,10 +34840,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_users_users_controller_ts_apitags", - "community": 54, - "community_name": "UsersService", - "norm_label": "apitags" + "community": 34, + "community_name": "B2BService", + "norm_label": "apitags", + "id": "backend_src_b2b_b2b_controller_ts_apitags" }, { "label": "Body", @@ -37524,10 +34851,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_users_users_controller_ts_body", - "community": 54, - "community_name": "UsersService", - "norm_label": "body" + "community": 34, + "community_name": "B2BService", + "norm_label": "body", + "id": "backend_src_b2b_b2b_controller_ts_body" }, { "label": "Controller", @@ -37535,21 +34862,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_users_users_controller_ts_controller", - "community": 54, - "community_name": "UsersService", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_delete", - "community": 54, - "community_name": "UsersService", - "norm_label": "delete" + "community": 34, + "community_name": "B2BService", + "norm_label": "controller", + "id": "backend_src_b2b_b2b_controller_ts_controller" }, { "label": "Get", @@ -37557,10 +34873,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_users_users_controller_ts_get", - "community": 54, - "community_name": "UsersService", - "norm_label": "get" + "community": 34, + "community_name": "B2BService", + "norm_label": "get", + "id": "backend_src_b2b_b2b_controller_ts_get" }, { "label": "Param", @@ -37568,21 +34884,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_users_users_controller_ts_param", - "community": 54, - "community_name": "UsersService", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_patch", - "community": 54, - "community_name": "UsersService", - "norm_label": "patch" + "community": 34, + "community_name": "B2BService", + "norm_label": "param", + "id": "backend_src_b2b_b2b_controller_ts_param" }, { "label": "Post", @@ -37590,648 +34895,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_users_users_controller_ts_post", - "community": 54, - "community_name": "UsersService", - "norm_label": "post" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_req", - "community": 54, - "community_name": "UsersService", - "norm_label": "req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_controller_ts_useguards", - "community": 54, - "community_name": "UsersService", - "norm_label": "useguards" - }, - { - "label": "users.module.ts", - "file_type": "code", - "source_file": "backend/src/users/users.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_users_users_module", - "community": 54, - "community_name": "UsersService", - "norm_label": "users.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_module_ts_module", - "community": 54, - "community_name": "UsersService", - "norm_label": "module" - }, - { - "label": "users.service.ts", - "file_type": "code", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_users_users_service", - "community": 54, - "community_name": "UsersService", - "norm_label": "users.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_users_users_service_ts_injectable", - "community": 54, - "community_name": "UsersService", - "norm_label": "injectable" - }, - { - "label": "IconPickerModal.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_iconpickermodal", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "iconpickermodal.tsx" - }, - { - "label": "ICON_REGISTRY", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", - "source_location": "L51", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_iconpickermodal_icon_registry", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "icon_registry" - }, - { - "label": "ImagePreviewModal.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_imagepreviewmodal", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "imagepreviewmodal.tsx" - }, - { - "label": "ToggleSwitch.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_toggleswitch", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "toggleswitch.tsx" - }, - { - "label": "PrescriptionsManager.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_prescriptionsmanager", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "prescriptionsmanager.tsx" - }, - { - "label": "UITexts.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "uitexts.tsx" - }, - { - "label": "SHARED_FOOTER_FIELDS", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L664", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_shared_footer_fields", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "shared_footer_fields" - }, - { - "label": "SHARED_HEADER_FIELDS", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L650", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_shared_header_fields", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "shared_header_fields" - }, - { - "label": "SITE_PAGES", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L273", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_site_pages", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "site_pages" - }, - { - "label": "V1_GROUP_PAGE_MAP", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L200", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_v1_group_page_map", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "v1_group_page_map" - }, - { - "label": "V1_GROUPS", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L64", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_v1_groups", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "v1_groups" - }, - { - "label": "V1_PAGE_TABS", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L55", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_uitexts_v1_page_tabs", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "v1_page_tabs" - }, - { - "label": "PrescriptionsManager", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L31", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "prescriptionsmanager" - }, - { - "label": "UITexts", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L21", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_uitexts", - "community": 55, - "community_name": "UITexts.tsx", - "norm_label": "uitexts" - }, - { - "label": "Badge.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_badge", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "badge.tsx" - }, - { - "label": "variantStyles", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", - "source_location": "L22", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_badge_variantstyles", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "variantstyles" - }, - { - "label": "ui/Skeleton.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/Skeleton.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_skeleton", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "ui/skeleton.tsx" - }, - { - "label": "MonitoringPage.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_monitoringpage", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "monitoringpage.tsx" - }, - { - "label": "Orders.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "orders.tsx" - }, - { - "label": "ORDER_STATUS_MAP", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L107", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_orders_order_status_map", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "order_status_map" - }, - { - "label": "Users.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_src_pages_users", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "users.tsx" - }, - { - "label": "MonitoringPage", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L47", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_monitoringpage", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "monitoringpage" - }, - { - "label": "Orders", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L13", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_orders", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "orders" - }, - { - "label": "Users", - "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L11", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_users", - "community": 56, - "community_name": "Orders.tsx", - "norm_label": "users" - }, - { - "label": "12_seo_content.md", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "12_seo_content.md" - }, - { - "label": "CREATE MODE \u2014 Normal Operation", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L101", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_create_mode_normal_operation", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "create mode \u2014 normal operation" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L259", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_expected_json_output_schema", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "expected json output schema" - }, - { - "label": "File Scope Boundary", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L238", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_file_scope_boundary", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "file scope boundary" - }, - { - "label": "Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L231", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_forbidden_actions", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "forbidden actions" - }, - { - "label": "MODE 1: REVIEW (called during Review Phase)", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L116", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_mode_1_review_called_during_review_phase", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "mode 1: review (called during review phase)" - }, - { - "label": "MODE 2: CONTENT CREATION (standalone task from backlog)", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L160", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "mode 2: content creation (standalone task from backlog)" - }, - { - "label": "Operating Modes", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L114", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_operating_modes", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "operating modes" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L229", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_operational_rules_boundaries", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Output", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L63", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_output", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "output" - }, - { - "label": "Required Output Artifacts", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L244", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_required_output_artifacts", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "required output artifacts" - }, - { - "label": "\u2605 REVIEW MODE (called during Review Phase)", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L13", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "\u2605 review mode (called during review phase)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_role_core_objective", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "role & core objective" - }, - { - "label": "Step 1: Gather Resources", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L166", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_step_1_gather_resources", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "step 1: gather resources" - }, - { - "label": "Step 2: SEO Strategy", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L179", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_step_2_seo_strategy", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "step 2: seo strategy" - }, - { - "label": "Step 3: Content Hierarchy", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L188", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_step_3_content_hierarchy", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "step 3: content hierarchy" - }, - { - "label": "Step 4: Structured Data (JSON-LD)", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L199", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_step_4_structured_data_json_ld", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "step 4: structured data (json-ld)" - }, - { - "label": "Step 5: Real Content Writing Standards", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L211", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_step_5_real_content_writing_standards", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "step 5: real content writing standards" - }, - { - "label": "Step 6: Image Alt Text", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L221", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_step_6_image_alt_text", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "step 6: image alt text" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L103", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_strict_input_specifications_what_files_to_read", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "What You DO NOT Review", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L29", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_what_you_do_not_review", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "what you do not review" - }, - { - "label": "What You Look For (SEO Expert Eyes Only)", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L32", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_what_you_look_for_seo_expert_eyes_only", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "what you look for (seo expert eyes only)" - }, - { - "label": "Your Domain \u2014 What You Review (ONLY these areas)", - "file_type": "document", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L17", - "_origin": "ast", - "id": "ai_agency_agents_12_seo_content_your_domain_what_you_review_only_these_areas", - "community": 57, - "community_name": "Role & Core Objective", - "norm_label": "your domain \u2014 what you review (only these areas)" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_controller_ts_body", - "community": 58, - "community_name": "ContactService", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_controller_ts_controller", - "community": 58, - "community_name": "ContactService", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_controller_ts_get", - "community": 58, - "community_name": "ContactService", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_controller_ts_param", - "community": 58, - "community_name": "ContactService", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_controller_ts_post", - "community": 58, - "community_name": "ContactService", - "norm_label": "post" + "community": 34, + "community_name": "B2BService", + "norm_label": "post", + "id": "backend_src_b2b_b2b_controller_ts_post" }, { "label": "Put", @@ -38239,637 +34906,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_contact_contact_controller_ts_put", - "community": 58, - "community_name": "ContactService", - "norm_label": "put" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_controller_ts_query", - "community": 58, - "community_name": "ContactService", - "norm_label": "query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_controller_ts_useguards", - "community": 58, - "community_name": "ContactService", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_contact_contact_service_ts_injectable", - "community": 58, - "community_name": "ContactService", - "norm_label": "injectable" - }, - { - "label": "backend/tsconfig.json", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L1", - "_origin": "ast", - "id": "backend_tsconfig", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "backend/tsconfig.json" - }, - { - "label": "compilerOptions", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L2", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "compileroptions" - }, - { - "label": "allowSyntheticDefaultImports", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L12", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "allowsyntheticdefaultimports" - }, - { - "label": "baseUrl", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L17", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_baseurl", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "baseurl" - }, - { - "label": "declaration", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L8", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_declaration", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "declaration" - }, - { - "label": "emitDecoratorMetadata", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L10", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_emitdecoratormetadata", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "emitdecoratormetadata" - }, - { - "label": "esModuleInterop", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L6", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_esmoduleinterop", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "esmoduleinterop" - }, - { - "label": "experimentalDecorators", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L11", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_experimentaldecorators", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "experimentaldecorators" - }, - { - "label": "forceConsistentCasingInFileNames", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L21", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "forceconsistentcasinginfilenames" - }, - { - "label": "incremental", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L18", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_incremental", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "incremental" - }, - { - "label": "isolatedModules", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L7", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_isolatedmodules", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "isolatedmodules" - }, - { - "label": "module", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L3", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_module", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "module" - }, - { - "label": "moduleResolution", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L4", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_moduleresolution", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "moduleresolution" - }, - { - "label": "noFallthroughCasesInSwitch", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L24", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "nofallthroughcasesinswitch" - }, - { - "label": "noImplicitAny", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L22", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_noimplicitany", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "noimplicitany" - }, - { - "label": "outDir", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L15", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_outdir", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "outdir" - }, - { - "label": "removeComments", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L9", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_removecomments", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "removecomments" - }, - { - "label": "resolvePackageJsonExports", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L5", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_resolvepackagejsonexports", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "resolvepackagejsonexports" - }, - { - "label": "rootDir", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L16", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_rootdir", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "rootdir" - }, - { - "label": "skipLibCheck", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L19", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_skiplibcheck", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "skiplibcheck" - }, - { - "label": "sourceMap", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L14", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_sourcemap", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "sourcemap" - }, - { - "label": "strictBindCallApply", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L23", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_strictbindcallapply", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "strictbindcallapply" - }, - { - "label": "strictNullChecks", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L20", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_strictnullchecks", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "strictnullchecks" - }, - { - "label": "target", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L13", - "_origin": "ast", - "id": "backend_tsconfig_compileroptions_target", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "target" - }, - { - "label": "exclude", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "_origin": "ast", - "id": "backend_tsconfig_exclude", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "exclude" - }, - { - "label": "include", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L26", - "_origin": "ast", - "id": "backend_tsconfig_include", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "include" - }, - { - "label": "dist", - "file_type": "concept", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "_origin": "ast", - "id": "backend_tsconfig_json_ref_dist", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "dist" - }, - { - "label": "node_modules", - "file_type": "concept", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "_origin": "ast", - "id": "backend_tsconfig_json_ref_node_modules", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "node_modules" - }, - { - "label": "prisma", - "file_type": "concept", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "_origin": "ast", - "id": "backend_tsconfig_json_ref_prisma", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "prisma" - }, - { - "label": "src/**/*", - "file_type": "concept", - "source_file": "backend/tsconfig.json", - "source_location": "L26", - "_origin": "ast", - "id": "backend_tsconfig_json_ref_src", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "src/**/*" - }, - { - "label": "scripts", - "file_type": "concept", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "_origin": "ast", - "id": "ref_scripts", - "community": 59, - "community_name": "compilerOptions", - "norm_label": "scripts" - }, - { - "label": "create-ticket.dto.ts", - "file_type": "code", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "create-ticket.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_create_ticket_dto_ts_isstring", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "isstring" - }, - { - "label": "ticket-query.dto.ts", - "file_type": "code", - "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_tickets_dto_ticket_query_dto", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "ticket-query.dto.ts" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_ticket_query_dto_ts_apipropertyoptional", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_ticket_query_dto_ts_isnumber", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_ticket_query_dto_ts_isoptional", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_ticket_query_dto_ts_isstring", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "isstring" - }, - { - "label": "Type", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_dto_ticket_query_dto_ts_type", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "type" - }, - { - "label": "tickets.controller.ts", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "tickets.controller.ts" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_apibearerauth", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_apioperation", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_apitags", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_body", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_controller", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_get", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_param", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_post", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "post" - }, - { - "label": "Put", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_put", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "put" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_query", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "query" + "community": 34, + "community_name": "B2BService", + "norm_label": "put", + "id": "backend_src_b2b_b2b_controller_ts_put" }, { "label": "Req", @@ -38877,10 +34917,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_req", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "req" + "community": 34, + "community_name": "B2BService", + "norm_label": "req", + "id": "backend_src_b2b_b2b_controller_ts_req" + }, + { + "label": "Throttle", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 34, + "community_name": "B2BService", + "norm_label": "throttle", + "id": "backend_src_b2b_b2b_controller_ts_throttle" }, { "label": "UseGuards", @@ -38888,43 +34939,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_tickets_tickets_controller_ts_useguards", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "useguards" - }, - { - "label": "tickets.module.ts", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_tickets_tickets_module", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "tickets.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_tickets_tickets_module_ts_module", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "module" - }, - { - "label": "tickets.service.ts", - "file_type": "code", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_tickets_tickets_service", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "tickets.service.ts" + "community": 34, + "community_name": "B2BService", + "norm_label": "useguards", + "id": "backend_src_b2b_b2b_controller_ts_useguards" }, { "label": "Injectable", @@ -38932,2529 +34950,131 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_tickets_tickets_service_ts_injectable", - "community": 6, - "community_name": "tickets.controller.ts", - "norm_label": "injectable" + "community": 34, + "community_name": "B2BService", + "norm_label": "injectable", + "id": "backend_src_b2b_b2b_service_ts_injectable" }, { - "label": "RichTextEditor.tsx", + "label": "blog/loading.tsx", "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", + "source_file": "frontend/application/app/blog/loading.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_richtexteditor", - "community": 60, - "community_name": "Blogs.tsx", - "norm_label": "richtexteditor.tsx" + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "blog/loading.tsx", + "id": "frontend_application_app_blog_loading" }, { - "label": "PRESET_BG_COLORS", + "label": "app/loading.tsx", "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", - "source_location": "L51", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_richtexteditor_preset_bg_colors", - "community": 60, - "community_name": "Blogs.tsx", - "norm_label": "preset_bg_colors" - }, - { - "label": "PRESET_COLORS", - "file_type": "code", - "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", - "source_location": "L41", - "_origin": "ast", - "id": "frontend_admin_panel_src_components_ui_richtexteditor_preset_colors", - "community": 60, - "community_name": "Blogs.tsx", - "norm_label": "preset_colors" - }, - { - "label": "Blogs.tsx", - "file_type": "code", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_file": "frontend/application/app/loading.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_admin_panel_src_pages_blogs", - "community": 60, - "community_name": "Blogs.tsx", - "norm_label": "blogs.tsx" + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "app/loading.tsx", + "id": "frontend_application_app_loading" }, { - "label": "Blogs", + "label": "shop/loading.tsx", "file_type": "code", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L18", - "_origin": "ast", - "id": "frontend_admin_panel_src_routes_adminroutes_blogs", - "community": 60, - "community_name": "Blogs.tsx", - "norm_label": "blogs" - }, - { - "label": "admin-transaction-filter.dto.ts", - "file_type": "code", - "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", + "source_file": "frontend/application/app/shop/loading.tsx", "source_location": "L1", "_origin": "ast", - "id": "backend_src_payment_dto_admin_transaction_filter_dto", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "admin-transaction-filter.dto.ts" + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "shop/loading.tsx", + "id": "frontend_application_app_shop_loading" }, { - "label": "ApiPropertyOptional", + "label": "FeaturedProducts.tsx", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsIn", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "isin" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "isstring" - }, - { - "label": "Type", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_type", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "type" - }, - { - "label": "ebank-checkout.dto.ts", - "file_type": "code", - "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", + "source_file": "frontend/application/components/FeaturedProducts.tsx", "source_location": "L1", "_origin": "ast", - "id": "backend_src_payment_dto_ebank_checkout_dto", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "ebank-checkout.dto.ts" + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "featuredproducts.tsx", + "id": "frontend_application_components_featuredproducts" }, { - "label": "ApiProperty", + "label": "PetProfile.tsx", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_ebank_checkout_dto_ts_apiproperty", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_ebank_checkout_dto_ts_apipropertyoptional", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_ebank_checkout_dto_ts_isnotempty", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_ebank_checkout_dto_ts_isnumber", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_ebank_checkout_dto_ts_isoptional", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_ebank_checkout_dto_ts_isstring", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "isstring" - }, - { - "label": "Min", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_ebank_checkout_dto_ts_min", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "min" - }, - { - "label": "initiate-payment.dto.ts", - "file_type": "code", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_file": "frontend/application/components/PetProfile.tsx", "source_location": "L1", "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "initiate-payment.dto.ts" + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "petprofile.tsx", + "id": "frontend_application_components_petprofile" }, { - "label": "ApiProperty", + "label": "SearchResultsPage.tsx", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_payment_dto_initiate_payment_dto_ts_isstring", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "isstring" - }, - { - "label": "payment.controller.ts", - "file_type": "code", - "source_file": "backend/src/payment/payment.controller.ts", + "source_file": "frontend/application/components/SearchResultsPage.tsx", "source_location": "L1", "_origin": "ast", - "id": "backend_src_payment_payment_controller", - "community": 61, - "community_name": "payment.controller.ts", - "norm_label": "payment.controller.ts" + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "searchresultspage.tsx", + "id": "frontend_application_components_searchresultspage" }, { - "label": "get-products.dto.ts", + "label": "components/Skeleton.tsx", "file_type": "code", - "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_file": "frontend/application/components/Skeleton.tsx", "source_location": "L1", "_origin": "ast", - "id": "backend_src_products_dto_get_products_dto", - "community": 62, - "community_name": "ProductsService", - "norm_label": "get-products.dto.ts" + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "components/skeleton.tsx", + "id": "frontend_application_components_skeleton" }, { - "label": "ApiPropertyOptional", + "label": "FeaturedProducts.test.tsx", "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_dto_get_products_dto_ts_apipropertyoptional", - "community": 62, - "community_name": "ProductsService", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsEnum", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_dto_get_products_dto_ts_isenum", - "community": 62, - "community_name": "ProductsService", - "norm_label": "isenum" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_dto_get_products_dto_ts_isoptional", - "community": 62, - "community_name": "ProductsService", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_dto_get_products_dto_ts_isstring", - "community": 62, - "community_name": "ProductsService", - "norm_label": "isstring" - }, - { - "label": "products.controller.ts", - "file_type": "code", - "source_file": "backend/src/products/products.controller.ts", + "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", "source_location": "L1", "_origin": "ast", - "id": "backend_src_products_products_controller", - "community": 62, - "community_name": "ProductsService", - "norm_label": "products.controller.ts" + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "featuredproducts.test.tsx", + "id": "frontend_application_components_tests_featuredproducts_test" }, { - "label": "products.controller.spec.ts", + "label": "mockProducts", "file_type": "code", - "source_file": "backend/src/products/products.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_products_products_controller_spec", - "community": 62, - "community_name": "ProductsService", - "norm_label": "products.controller.spec.ts" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_products_controller_ts_query", - "community": 62, - "community_name": "ProductsService", - "norm_label": "query" - }, - { - "label": "products.module.ts", - "file_type": "code", - "source_file": "backend/src/products/products.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_products_products_module", - "community": 62, - "community_name": "ProductsService", - "norm_label": "products.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_products_module_ts_module", - "community": 62, - "community_name": "ProductsService", - "norm_label": "module" - }, - { - "label": "products.service.ts", - "file_type": "code", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_products_products_service", - "community": 62, - "community_name": "ProductsService", - "norm_label": "products.service.ts" - }, - { - "label": "products.service.spec.ts", - "file_type": "code", - "source_file": "backend/src/products/products.service.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_products_products_service_spec", - "community": 62, - "community_name": "ProductsService", - "norm_label": "products.service.spec.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_products_products_service_ts_injectable", - "community": 62, - "community_name": "ProductsService", - "norm_label": "injectable" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L24", - "_origin": "ast", - "id": "backend_package_dependencies", - "community": 63, - "community_name": "dependencies", - "norm_label": "dependencies" - }, - { - "label": "bcrypt", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L33", - "_origin": "ast", - "id": "backend_package_dependencies_bcrypt", - "community": 63, - "community_name": "dependencies", - "norm_label": "bcrypt" - }, - { - "label": "bcryptjs", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L34", - "_origin": "ast", - "id": "backend_package_dependencies_bcryptjs", - "community": 63, - "community_name": "dependencies", - "norm_label": "bcryptjs" - }, - { - "label": "class-validator", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L36", - "_origin": "ast", - "id": "backend_package_dependencies_class_validator", - "community": 63, - "community_name": "dependencies", - "norm_label": "class-validator" - }, - { - "label": "compression", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L37", - "_origin": "ast", - "id": "backend_package_dependencies_compression", - "community": 63, - "community_name": "dependencies", - "norm_label": "compression" - }, - { - "label": "ioredis", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L39", - "_origin": "ast", - "id": "backend_package_dependencies_ioredis", - "community": 63, - "community_name": "dependencies", - "norm_label": "ioredis" - }, - { - "label": "@nestjs/common", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L25", - "_origin": "ast", - "id": "backend_package_dependencies_nestjs_common", - "community": 63, - "community_name": "dependencies", - "norm_label": "@nestjs/common" - }, - { - "label": "@nestjs/passport", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L28", - "_origin": "ast", - "id": "backend_package_dependencies_nestjs_passport", - "community": 63, - "community_name": "dependencies", - "norm_label": "@nestjs/passport" - }, - { - "label": "@nestjs/platform-express", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L29", - "_origin": "ast", - "id": "backend_package_dependencies_nestjs_platform_express", - "community": 63, - "community_name": "dependencies", - "norm_label": "@nestjs/platform-express" - }, - { - "label": "passport-jwt", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L42", - "_origin": "ast", - "id": "backend_package_dependencies_passport_jwt", - "community": 63, - "community_name": "dependencies", - "norm_label": "passport-jwt" - }, - { - "label": "@prisma/client", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L32", - "_origin": "ast", - "id": "backend_package_dependencies_prisma_client", - "community": 63, - "community_name": "dependencies", - "norm_label": "@prisma/client" - }, - { - "label": "rxjs", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L44", - "_origin": "ast", - "id": "backend_package_dependencies_rxjs", - "community": 63, - "community_name": "dependencies", - "norm_label": "rxjs" - }, - { - "label": "bcrypt", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L33", - "_origin": "ast", - "id": "bcrypt", - "community": 63, - "community_name": "dependencies", - "norm_label": "bcrypt" - }, - { - "label": "bcryptjs", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L34", - "_origin": "ast", - "id": "bcryptjs", - "community": 63, - "community_name": "dependencies", - "norm_label": "bcryptjs" - }, - { - "label": "class-validator", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L36", - "_origin": "ast", - "id": "class_validator", - "community": 63, - "community_name": "dependencies", - "norm_label": "class-validator" - }, - { - "label": "compression", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L37", - "_origin": "ast", - "id": "compression", - "community": 63, - "community_name": "dependencies", - "norm_label": "compression" - }, - { - "label": "ioredis", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L39", - "_origin": "ast", - "id": "ioredis", - "community": 63, - "community_name": "dependencies", - "norm_label": "ioredis" - }, - { - "label": "@nestjs/common", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L25", - "_origin": "ast", - "id": "nestjs_common", - "community": 63, - "community_name": "dependencies", - "norm_label": "@nestjs/common" - }, - { - "label": "@nestjs/passport", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L28", - "_origin": "ast", - "id": "nestjs_passport", - "community": 63, - "community_name": "dependencies", - "norm_label": "@nestjs/passport" - }, - { - "label": "@nestjs/platform-express", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L29", - "_origin": "ast", - "id": "nestjs_platform_express", - "community": 63, - "community_name": "dependencies", - "norm_label": "@nestjs/platform-express" - }, - { - "label": "passport-jwt", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L42", - "_origin": "ast", - "id": "passport_jwt", - "community": 63, - "community_name": "dependencies", - "norm_label": "passport-jwt" - }, - { - "label": "@prisma/client", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L32", - "_origin": "ast", - "id": "prisma_client", - "community": 63, - "community_name": "dependencies", - "norm_label": "@prisma/client" - }, - { - "label": "rxjs", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L44", - "_origin": "ast", - "id": "rxjs", - "community": 63, - "community_name": "dependencies", - "norm_label": "rxjs" - }, - { - "label": "tsconfig.node.json", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "tsconfig.node.json" - }, - { - "label": "compilerOptions", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L2", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "compileroptions" - }, - { - "label": "allowImportingTsExtensions", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_allowimportingtsextensions", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "allowimportingtsextensions" - }, - { - "label": "erasableSyntaxOnly", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L20", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_erasablesyntaxonly", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "erasablesyntaxonly" - }, - { - "label": "lib", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_lib", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "lib" - }, - { - "label": "module", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L6", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_module", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "module" - }, - { - "label": "moduleDetection", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_moduledetection", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "moduledetection" - }, - { - "label": "moduleResolution", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L11", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_moduleresolution", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "moduleresolution" - }, - { - "label": "noEmit", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L15", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_noemit", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "noemit" - }, - { - "label": "noFallthroughCasesInSwitch", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L21", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_nofallthroughcasesinswitch", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "nofallthroughcasesinswitch" - }, - { - "label": "noUnusedLocals", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L18", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedlocals", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "nounusedlocals" - }, - { - "label": "noUnusedParameters", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", "source_location": "L19", "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedparameters", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "nounusedparameters" + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "mockproducts", + "id": "frontend_application_components_tests_featuredproducts_test_mockproducts" }, { - "label": "skipLibCheck", + "label": "usePetStore.ts", "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L8", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_skiplibcheck", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "skiplibcheck" - }, - { - "label": "target", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_target", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "target" - }, - { - "label": "tsBuildInfoFile", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L3", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_tsbuildinfofile", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "tsbuildinfofile" - }, - { - "label": "types", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L7", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_types", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "types" - }, - { - "label": "verbatimModuleSyntax", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L13", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_compileroptions_verbatimmodulesyntax", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "verbatimmodulesyntax" - }, - { - "label": "include", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L23", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_include", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "include" - }, - { - "label": "ES2023", - "file_type": "concept", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_json_ref_es2023", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "es2023" - }, - { - "label": "node", - "file_type": "concept", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L7", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_node_json_ref_node", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "node" - }, - { - "label": "vite.config.ts", - "file_type": "concept", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L23", - "_origin": "ast", - "id": "ref_vite_config_ts", - "community": 64, - "community_name": "compilerOptions", - "norm_label": "vite.config.ts" - }, - { - "label": "app_module_1", - "file_type": "code", - "source_file": "backend/test/app.e2e-spec.js", - "source_location": "L8", - "_origin": "ast", - "id": "backend_test_app_e2e_spec_app_module_1", - "community": 65, - "community_name": "app.e2e-spec.js", - "norm_label": "app_module_1" - }, - { - "label": "app.e2e-spec.js", - "file_type": "code", - "source_file": "backend/test/app.e2e-spec.js", + "source_file": "frontend/application/lib/store/usePetStore.ts", "source_location": "L1", "_origin": "ast", - "id": "backend_test_app_e2e_spec_js_backend_test_app_e2e_spec", - "community": 65, - "community_name": "app.e2e-spec.js", - "norm_label": "app.e2e-spec.js" + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "usepetstore.ts", + "id": "frontend_application_lib_store_usepetstore" }, { - "label": "supertest_1", + "label": "usePetStore", "file_type": "code", - "source_file": "backend/test/app.e2e-spec.js", - "source_location": "L7", - "_origin": "ast", - "id": "backend_test_app_e2e_spec_supertest_1", - "community": 65, - "community_name": "app.e2e-spec.js", - "norm_label": "supertest_1" - }, - { - "label": "testing_1", - "file_type": "code", - "source_file": "backend/test/app.e2e-spec.js", - "source_location": "L6", - "_origin": "ast", - "id": "backend_test_app_e2e_spec_testing_1", - "community": 65, - "community_name": "app.e2e-spec.js", - "norm_label": "testing_1" - }, - { - "label": "ApiQuery", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_apiquery", - "community": 66, - "community_name": "AdminQueryDto", - "norm_label": "apiquery" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_get", - "community": 66, - "community_name": "AdminQueryDto", - "norm_label": "get" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_controller_ts_query", - "community": 66, - "community_name": "AdminQueryDto", - "norm_label": "query" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional", - "community": 66, - "community_name": "AdminQueryDto", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_admin_query_dto_ts_isoptional", - "community": 66, - "community_name": "AdminQueryDto", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_dto_admin_query_dto_ts_isstring", - "community": 66, - "community_name": "AdminQueryDto", - "norm_label": "isstring" - }, - { - "label": "admin/pets.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_pets_controller", - "community": 67, - "community_name": "PetsController", - "norm_label": "admin/pets.controller.ts" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_apibearerauth", - "community": 67, - "community_name": "PetsController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_apioperation", - "community": 67, - "community_name": "PetsController", - "norm_label": "apioperation" - }, - { - "label": "ApiQuery", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_apiquery", - "community": 67, - "community_name": "PetsController", - "norm_label": "apiquery" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_apitags", - "community": 67, - "community_name": "PetsController", - "norm_label": "apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_controller", - "community": 67, - "community_name": "PetsController", - "norm_label": "controller" - }, - { - "label": "Delete", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_delete", - "community": 67, - "community_name": "PetsController", - "norm_label": "delete" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_get", - "community": 67, - "community_name": "PetsController", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_param", - "community": 67, - "community_name": "PetsController", - "norm_label": "param" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_query", - "community": 67, - "community_name": "PetsController", - "norm_label": "query" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_controller_ts_useguards", - "community": 67, - "community_name": "PetsController", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_pets_service_ts_injectable", - "community": 67, - "community_name": "PetsController", - "norm_label": "injectable" - }, - { - "label": "20260526145407_init/migration.sql", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": null, - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration", - "community": 68, - "community_name": "20260526145407_init/migration.sql", - "norm_label": "20260526145407_init/migration.sql" - }, - { - "label": "\"coupons\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L148", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_coupons", - "community": 68, - "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"coupons\"" - }, - { - "label": "\"health_logs\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L134", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_health_logs", - "community": 68, - "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"health_logs\"" - }, - { - "label": "\"order_items\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L173", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_order_items", - "community": 68, - "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"order_items\"" - }, - { - "label": "\"orders\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L159", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_orders", - "community": 68, - "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"orders\"" - }, - { - "label": "\"pet_medical_conditions\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L103", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions", - "community": 68, - "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"pet_medical_conditions\"" - }, - { - "label": "\"pets\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L87", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_pets", - "community": 68, - "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"pets\"" - }, - { - "label": "\"product_ingredients\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L71", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients", - "community": 68, - "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"product_ingredients\"" - }, - { - "label": "\"product_symptoms\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L79", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms", - "community": 68, - "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"product_symptoms\"" - }, - { - "label": "\"products\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L49", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_products", - "community": 68, - "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"products\"" - }, - { - "label": "\"reminder_completions\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L124", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions", - "community": 68, - "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"reminder_completions\"" - }, - { - "label": "\"reminders\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L111", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_reminders", - "community": 68, - "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"reminders\"" - }, - { - "label": "\"user_addresses\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L18", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_user_addresses", - "community": 68, - "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"user_addresses\"" - }, - { - "label": "\"users\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L2", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_users", - "community": 68, - "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"users\"" - }, - { - "label": "\"wallet_transactions\"", - "file_type": "code", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L35", - "_origin": "ast", - "id": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions", - "community": 68, - "community_name": "20260526145407_init/migration.sql", - "norm_label": "\"wallet_transactions\"" - }, - { - "label": "31-module-audit-closure.md", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "31-module-audit-closure.md" - }, - { - "label": "10. Orders Backend", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L88", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_10_orders_backend", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "10. orders backend" - }, - { - "label": "11. Settings & Administrative Backend", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L96", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_11_settings_administrative_backend", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "11. settings & administrative backend" - }, - { - "label": "12. Prisma Schema, Migrations & Seed", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L104", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_12_prisma_schema_migrations_seed", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "12. prisma schema, migrations & seed" - }, - { - "label": "13. Redis & Temporary Auth State", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L114", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_13_redis_temporary_auth_state", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "13. redis & temporary auth state" - }, - { - "label": "14. Unit & E2E Tests", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L122", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_14_unit_e2e_tests", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "14. unit & e2e tests" - }, - { - "label": "15. Docker, NGINX, Prometheus & Deployment Config", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L131", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_15_docker_nginx_prometheus_deployment_config", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "15. docker, nginx, prometheus & deployment config" - }, - { - "label": "16. Documentation & OpenAPI Artifacts", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L139", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_16_documentation_openapi_artifacts", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "16. documentation & openapi artifacts" - }, - { - "label": "1. Storefront Shell & Routing", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L10", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_1_storefront_shell_routing", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "1. storefront shell & routing" - }, - { - "label": "2. Authentication UI, Stores & API Clients", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L19", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_2_authentication_ui_stores_api_clients", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "2. authentication ui, stores & api clients" - }, - { - "label": "3. Cart, Checkout, Order, Wallet & Payment UI", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L28", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_3_cart_checkout_order_wallet_payment_ui", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "3. cart, checkout, order, wallet & payment ui" - }, - { - "label": "4. Product, Pet, Scientific Term & Settings UI", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L37", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_4_product_pet_scientific_term_settings_ui", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "4. product, pet, scientific term & settings ui" - }, - { - "label": "5. NestJS Bootstrap & Shared Infrastructure", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L46", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_5_nestjs_bootstrap_shared_infrastructure", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "5. nestjs bootstrap & shared infrastructure" - }, - { - "label": "6. Authentication & Authorization Backend", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L55", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_6_authentication_authorization_backend", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "6. authentication & authorization backend" - }, - { - "label": "7. Users & Addresses Backend", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L63", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_7_users_addresses_backend", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "7. users & addresses backend" - }, - { - "label": "8. Pets Backend", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L71", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_8_pets_backend", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "8. pets backend" - }, - { - "label": "9. Products Backend", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L79", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_9_products_backend", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "9. products backend" - }, - { - "label": "Conclusion", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L149", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_conclusion", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "conclusion" - }, - { - "label": "Module Audit Closure Report", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_module_audit_closure_report", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "module audit closure report" - }, - { - "label": "Required Review Group Closures", - "file_type": "document", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L8", - "_origin": "ast", - "id": "docs_audit_31_module_audit_closure_required_review_group_closures", - "community": 69, - "community_name": "Required Review Group Closures", - "norm_label": "required review group closures" - }, - { - "label": "create-pet.dto.ts", - "file_type": "code", - "source_file": "backend/src/pets/dto/create-pet.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "create-pet.dto.ts" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto_ts_apiproperty", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto_ts_apipropertyoptional", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsArray", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto_ts_isarray", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "isarray" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto_ts_isnotempty", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "isnotempty" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto_ts_isnumber", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto_ts_isoptional", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_dto_create_pet_dto_ts_isstring", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "isstring" - }, - { - "label": "update-pet.dto.ts", - "file_type": "code", - "source_file": "backend/src/pets/dto/update-pet.dto.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_pets_dto_update_pet_dto", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "update-pet.dto.ts" - }, - { - "label": "pets/pets.controller.ts", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_pets_pets_controller", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "pets/pets.controller.ts" - }, - { - "label": "pets.controller.spec.ts", - "file_type": "code", - "source_file": "backend/src/pets/pets.controller.spec.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_spec", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "pets.controller.spec.ts" - }, - { - "label": "pets.module.ts", - "file_type": "code", - "source_file": "backend/src/pets/pets.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_pets_pets_module", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "pets.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_module_ts_module", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "module" - }, - { - "label": "pets/pets.service.ts", - "file_type": "code", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_pets_pets_service", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "pets/pets.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_service_ts_injectable", - "community": 7, - "community_name": "pets/pets.controller.ts", - "norm_label": "injectable" - }, - { - "label": "tsconfig.app.json", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "tsconfig.app.json" - }, - { - "label": "compilerOptions", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L2", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "compileroptions" - }, - { - "label": "allowImportingTsExtensions", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_allowimportingtsextensions", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "allowimportingtsextensions" - }, - { - "label": "erasableSyntaxOnly", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L21", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_erasablesyntaxonly", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "erasablesyntaxonly" - }, - { - "label": "jsx", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L16", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_jsx", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "jsx" - }, - { - "label": "lib", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_lib", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "lib" - }, - { - "label": "module", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L6", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_module", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "module" - }, - { - "label": "moduleDetection", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_moduledetection", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "moduledetection" - }, - { - "label": "moduleResolution", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L11", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_moduleresolution", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "moduleresolution" - }, - { - "label": "noEmit", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L15", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_noemit", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "noemit" - }, - { - "label": "noFallthroughCasesInSwitch", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L22", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_nofallthroughcasesinswitch", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "nofallthroughcasesinswitch" - }, - { - "label": "noUnusedLocals", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L19", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedlocals", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "nounusedlocals" - }, - { - "label": "noUnusedParameters", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L20", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedparameters", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "nounusedparameters" - }, - { - "label": "skipLibCheck", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L8", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_skiplibcheck", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "skiplibcheck" - }, - { - "label": "target", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_target", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "target" - }, - { - "label": "tsBuildInfoFile", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L3", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_tsbuildinfofile", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "tsbuildinfofile" - }, - { - "label": "types", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L7", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_types", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "types" - }, - { - "label": "verbatimModuleSyntax", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L13", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_compileroptions_verbatimmodulesyntax", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "verbatimmodulesyntax" - }, - { - "label": "include", - "file_type": "code", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L24", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_include", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "include" - }, - { - "label": "DOM", - "file_type": "concept", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_json_ref_dom", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "dom" - }, - { - "label": "DOM.Iterable", - "file_type": "concept", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_json_ref_dom_iterable", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "dom.iterable" - }, - { - "label": "ES2023", - "file_type": "concept", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L5", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_json_ref_es2023", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "es2023" - }, - { - "label": "src", - "file_type": "concept", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L24", - "_origin": "ast", - "id": "frontend_admin_panel_tsconfig_app_json_ref_src", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "src" - }, - { - "label": "vite/client", - "file_type": "concept", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L7", - "_origin": "ast", - "id": "ref_vite_client", - "community": 70, - "community_name": "compilerOptions", - "norm_label": "vite/client" - }, - { - "label": "about/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/about/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_about_page", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "about/page.tsx" - }, - { - "label": "catalog/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/catalog/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_catalog_page", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "catalog/page.tsx" - }, - { - "label": "checkout/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_checkout_page", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "checkout/page.tsx" - }, - { - "label": "dashboard/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/dashboard/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_dashboard_page", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "dashboard/page.tsx" - }, - { - "label": "app/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_page", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "app/page.tsx" - }, - { - "label": "privacy/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/privacy/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_privacy_page", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "privacy/page.tsx" - }, - { - "label": "profile/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/profile/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_profile_page", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "profile/page.tsx" - }, - { - "label": "track/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/track/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_track_page", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "track/page.tsx" - }, - { - "label": "wiki/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/wiki/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_wiki_page", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "wiki/page.tsx" - }, - { - "label": "seo.ts", - "file_type": "code", - "source_file": "frontend/application/lib/seo.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_seo", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "seo.ts" - }, - { - "label": "DEFAULT_SEO_CONFIG", - "file_type": "code", - "source_file": "frontend/application/lib/seo.ts", - "source_location": "L16", - "_origin": "ast", - "id": "frontend_application_lib_seo_default_seo_config", - "community": 71, - "community_name": "getPageMetadata", - "norm_label": "default_seo_config" - }, - { - "label": "06_dev_frontend.md", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "06_dev_frontend.md" - }, - { - "label": "1. Always Read Tech Stack First", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L119", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_1_always_read_tech_stack_first", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. always read tech stack first" - }, - { - "label": "2. Sub-step Execution (Token Resume Support)", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L131", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_2_sub_step_execution_token_resume_support", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. sub-step execution (token resume support)" - }, - { - "label": "3. API Mocking Requirement", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L141", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_3_api_mocking_requirement", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. api mocking requirement" - }, - { - "label": "4. Modular Component Architecture", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L148", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_4_modular_component_architecture", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. modular component architecture" - }, - { - "label": "5. Responsive Design (Mandatory)", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L157", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_5_responsive_design_mandatory", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. responsive design (mandatory)" - }, - { - "label": "6. File Scope Boundary", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L163", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_6_file_scope_boundary", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "6. file scope boundary" - }, - { - "label": "7. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L167", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_7_forbidden_actions", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "7. forbidden actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L187", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_expected_json_output_schema", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "IMPLEMENT MODE \u2014 Normal Operation", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L103", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_implement_mode_normal_operation", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "implement mode \u2014 normal operation" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L117", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Output", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_file": "frontend/application/lib/store/usePetStore.ts", "source_location": "L65", "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_output", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "output" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L175", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_required_output_artifacts_what_files_to_write_update", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "\u2605 REVIEW MODE (called during Review Phase)", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L7", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "\u2605 review mode (called during review phase)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_role_core_objective", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L107", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_strict_input_specifications_what_files_to_read", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "What You DO NOT Review", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L23", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_what_you_do_not_review", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you do not review" - }, - { - "label": "What You Look For (Frontend Expert Eyes Only)", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L26", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_what_you_look_for_frontend_expert_eyes_only", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you look for (frontend expert eyes only)" - }, - { - "label": "Your Domain \u2014 What You Review (ONLY these areas)", - "file_type": "document", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L11", - "_origin": "ast", - "id": "ai_agency_agents_06_dev_frontend_your_domain_what_you_review_only_these_areas", - "community": 72, - "community_name": "Operational Rules & Boundaries", - "norm_label": "your domain \u2014 what you review (only these areas)" - }, - { - "label": "08_visual_qa.md", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "08_visual_qa.md" - }, - { - "label": "1. Framework-Aware Analysis", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L115", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_1_framework_aware_analysis", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. framework-aware analysis" - }, - { - "label": "2. DOM & Semantic Structure Analysis", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L126", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_2_dom_semantic_structure_analysis", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. dom & semantic structure analysis" - }, - { - "label": "3. Accessibility Compliance", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L134", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_3_accessibility_compliance", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. accessibility compliance" - }, - { - "label": "4. Responsive Layout Verification", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L143", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_4_responsive_layout_verification", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. responsive layout verification" - }, - { - "label": "5. Fallback Inspection Mode", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L155", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_5_fallback_inspection_mode", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. fallback inspection mode" - }, - { - "label": "6. Defect Routing Protocol", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L162", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_6_defect_routing_protocol", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "6. defect routing protocol" - }, - { - "label": "7. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L174", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_7_forbidden_actions", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "7. forbidden actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L190", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_expected_json_output_schema", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "INSPECT MODE \u2014 Normal Operation (Post-Task Verification)", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L99", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_inspect_mode_normal_operation_post_task_verification", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "inspect mode \u2014 normal operation (post-task verification)" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L113", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Output", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L63", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_output", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "output" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L182", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_required_output_artifacts_what_files_to_write_update", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "\u2605 REVIEW MODE (called during Review Phase)", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L9", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "\u2605 review mode (called during review phase)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_role_core_objective", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L103", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_strict_input_specifications_what_files_to_read", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "What You DO NOT Review", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L24", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_what_you_do_not_review", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you do not review" - }, - { - "label": "What You Look For (UX Expert Eyes Only)", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L27", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_what_you_look_for_ux_expert_eyes_only", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you look for (ux expert eyes only)" - }, - { - "label": "Your Domain \u2014 What You Review (ONLY these areas)", - "file_type": "document", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L13", - "_origin": "ast", - "id": "ai_agency_agents_08_visual_qa_your_domain_what_you_review_only_these_areas", - "community": 73, - "community_name": "Operational Rules & Boundaries", - "norm_label": "your domain \u2014 what you review (only these areas)" + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "usepetstore", + "id": "frontend_application_lib_store_usepetstore_usepetstore" }, { "label": "ApiBearerAuth", @@ -41462,10 +35082,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_apibearerauth", - "community": 74, - "community_name": "WikiController", - "norm_label": "apibearerauth" + "community": 36, + "community_name": "FaqService", + "norm_label": "apibearerauth", + "id": "backend_src_faq_faq_controller_ts_apibearerauth" }, { "label": "ApiOperation", @@ -41473,21 +35093,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_apioperation", - "community": 74, - "community_name": "WikiController", - "norm_label": "apioperation" - }, - { - "label": "ApiQuery", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_apiquery", - "community": 74, - "community_name": "WikiController", - "norm_label": "apiquery" + "community": 36, + "community_name": "FaqService", + "norm_label": "apioperation", + "id": "backend_src_faq_faq_controller_ts_apioperation" }, { "label": "ApiTags", @@ -41495,10 +35104,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_apitags", - "community": 74, - "community_name": "WikiController", - "norm_label": "apitags" + "community": 36, + "community_name": "FaqService", + "norm_label": "apitags", + "id": "backend_src_faq_faq_controller_ts_apitags" }, { "label": "Body", @@ -41506,10 +35115,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_body", - "community": 74, - "community_name": "WikiController", - "norm_label": "body" + "community": 36, + "community_name": "FaqService", + "norm_label": "body", + "id": "backend_src_faq_faq_controller_ts_body" }, { "label": "Controller", @@ -41517,10 +35126,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_controller", - "community": 74, - "community_name": "WikiController", - "norm_label": "controller" + "community": 36, + "community_name": "FaqService", + "norm_label": "controller", + "id": "backend_src_faq_faq_controller_ts_controller" }, { "label": "Delete", @@ -41528,10 +35137,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_delete", - "community": 74, - "community_name": "WikiController", - "norm_label": "delete" + "community": 36, + "community_name": "FaqService", + "norm_label": "delete", + "id": "backend_src_faq_faq_controller_ts_delete" }, { "label": "Get", @@ -41539,10 +35148,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_get", - "community": 74, - "community_name": "WikiController", - "norm_label": "get" + "community": 36, + "community_name": "FaqService", + "norm_label": "get", + "id": "backend_src_faq_faq_controller_ts_get" }, { "label": "Param", @@ -41550,10 +35159,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_param", - "community": 74, - "community_name": "WikiController", - "norm_label": "param" + "community": 36, + "community_name": "FaqService", + "norm_label": "param", + "id": "backend_src_faq_faq_controller_ts_param" }, { "label": "Post", @@ -41561,10 +35170,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_post", - "community": 74, - "community_name": "WikiController", - "norm_label": "post" + "community": 36, + "community_name": "FaqService", + "norm_label": "post", + "id": "backend_src_faq_faq_controller_ts_post" }, { "label": "Put", @@ -41572,21 +35181,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_put", - "community": 74, - "community_name": "WikiController", - "norm_label": "put" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_query", - "community": 74, - "community_name": "WikiController", - "norm_label": "query" + "community": 36, + "community_name": "FaqService", + "norm_label": "put", + "id": "backend_src_faq_faq_controller_ts_put" }, { "label": "UseGuards", @@ -41594,153 +35192,424 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_admin_wiki_controller_ts_useguards", - "community": 74, - "community_name": "WikiController", - "norm_label": "useguards" + "community": 36, + "community_name": "FaqService", + "norm_label": "useguards", + "id": "backend_src_faq_faq_controller_ts_useguards" }, { - "label": "create-health-log.dto.ts", + "label": "Injectable", "file_type": "code", - "source_file": "backend/src/pets/dto/create-health-log.dto.ts", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 36, + "community_name": "FaqService", + "norm_label": "injectable", + "id": "backend_src_faq_faq_service_ts_injectable" + }, + { + "label": "04-setup-and-deployment.md", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", "source_location": "L1", "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto", - "community": 75, - "community_name": "PetsController", - "norm_label": "create-health-log.dto.ts" + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "04-setup-and-deployment.md", + "node_kind": "page", + "id": "docs_04_setup_and_deployment" }, { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "\u0627\u062c\u0631\u0627\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L13", "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto_ts_apiproperty", - "community": 75, - "community_name": "PetsController", - "norm_label": "apiproperty" + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f", + "node_kind": "heading", + "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0628\u06a9_\u0627\u0646\u062f" }, { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "\u0627\u062c\u0631\u0627\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L22", "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto_ts_apipropertyoptional", - "community": 75, - "community_name": "PetsController", - "norm_label": "apipropertyoptional" + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f", + "node_kind": "heading", + "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f" }, { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "\u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0648\u0698\u0647 \u062f\u0631 \u0633\u0631\u0648\u0631 \u0628\u0627 PM2", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L48", "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto_ts_isnotempty", - "community": 75, - "community_name": "PetsController", - "norm_label": "isnotempty" + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0627\u062c\u0631\u0627\u06cc \u067e\u0631\u0648\u0698\u0647 \u062f\u0631 \u0633\u0631\u0648\u0631 \u0628\u0627 pm2", + "node_kind": "heading", + "id": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2" }, { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f:", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L52", "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto_ts_isoptional", - "community": 75, - "community_name": "PetsController", - "norm_label": "isoptional" + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0628\u06a9\u200c\u0627\u0646\u062f:", + "node_kind": "heading", + "id": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u06a9_\u0627\u0646\u062f" }, { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f Next.js:", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L58", "_origin": "ast", - "id": "backend_src_pets_dto_create_health_log_dto_ts_isstring", - "community": 75, - "community_name": "PetsController", - "norm_label": "isstring" + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0641\u0631\u0627\u0646\u062a\u200c\u0627\u0646\u062f next.js:", + "node_kind": "heading", + "id": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_next_js" }, { - "label": "create-reminder.dto.ts", - "file_type": "code", - "source_file": "backend/src/pets/dto/create-reminder.dto.ts", + "label": "\u0628\u06cc\u0644\u062f \u06a9\u0631\u062f\u0646 \u067e\u0631\u0648\u0698\u0647 (Building)", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L36", + "_origin": "ast", + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0628\u06cc\u0644\u062f \u06a9\u0631\u062f\u0646 \u067e\u0631\u0648\u0698\u0647 (building)", + "node_kind": "heading", + "id": "docs_04_setup_and_deployment_\u0628\u06cc\u0644\u062f_\u06a9\u0631\u062f\u0646_\u067e\u0631\u0648\u0698\u0647_building" + }, + { + "label": "\u0630\u062e\u06cc\u0631\u0647 \u067e\u0631\u0648\u0633\u0647\u200c\u0647\u0627 \u062a\u0627 \u067e\u0633 \u0627\u0632 \u0631\u06cc\u200c\u0627\u0633\u062a\u0627\u0631\u062a \u0633\u0631\u0648\u0631 \u0642\u0637\u0639 \u0646\u0634\u0648\u0646\u062f:", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L64", + "_origin": "ast", + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0630\u062e\u06cc\u0631\u0647 \u067e\u0631\u0648\u0633\u0647\u200c\u0647\u0627 \u062a\u0627 \u067e\u0633 \u0627\u0632 \u0631\u06cc\u200c\u0627\u0633\u062a\u0627\u0631\u062a \u0633\u0631\u0648\u0631 \u0642\u0637\u0639 \u0646\u0634\u0648\u0646\u062f:", + "node_kind": "heading", + "id": "docs_04_setup_and_deployment_\u0630\u062e\u06cc\u0631\u0647_\u067e\u0631\u0648\u0633\u0647_\u0647\u0627_\u062a\u0627_\u067e\u0633_\u0627\u0632_\u0631\u06cc_\u0627\u0633\u062a\u0627\u0631\u062a_\u0633\u0631\u0648\u0631_\u0642\u0637\u0639_\u0646\u0634\u0648\u0646\u062f" + }, + { + "label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 \u0633\u06cc\u0633\u062a\u0645 (Setup & Deployment)", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", "source_location": "L1", "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto", - "community": 75, - "community_name": "PetsController", - "norm_label": "create-reminder.dto.ts" + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0631\u0627\u0647\u200c\u0627\u0646\u062f\u0627\u0632\u06cc \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 \u0633\u06cc\u0633\u062a\u0645 (setup & deployment)", + "node_kind": "heading", + "id": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment" }, { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "\u0646\u0645\u0648\u0646\u0647 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af Nginx", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L78", "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_ts_apiproperty", - "community": 75, - "community_name": "PetsController", - "norm_label": "apiproperty" + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0646\u0645\u0648\u0646\u0647 \u0641\u0627\u06cc\u0644 \u06a9\u0627\u0646\u0641\u06cc\u06af nginx", + "node_kind": "heading", + "id": "docs_04_setup_and_deployment_\u0646\u0645\u0648\u0646\u0647_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_nginx" }, { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L9", "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_ts_apipropertyoptional", - "community": 75, - "community_name": "PetsController", - "norm_label": "apipropertyoptional" + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627", + "node_kind": "heading", + "id": "docs_04_setup_and_deployment_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627" }, { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "\u06f1. \u0645\u062d\u06cc\u0637 \u062a\u0648\u0633\u0639\u0647 (Development Mode)", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L5", "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_ts_isnotempty", - "community": 75, - "community_name": "PetsController", - "norm_label": "isnotempty" + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f1. \u0645\u062d\u06cc\u0637 \u062a\u0648\u0633\u0639\u0647 (development mode)", + "node_kind": "heading", + "id": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode" }, { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "\u06f2. \u0645\u062d\u06cc\u0637 \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646 \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 (Production Deployment)", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L32", "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_ts_isoptional", - "community": 75, - "community_name": "PetsController", - "norm_label": "isoptional" + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f2. \u0645\u062d\u06cc\u0637 \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646 \u0648 \u0627\u0646\u062a\u0634\u0627\u0631 (production deployment)", + "node_kind": "heading", + "id": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment" }, { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "\u06f3. \u062a\u0646\u0638\u06cc\u0645\u0627\u062a Nginx (Reverse Proxy)", + "file_type": "document", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L72", "_origin": "ast", - "id": "backend_src_pets_dto_create_reminder_dto_ts_isstring", - "community": 75, - "community_name": "PetsController", - "norm_label": "isstring" + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f3. \u062a\u0646\u0638\u06cc\u0645\u0627\u062a nginx (reverse proxy)", + "node_kind": "heading", + "id": "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy" }, { - "label": "ApiBadRequestResponse", - "file_type": "code", - "source_file": "", - "source_location": "", + "label": "05-devops-and-monitoring.md", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L1", "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apibadrequestresponse", - "community": 75, - "community_name": "PetsController", - "norm_label": "apibadrequestresponse" + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "05-devops-and-monitoring.md", + "node_kind": "page", + "id": "docs_05_devops_and_monitoring" + }, + { + "label": "\u062f\u0648\u0627\u067e\u0633 \u0648 \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0633\u06cc\u0633\u062a\u0645 (DevOps & Monitoring)", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L1", + "_origin": "ast", + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u062f\u0648\u0627\u067e\u0633 \u0648 \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0633\u06cc\u0633\u062a\u0645 (devops & monitoring)", + "node_kind": "heading", + "id": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring" + }, + { + "label": "\u06f1. \u0641\u0631\u0622\u06cc\u0646\u062f \u0627\u0633\u062a\u0642\u0631\u0627\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 (CI/CD)", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L5", + "_origin": "ast", + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f1. \u0641\u0631\u0627\u06cc\u0646\u062f \u0627\u0633\u062a\u0642\u0631\u0627\u0631 \u062e\u0648\u062f\u06a9\u0627\u0631 (ci/cd)", + "node_kind": "heading", + "id": "docs_05_devops_and_monitoring_\u06f1_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0627\u0633\u062a\u0642\u0631\u0627\u0631_\u062e\u0648\u062f\u06a9\u0627\u0631_ci_cd" + }, + { + "label": "\u06f2. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0639\u0645\u0644\u06a9\u0631\u062f (PM2 Dashboard)", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L12", + "_origin": "ast", + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f2. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u0639\u0645\u0644\u06a9\u0631\u062f (pm2 dashboard)", + "node_kind": "heading", + "id": "docs_05_devops_and_monitoring_\u06f2_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0639\u0645\u0644\u06a9\u0631\u062f_pm2_dashboard" + }, + { + "label": "\u06f3. \u0628\u0631\u0631\u0633\u06cc \u0644\u0627\u06af\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645 (Logs Management)", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L27", + "_origin": "ast", + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f3. \u0628\u0631\u0631\u0633\u06cc \u0644\u0627\u06af\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645 (logs management)", + "node_kind": "heading", + "id": "docs_05_devops_and_monitoring_\u06f3_\u0628\u0631\u0631\u0633\u06cc_\u0644\u0627\u06af_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645_logs_management" + }, + { + "label": "\u06f4. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 (PostgreSQL)", + "file_type": "document", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L39", + "_origin": "ast", + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f4. \u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 (postgresql)", + "node_kind": "heading", + "id": "docs_05_devops_and_monitoring_\u06f4_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_postgresql" + }, + { + "label": "06-testing.md", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L1", + "_origin": "ast", + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "06-testing.md", + "node_kind": "page", + "id": "docs_06_testing" + }, + { + "label": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L1", + "_origin": "ast", + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (software testing)", + "node_kind": "heading", + "id": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing" + }, + { + "label": "\u06f1. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0648\u0627\u062d\u062f \u062f\u0631 Backend (Unit Testing)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L5", + "_origin": "ast", + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f1. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u0648\u0627\u062d\u062f \u062f\u0631 backend (unit testing)", + "node_kind": "heading", + "id": "docs_06_testing_\u06f1_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0648\u0627\u062d\u062f_\u062f\u0631_backend_unit_testing" + }, + { + "label": "\u06f2. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc End-to-End \u062f\u0631 Backend (E2E Testing)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L17", + "_origin": "ast", + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f2. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc end-to-end \u062f\u0631 backend (e2e testing)", + "node_kind": "heading", + "id": "docs_06_testing_\u06f2_\u062a\u0633\u062a_\u0647\u0627\u06cc_end_to_end_\u062f\u0631_backend_e2e_testing" + }, + { + "label": "\u06f3. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc UI \u062f\u0631 Frontend (Component Testing)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L27", + "_origin": "ast", + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f3. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc ui \u062f\u0631 frontend (component testing)", + "node_kind": "heading", + "id": "docs_06_testing_\u06f3_\u062a\u0633\u062a_\u0647\u0627\u06cc_ui_\u062f\u0631_frontend_component_testing" + }, + { + "label": "\u06f4. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc \u062f\u0631 Frontend (E2E Frontend - Playwright / Cypress)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L35", + "_origin": "ast", + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f4. \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc \u062f\u0631 frontend (e2e frontend - playwright / cypress)", + "node_kind": "heading", + "id": "docs_06_testing_\u06f4_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u062f\u0631_frontend_e2e_frontend_playwright_cypress" + }, + { + "label": "\u06f5. \u0686\u06a9 \u0644\u06cc\u0633\u062a \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u062f\u0633\u062a\u06cc (Manual QA Checklist)", + "file_type": "document", + "source_file": "docs/06-testing.md", + "source_location": "L38", + "_origin": "ast", + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u06f5. \u0686\u06a9 \u0644\u06cc\u0633\u062a \u062a\u0633\u062a\u200c\u0647\u0627\u06cc \u062f\u0633\u062a\u06cc (manual qa checklist)", + "node_kind": "heading", + "id": "docs_06_testing_\u06f5_\u0686\u06a9_\u0644\u06cc\u0633\u062a_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u062f\u0633\u062a\u06cc_manual_qa_checklist" + }, + { + "label": "docs/README.md", + "file_type": "document", + "source_file": "docs/README.md", + "source_location": "L1", + "_origin": "ast", + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "docs/readme.md", + "node_kind": "page", + "id": "docs_readme" + }, + { + "label": "\u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628 (Table of Contents)", + "file_type": "document", + "source_file": "docs/README.md", + "source_location": "L7", + "_origin": "ast", + "community": 37, + "community_name": "\u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u062a\u0633\u062a \u0633\u06cc\u0633\u062a\u0645 (Software Testing)", + "norm_label": "\u0641\u0647\u0631\u0633\u062a \u0645\u0637\u0627\u0644\u0628 (table of contents)", + "node_kind": "heading", + "id": "docs_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628_table_of_contents" + }, + { + "label": "TransactionReceiptModal.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 38, + "community_name": "Button", + "norm_label": "transactionreceiptmodal.tsx", + "id": "frontend_admin_panel_src_components_transactionreceiptmodal" + }, + { + "label": "ThSort.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ThSort.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 38, + "community_name": "Button", + "norm_label": "thsort.tsx", + "id": "frontend_admin_panel_src_components_ui_thsort" + }, + { + "label": "Transactions.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 38, + "community_name": "Button", + "norm_label": "transactions.tsx", + "id": "frontend_admin_panel_src_pages_transactions" + }, + { + "label": "Transactions", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L41", + "_origin": "ast", + "community": 38, + "community_name": "Button", + "norm_label": "transactions", + "id": "frontend_admin_panel_src_routes_adminroutes_transactions" + }, + { + "label": "useTableParams.ts", + "file_type": "code", + "source_file": "frontend/admin-panel/src/utils/useTableParams.ts", + "source_location": "L1", + "_origin": "ast", + "community": 38, + "community_name": "Button", + "norm_label": "usetableparams.ts", + "id": "frontend_admin_panel_src_utils_usetableparams" }, { "label": "ApiBearerAuth", @@ -41748,43 +35617,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apibearerauth", - "community": 75, - "community_name": "PetsController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiCreatedResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apicreatedresponse", - "community": 75, - "community_name": "PetsController", - "norm_label": "apicreatedresponse" - }, - { - "label": "ApiNotFoundResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apinotfoundresponse", - "community": 75, - "community_name": "PetsController", - "norm_label": "apinotfoundresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apiokresponse", - "community": 75, - "community_name": "PetsController", - "norm_label": "apiokresponse" + "community": 39, + "community_name": "CategoriesController", + "norm_label": "apibearerauth", + "id": "backend_src_admin_categories_controller_ts_apibearerauth" }, { "label": "ApiOperation", @@ -41792,10 +35628,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apioperation", - "community": 75, - "community_name": "PetsController", - "norm_label": "apioperation" + "community": 39, + "community_name": "CategoriesController", + "norm_label": "apioperation", + "id": "backend_src_admin_categories_controller_ts_apioperation" + }, + { + "label": "ApiQuery", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 39, + "community_name": "CategoriesController", + "norm_label": "apiquery", + "id": "backend_src_admin_categories_controller_ts_apiquery" }, { "label": "ApiTags", @@ -41803,10 +35650,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_apitags", - "community": 75, - "community_name": "PetsController", - "norm_label": "apitags" + "community": 39, + "community_name": "CategoriesController", + "norm_label": "apitags", + "id": "backend_src_admin_categories_controller_ts_apitags" }, { "label": "Body", @@ -41814,10 +35661,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_body", - "community": 75, - "community_name": "PetsController", - "norm_label": "body" + "community": 39, + "community_name": "CategoriesController", + "norm_label": "body", + "id": "backend_src_admin_categories_controller_ts_body" }, { "label": "Controller", @@ -41825,10 +35672,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_controller", - "community": 75, - "community_name": "PetsController", - "norm_label": "controller" + "community": 39, + "community_name": "CategoriesController", + "norm_label": "controller", + "id": "backend_src_admin_categories_controller_ts_controller" }, { "label": "Delete", @@ -41836,10 +35683,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_delete", - "community": 75, - "community_name": "PetsController", - "norm_label": "delete" + "community": 39, + "community_name": "CategoriesController", + "norm_label": "delete", + "id": "backend_src_admin_categories_controller_ts_delete" }, { "label": "Get", @@ -41847,10 +35694,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_get", - "community": 75, - "community_name": "PetsController", - "norm_label": "get" + "community": 39, + "community_name": "CategoriesController", + "norm_label": "get", + "id": "backend_src_admin_categories_controller_ts_get" }, { "label": "Param", @@ -41858,21 +35705,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_param", - "community": 75, - "community_name": "PetsController", - "norm_label": "param" - }, - { - "label": "Patch", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_patch", - "community": 75, - "community_name": "PetsController", - "norm_label": "patch" + "community": 39, + "community_name": "CategoriesController", + "norm_label": "param", + "id": "backend_src_admin_categories_controller_ts_param" }, { "label": "Post", @@ -41880,10 +35716,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_post", - "community": 75, - "community_name": "PetsController", - "norm_label": "post" + "community": 39, + "community_name": "CategoriesController", + "norm_label": "post", + "id": "backend_src_admin_categories_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 39, + "community_name": "CategoriesController", + "norm_label": "put", + "id": "backend_src_admin_categories_controller_ts_put" }, { "label": "Query", @@ -41891,32 +35738,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_query", - "community": 75, - "community_name": "PetsController", - "norm_label": "query" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_req", - "community": 75, - "community_name": "PetsController", - "norm_label": "req" - }, - { - "label": "UploadedFile", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_uploadedfile", - "community": 75, - "community_name": "PetsController", - "norm_label": "uploadedfile" + "community": 39, + "community_name": "CategoriesController", + "norm_label": "query", + "id": "backend_src_admin_categories_controller_ts_query" }, { "label": "UseGuards", @@ -41924,131 +35749,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_useguards", - "community": 75, - "community_name": "PetsController", - "norm_label": "useguards" - }, - { - "label": "UseInterceptors", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_pets_pets_controller_ts_useinterceptors", - "community": 75, - "community_name": "PetsController", - "norm_label": "useinterceptors" - }, - { - "label": "shop/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_shop_page", - "community": 76, - "community_name": "shop/page.tsx", - "norm_label": "shop/page.tsx" - }, - { - "label": "seo.controller.ts", - "file_type": "code", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_seo_seo_controller", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": "seo.controller.ts" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_seo_seo_controller_ts_apioperation", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_seo_seo_controller_ts_apitags", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": "apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_seo_seo_controller_ts_controller", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_seo_seo_controller_ts_get", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_seo_seo_controller_ts_param", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": "param" - }, - { - "label": "seo.module.ts", - "file_type": "code", - "source_file": "backend/src/seo/seo.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_seo_seo_module", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": "seo.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_seo_seo_module_ts_module", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": "module" - }, - { - "label": "seo.service.ts", - "file_type": "code", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_seo_seo_service", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": "seo.service.ts" + "community": 39, + "community_name": "CategoriesController", + "norm_label": "useguards", + "id": "backend_src_admin_categories_controller_ts_useguards" }, { "label": "Injectable", @@ -42056,2870 +35760,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_seo_seo_service_ts_injectable", - "community": 77, - "community_name": "seo.module.ts", - "norm_label": "injectable" + "community": 39, + "community_name": "CategoriesController", + "norm_label": "injectable", + "id": "backend_src_admin_categories_service_ts_injectable" }, { - "label": "rss.xml/route.ts", + "label": "BlogPage.tsx", "file_type": "code", - "source_file": "frontend/application/app/blog/rss.xml/route.ts", + "source_file": "frontend/application/components/BlogPage.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_app_blog_rss_xml_route", - "community": 78, - "community_name": "route.ts", - "norm_label": "rss.xml/route.ts" - }, - { - "label": "dynamic", - "file_type": "code", - "source_file": "frontend/application/app/blog/rss.xml/route.ts", - "source_location": "L3", - "_origin": "ast", - "id": "frontend_application_app_blog_rss_xml_route_dynamic", - "community": 78, - "community_name": "route.ts", - "norm_label": "dynamic" - }, - { - "label": "AGENCY.md", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agency", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "agency.md" - }, - { - "label": "Activation", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L12", - "_origin": "ast", - "id": "ai_agency_agency_activation", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "activation" - }, - { - "label": "Agent Directory Reference", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L239", - "_origin": "ast", - "id": "ai_agency_agency_agent_directory_reference", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "agent directory reference" - }, - { - "label": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "\ud83c\udfe2 ai software agency \u2014 master orchestration protocol v3" - }, - { - "label": "Phase 1: Specialist Review (All agents read, none write code yet)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L79", - "_origin": "ast", - "id": "ai_agency_agency_phase_1_specialist_review_all_agents_read_none_write_code_yet", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "phase 1: specialist review (all agents read, none write code yet)" - }, - { - "label": "Phase 2: Master Synthesis (02_product_manager in SYNTHESIS mode)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L104", - "_origin": "ast", - "id": "ai_agency_agency_phase_2_master_synthesis_02_product_manager_in_synthesis_mode", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "phase 2: master synthesis (02_product_manager in synthesis mode)" - }, - { - "label": "Phase 3: Execution (Same as always)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L114", - "_origin": "ast", - "id": "ai_agency_agency_phase_3_execution_same_as_always", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "phase 3: execution (same as always)" - }, - { - "label": "PIPELINE A \u2014 New Project (GREENFIELD)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L67", - "_origin": "ast", - "id": "ai_agency_agency_pipeline_a_new_project_greenfield", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "pipeline a \u2014 new project (greenfield)" - }, - { - "label": "PIPELINE B \u2014 Review & Improve Existing Project (REVIEW_AND_PLAN) \u2605", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L75", - "_origin": "ast", - "id": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "pipeline b \u2014 review & improve existing project (review_and_plan) \u2605" - }, - { - "label": "PIPELINE C \u2014 Add Specific Feature (ADD_FEATURE)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L121", - "_origin": "ast", - "id": "ai_agency_agency_pipeline_c_add_specific_feature_add_feature", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "pipeline c \u2014 add specific feature (add_feature)" - }, - { - "label": "PIPELINE D \u2014 Content & SEO Only (CONTENT_CREATION)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L133", - "_origin": "ast", - "id": "ai_agency_agency_pipeline_d_content_seo_only_content_creation", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "pipeline d \u2014 content & seo only (content_creation)" - }, - { - "label": "Real Data Policy", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L259", - "_origin": "ast", - "id": "ai_agency_agency_real_data_policy", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "real data policy" - }, - { - "label": "State.json Template (Full Schema v3)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L192", - "_origin": "ast", - "id": "ai_agency_agency_state_json_template_full_schema_v3", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "state.json template (full schema v3)" - }, - { - "label": "State Machine \u2014 Active Agent Tracking", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L182", - "_origin": "ast", - "id": "ai_agency_agency_state_machine_active_agent_tracking", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "state machine \u2014 active agent tracking" - }, - { - "label": "STEP 1 \u2014 Detect Project Intent", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L25", - "_origin": "ast", - "id": "ai_agency_agency_step_1_detect_project_intent", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "step 1 \u2014 detect project intent" - }, - { - "label": "STEP 2 \u2014 Token Limit / Context Resume Protocol (CRITICAL)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L41", - "_origin": "ast", - "id": "ai_agency_agency_step_2_token_limit_context_resume_protocol_critical", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "step 2 \u2014 token limit / context resume protocol (critical)" - }, - { - "label": "TASK EXECUTION LOOP (All Pipelines)", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L144", - "_origin": "ast", - "id": "ai_agency_agency_task_execution_loop_all_pipelines", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "task execution loop (all pipelines)" - }, - { - "label": "Your Identity", - "file_type": "document", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L3", - "_origin": "ast", - "id": "ai_agency_agency_your_identity", - "community": 79, - "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", - "norm_label": "your identity" - }, - { - "label": "admin.module.ts", - "file_type": "code", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_admin_module", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "admin.module.ts" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_admin_module_ts_module", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "module" - }, - { - "label": "media.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_media_controller", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "media.controller.ts" - }, - { - "label": "media.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_media_service", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "media.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_media_service_ts_injectable", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "injectable" - }, - { - "label": "reports.controller.ts", - "file_type": "code", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_reports_controller", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "reports.controller.ts" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_reports_controller_ts_apibearerauth", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "apibearerauth" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_reports_controller_ts_apioperation", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_reports_controller_ts_apitags", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_reports_controller_ts_controller", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_reports_controller_ts_get", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "get" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_reports_controller_ts_useguards", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "useguards" - }, - { - "label": "reports.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_reports_service", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "reports.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_reports_service_ts_injectable", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "injectable" - }, - { - "label": "ssl.service.ts", - "file_type": "code", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_admin_ssl_service", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "ssl.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_admin_wiki_service_ts_injectable", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "injectable" - }, - { - "label": "redis.module.ts", - "file_type": "code", - "source_file": "backend/src/redis/redis.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_redis_redis_module", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "redis.module.ts" - }, - { - "label": "Global", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_redis_redis_module_ts_global", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "global" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_redis_redis_module_ts_module", - "community": 8, - "community_name": "admin.module.ts", - "norm_label": "module" - }, - { - "label": "03_product_manager.md", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "03_product_manager.md" - }, - { - "label": "1. Hierarchical Decomposition Algorithm (3-Tier)", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L86", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_1_hierarchical_decomposition_algorithm_3_tier", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. hierarchical decomposition algorithm (3-tier)" - }, - { - "label": "2. Sub-step Definition (Required for all tasks)", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L98", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_2_sub_step_definition_required_for_all_tasks", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. sub-step definition (required for all tasks)" - }, - { - "label": "3. Brownfield Completeness Rule", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L110", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_3_brownfield_completeness_rule", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. brownfield completeness rule" - }, - { - "label": "4. Role Assignment Rules", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L116", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_4_role_assignment_rules", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. role assignment rules" - }, - { - "label": "5. Dependency Tracking (Strict)", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L126", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_5_dependency_tracking_strict", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. dependency tracking (strict)" - }, - { - "label": "6. Priority Assignment", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L132", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_6_priority_assignment", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "6. priority assignment" - }, - { - "label": "7. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L140", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_7_forbidden_actions", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "7. forbidden actions" - }, - { - "label": "DECOMPOSE MODE \u2014 Normal Operation (New Projects)", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L72", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_decompose_mode_normal_operation_new_projects", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "decompose mode \u2014 normal operation (new projects)" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L194", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_expected_json_output_schema", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L84", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Output of Synthesis Mode", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L62", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_output_of_synthesis_mode", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "output of synthesis mode" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L149", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_required_output_artifacts_what_files_to_write_update", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_role_core_objective", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L74", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_strict_input_specifications_what_files_to_read", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "\u2605 SYNTHESIS MODE (called after Review Phase completes)", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L7", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "\u2605 synthesis mode (called after review phase completes)" - }, - { - "label": "Synthesis Rules", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L23", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_synthesis_rules", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "synthesis rules" - }, - { - "label": "What You Read (ALL of these \u2014 the full picture)", - "file_type": "document", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L11", - "_origin": "ast", - "id": "ai_agency_agents_03_product_manager_what_you_read_all_of_these_the_full_picture", - "community": 80, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you read (all of these \u2014 the full picture)" - }, - { - "label": "05_dev_backend.md", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "05_dev_backend.md" - }, - { - "label": "1. Always Read Tech Stack First", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L110", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_1_always_read_tech_stack_first", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "1. always read tech stack first" - }, - { - "label": "2. Sub-step Execution (Token Resume Support)", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L121", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_2_sub_step_execution_token_resume_support", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "2. sub-step execution (token resume support)" - }, - { - "label": "3. Mandatory Test Authoring", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L131", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_3_mandatory_test_authoring", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "3. mandatory test authoring" - }, - { - "label": "4. Code Quality Standards", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L138", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_4_code_quality_standards", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "4. code quality standards" - }, - { - "label": "5. File Scope Boundary", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L146", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_5_file_scope_boundary", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "5. file scope boundary" - }, - { - "label": "6. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L151", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_6_forbidden_actions", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "6. forbidden actions" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L172", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_expected_json_output_schema", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "expected json output schema" - }, - { - "label": "IMPLEMENT MODE \u2014 Normal Operation", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L94", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_implement_mode_normal_operation", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "implement mode \u2014 normal operation" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L108", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Output", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L60", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_output", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "output" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L160", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_required_output_artifacts_what_files_to_write_update", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "\u2605 REVIEW MODE (called during Review Phase)", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L7", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "\u2605 review mode (called during review phase)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_role_core_objective", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L98", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_strict_input_specifications_what_files_to_read", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "What You DO NOT Review", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L23", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_what_you_do_not_review", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you do not review" - }, - { - "label": "What You Look For (Backend Expert Eyes Only)", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L26", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_what_you_look_for_backend_expert_eyes_only", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "what you look for (backend expert eyes only)" - }, - { - "label": "Your Domain \u2014 What You Review (ONLY these areas)", - "file_type": "document", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L11", - "_origin": "ast", - "id": "ai_agency_agents_05_dev_backend_your_domain_what_you_review_only_these_areas", - "community": 81, - "community_name": "Operational Rules & Boundaries", - "norm_label": "your domain \u2014 what you review (only these areas)" - }, - { - "label": "package.json", - "file_type": "code", - "source_file": "package.json", - "source_location": "L1", - "_origin": "ast", - "id": "package", - "community": 82, - "community_name": "scripts", - "norm_label": "package.json" - }, - { - "label": "devDependencies", - "file_type": "code", - "source_file": "package.json", - "source_location": "L17", - "_origin": "ast", - "id": "package_devdependencies", - "community": 82, - "community_name": "scripts", - "norm_label": "devdependencies" - }, - { - "label": "concurrently", - "file_type": "code", - "source_file": "package.json", - "source_location": "L18", - "_origin": "ast", - "id": "package_devdependencies_concurrently", - "community": 82, - "community_name": "scripts", - "norm_label": "concurrently" - }, - { - "label": "name", - "file_type": "code", - "source_file": "package.json", - "source_location": "L2", - "_origin": "ast", - "id": "package_name", - "community": 82, - "community_name": "scripts", - "norm_label": "name" - }, - { - "label": "private", - "file_type": "code", - "source_file": "package.json", - "source_location": "L4", - "_origin": "ast", - "id": "package_private", - "community": 82, - "community_name": "scripts", - "norm_label": "private" - }, - { - "label": "scripts", - "file_type": "code", - "source_file": "package.json", - "source_location": "L5", - "_origin": "ast", - "id": "package_scripts", - "community": 82, - "community_name": "scripts", - "norm_label": "scripts" - }, - { - "label": "build", - "file_type": "code", - "source_file": "package.json", - "source_location": "L14", - "_origin": "ast", - "id": "package_scripts_build", - "community": 82, - "community_name": "scripts", - "norm_label": "build" - }, - { - "label": "build:admin", - "file_type": "code", - "source_file": "package.json", - "source_location": "L13", - "_origin": "ast", - "id": "package_scripts_build_admin", - "community": 82, - "community_name": "scripts", - "norm_label": "build:admin" - }, - { - "label": "build:backend", - "file_type": "code", - "source_file": "package.json", - "source_location": "L11", - "_origin": "ast", - "id": "package_scripts_build_backend", - "community": 82, - "community_name": "scripts", - "norm_label": "build:backend" - }, - { - "label": "build:frontend", - "file_type": "code", - "source_file": "package.json", - "source_location": "L12", - "_origin": "ast", - "id": "package_scripts_build_frontend", - "community": 82, - "community_name": "scripts", - "norm_label": "build:frontend" - }, - { - "label": "dev", - "file_type": "code", - "source_file": "package.json", - "source_location": "L10", - "_origin": "ast", - "id": "package_scripts_dev", - "community": 82, - "community_name": "scripts", - "norm_label": "dev" - }, - { - "label": "dev:admin", - "file_type": "code", - "source_file": "package.json", - "source_location": "L9", - "_origin": "ast", - "id": "package_scripts_dev_admin", - "community": 82, - "community_name": "scripts", - "norm_label": "dev:admin" - }, - { - "label": "dev:backend", - "file_type": "code", - "source_file": "package.json", - "source_location": "L7", - "_origin": "ast", - "id": "package_scripts_dev_backend", - "community": 82, - "community_name": "scripts", - "norm_label": "dev:backend" - }, - { - "label": "dev:frontend", - "file_type": "code", - "source_file": "package.json", - "source_location": "L8", - "_origin": "ast", - "id": "package_scripts_dev_frontend", - "community": 82, - "community_name": "scripts", - "norm_label": "dev:frontend" - }, - { - "label": "install:all", - "file_type": "code", - "source_file": "package.json", - "source_location": "L6", - "_origin": "ast", - "id": "package_scripts_install_all", - "community": 82, - "community_name": "scripts", - "norm_label": "install:all" - }, - { - "label": "start", - "file_type": "code", - "source_file": "package.json", - "source_location": "L15", - "_origin": "ast", - "id": "package_scripts_start", - "community": 82, - "community_name": "scripts", - "norm_label": "start" - }, - { - "label": "version", - "file_type": "code", - "source_file": "package.json", - "source_location": "L3", - "_origin": "ast", - "id": "package_version", - "community": 82, - "community_name": "scripts", - "norm_label": "version" - }, - { - "label": "concurrently", - "file_type": "concept", - "source_file": "package.json", - "source_location": "L18", - "_origin": "ast", - "id": "concurrently", - "community": 82, - "community_name": "scripts", - "norm_label": "concurrently" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies", - "community": 83, - "community_name": "dependencies", - "norm_label": "dependencies" - }, - { - "label": "axios", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_axios", - "community": 83, - "community_name": "dependencies", - "norm_label": "axios" - }, - { - "label": "lucide-react", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L15", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_lucide_react", - "community": 83, - "community_name": "dependencies", - "norm_label": "lucide-react" - }, - { - "label": "react", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L16", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_react", - "community": 83, - "community_name": "dependencies", - "norm_label": "react" - }, - { - "label": "react-dom", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_react_dom", - "community": 83, - "community_name": "dependencies", - "norm_label": "react-dom" - }, - { - "label": "react-hot-toast", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L18", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_react_hot_toast", - "community": 83, - "community_name": "dependencies", - "norm_label": "react-hot-toast" - }, - { - "label": "react-router-dom", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L19", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_react_router_dom", - "community": 83, - "community_name": "dependencies", - "norm_label": "react-router-dom" - }, - { - "label": "recharts", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L20", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_recharts", - "community": 83, - "community_name": "dependencies", - "norm_label": "recharts" - }, - { - "label": "@tanstack/react-query", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L13", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_tanstack_react_query", - "community": 83, - "community_name": "dependencies", - "norm_label": "@tanstack/react-query" - }, - { - "label": "vite", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L21", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_vite", - "community": 83, - "community_name": "dependencies", - "norm_label": "vite" - }, - { - "label": "zustand", - "file_type": "code", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L22", - "_origin": "ast", - "id": "frontend_admin_panel_package_dependencies_zustand", - "community": 83, - "community_name": "dependencies", - "norm_label": "zustand" - }, - { - "label": "axios", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_axios", - "community": 83, - "community_name": "dependencies", - "norm_label": "axios" - }, - { - "label": "lucide-react", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L15", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_lucide_react", - "community": 83, - "community_name": "dependencies", - "norm_label": "lucide-react" - }, - { - "label": "react", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L16", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_react", - "community": 83, - "community_name": "dependencies", - "norm_label": "react" - }, - { - "label": "react-dom", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_react_dom", - "community": 83, - "community_name": "dependencies", - "norm_label": "react-dom" - }, - { - "label": "zustand", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L22", - "_origin": "ast", - "id": "frontend_admin_panel_package_json_zustand", - "community": 83, - "community_name": "dependencies", - "norm_label": "zustand" - }, - { - "label": "react-hot-toast", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L18", - "_origin": "ast", - "id": "react_hot_toast", - "community": 83, - "community_name": "dependencies", - "norm_label": "react-hot-toast" - }, - { - "label": "react-router-dom", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L19", - "_origin": "ast", - "id": "react_router_dom", - "community": 83, - "community_name": "dependencies", - "norm_label": "react-router-dom" - }, - { - "label": "recharts", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L20", - "_origin": "ast", - "id": "recharts", - "community": 83, - "community_name": "dependencies", - "norm_label": "recharts" - }, - { - "label": "@tanstack/react-query", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L13", - "_origin": "ast", - "id": "tanstack_react_query", - "community": 83, - "community_name": "dependencies", - "norm_label": "@tanstack/react-query" - }, - { - "label": "vite", - "file_type": "concept", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L21", - "_origin": "ast", - "id": "vite", - "community": 83, - "community_name": "dependencies", - "norm_label": "vite" - }, - { - "label": "09_devops_security.md", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security", - "community": 84, - "community_name": "Role & Core Objective", - "norm_label": "09_devops_security.md" - }, - { - "label": "1. Active Secret Scanning (All Modified Files)", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L108", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_1_active_secret_scanning_all_modified_files", - "community": 84, - "community_name": "Role & Core Objective", - "norm_label": "1. active secret scanning (all modified files)" - }, - { - "label": "2. Docker Container Verification (if Dockerfile exists)", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L120", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_2_docker_container_verification_if_dockerfile_exists", - "community": 84, - "community_name": "Role & Core Objective", - "norm_label": "2. docker container verification (if dockerfile exists)" - }, - { - "label": "3. CI/CD Basic Check (if `.github/workflows/` exists)", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L133", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_3_ci_cd_basic_check_if_github_workflows_exists", - "community": 84, - "community_name": "Role & Core Objective", - "norm_label": "3. ci/cd basic check (if `.github/workflows/` exists)" - }, - { - "label": "4. Failure Routing Protocol", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L138", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_4_failure_routing_protocol", - "community": 84, - "community_name": "Role & Core Objective", - "norm_label": "4. failure routing protocol" - }, - { - "label": "5. Forbidden Actions", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L150", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_5_forbidden_actions", - "community": 84, - "community_name": "Role & Core Objective", - "norm_label": "5. forbidden actions" - }, - { - "label": "ENFORCE MODE \u2014 Normal Operation", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L93", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_enforce_mode_normal_operation", - "community": 84, - "community_name": "Role & Core Objective", - "norm_label": "enforce mode \u2014 normal operation" - }, - { - "label": "Expected JSON Output Schema", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L168", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_expected_json_output_schema", - "community": 84, - "community_name": "Role & Core Objective", - "norm_label": "expected json output schema" - }, - { - "label": "Operational Rules & Boundaries", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L106", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_operational_rules_boundaries", - "community": 84, - "community_name": "Role & Core Objective", - "norm_label": "operational rules & boundaries" - }, - { - "label": "Output", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L58", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_output", - "community": 84, - "community_name": "Role & Core Objective", - "norm_label": "output" - }, - { - "label": "Required Output Artifacts (What files to write/update)", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L158", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_required_output_artifacts_what_files_to_write_update", - "community": 84, - "community_name": "Role & Core Objective", - "norm_label": "required output artifacts (what files to write/update)" - }, - { - "label": "\u2605 REVIEW MODE (called during Review Phase)", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L7", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", - "community": 84, - "community_name": "Role & Core Objective", - "norm_label": "\u2605 review mode (called during review phase)" - }, - { - "label": "Role & Core Objective", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L1", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_role_core_objective", - "community": 84, - "community_name": "Role & Core Objective", - "norm_label": "role & core objective" - }, - { - "label": "Strict Input Specifications (What files to read)", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L97", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_strict_input_specifications_what_files_to_read", - "community": 84, - "community_name": "Role & Core Objective", - "norm_label": "strict input specifications (what files to read)" - }, - { - "label": "What You DO NOT Review", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L23", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_what_you_do_not_review", - "community": 84, - "community_name": "Role & Core Objective", - "norm_label": "what you do not review" - }, - { - "label": "What You Look For (Security Expert Eyes Only)", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L26", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_what_you_look_for_security_expert_eyes_only", - "community": 84, - "community_name": "Role & Core Objective", - "norm_label": "what you look for (security expert eyes only)" - }, - { - "label": "Your Domain \u2014 What You Review (ONLY these areas)", - "file_type": "document", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L11", - "_origin": "ast", - "id": "ai_agency_agents_09_devops_security_your_domain_what_you_review_only_these_areas", - "community": 84, - "community_name": "Role & Core Objective", - "norm_label": "your domain \u2014 what you review (only these areas)" - }, - { - "label": "eslint-config-prettier", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L64", - "_origin": "ast", - "id": "backend_package_devdependencies_eslint_config_prettier", - "community": 85, - "community_name": "eslint-config-prettier", - "norm_label": "eslint-config-prettier" - }, - { - "label": "eslint-config-prettier", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L64", - "_origin": "ast", - "id": "eslint_config_prettier", - "community": 85, - "community_name": "eslint-config-prettier", - "norm_label": "eslint-config-prettier" - }, - { - "label": "payment-gateway.interface.ts", - "file_type": "code", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_payment_interfaces_payment_gateway_interface", - "community": 86, - "community_name": "zibal.service.ts", - "norm_label": "payment-gateway.interface.ts" - }, - { - "label": "zibal.service.ts", - "file_type": "code", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_payment_zibal_service", - "community": 86, - "community_name": "zibal.service.ts", - "norm_label": "zibal.service.ts" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L11", - "_origin": "ast", - "id": "frontend_application_package_dependencies", - "community": 87, - "community_name": "dependencies", - "norm_label": "dependencies" - }, - { - "label": "axios", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_application_package_dependencies_axios", - "community": 87, - "community_name": "dependencies", - "norm_label": "axios" - }, - { - "label": "lucide-react", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L13", - "_origin": "ast", - "id": "frontend_application_package_dependencies_lucide_react", - "community": 87, - "community_name": "dependencies", - "norm_label": "lucide-react" - }, - { - "label": "motion", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_application_package_dependencies_motion", - "community": 87, - "community_name": "dependencies", - "norm_label": "motion" - }, - { - "label": "next", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L15", - "_origin": "ast", - "id": "frontend_application_package_dependencies_next", - "community": 87, - "community_name": "dependencies", - "norm_label": "next" - }, - { - "label": "react", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L16", - "_origin": "ast", - "id": "frontend_application_package_dependencies_react", - "community": 87, - "community_name": "dependencies", - "norm_label": "react" - }, - { - "label": "react-dom", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_application_package_dependencies_react_dom", - "community": 87, - "community_name": "dependencies", - "norm_label": "react-dom" - }, - { - "label": "sonner", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L18", - "_origin": "ast", - "id": "frontend_application_package_dependencies_sonner", - "community": 87, - "community_name": "dependencies", - "norm_label": "sonner" - }, - { - "label": "zustand", - "file_type": "code", - "source_file": "frontend/application/package.json", - "source_location": "L19", - "_origin": "ast", - "id": "frontend_application_package_dependencies_zustand", - "community": 87, - "community_name": "dependencies", - "norm_label": "zustand" - }, - { - "label": "axios", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_application_package_json_axios", - "community": 87, - "community_name": "dependencies", - "norm_label": "axios" - }, - { - "label": "lucide-react", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L13", - "_origin": "ast", - "id": "frontend_application_package_json_lucide_react", - "community": 87, - "community_name": "dependencies", - "norm_label": "lucide-react" - }, - { - "label": "react", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L16", - "_origin": "ast", - "id": "frontend_application_package_json_react", - "community": 87, - "community_name": "dependencies", - "norm_label": "react" - }, - { - "label": "react-dom", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L17", - "_origin": "ast", - "id": "frontend_application_package_json_react_dom", - "community": 87, - "community_name": "dependencies", - "norm_label": "react-dom" - }, - { - "label": "zustand", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L19", - "_origin": "ast", - "id": "frontend_application_package_json_zustand", - "community": 87, - "community_name": "dependencies", - "norm_label": "zustand" - }, - { - "label": "motion", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L14", - "_origin": "ast", - "id": "motion", - "community": 87, - "community_name": "dependencies", - "norm_label": "motion" - }, - { - "label": "next", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L15", - "_origin": "ast", - "id": "next", - "community": 87, - "community_name": "dependencies", - "norm_label": "next" - }, - { - "label": "sonner", - "file_type": "concept", - "source_file": "frontend/application/package.json", - "source_location": "L18", - "_origin": "ast", - "id": "sonner", - "community": 87, - "community_name": "dependencies", - "norm_label": "sonner" - }, - { - "label": "ClientLayout.tsx", - "file_type": "code", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_clientlayout", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "clientlayout.tsx" - }, - { - "label": "AuthModal", - "file_type": "code", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L13", - "_origin": "ast", - "id": "frontend_application_app_clientlayout_authmodal", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "authmodal" - }, - { - "label": "B2BPortal", - "file_type": "code", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_application_app_clientlayout_b2bportal", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "b2bportal" - }, - { - "label": "CartDrawer", - "file_type": "code", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L11", - "_origin": "ast", - "id": "frontend_application_app_clientlayout_cartdrawer", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "cartdrawer" - }, - { - "label": "LoginModal", - "file_type": "code", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_application_app_clientlayout_loginmodal", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "loginmodal" - }, - { - "label": "AuthModal.tsx", - "file_type": "code", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_authmodal", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "authmodal.tsx" - }, - { - "label": "BrandLogo.tsx", - "file_type": "code", - "source_file": "frontend/application/components/BrandLogo.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_brandlogo", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "brandlogo.tsx" - }, - { - "label": "CartDrawer.tsx", - "file_type": "code", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_cartdrawer", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "cartdrawer.tsx" - }, - { - "label": "Footer.tsx", - "file_type": "code", - "source_file": "frontend/application/components/Footer.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_footer", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "footer.tsx" - }, - { - "label": "Header.tsx", - "file_type": "code", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_header", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "header.tsx" - }, - { - "label": "MENU_ICONS", - "file_type": "code", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L19", - "_origin": "ast", - "id": "frontend_application_components_header_menu_icons", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "menu_icons" - }, - { - "label": "MaintenancePage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/MaintenancePage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_maintenancepage", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "maintenancepage.tsx" - }, - { - "label": "NetworkBanner.tsx", - "file_type": "code", - "source_file": "frontend/application/components/NetworkBanner.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_networkbanner", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "networkbanner.tsx" - }, - { - "label": "CartDrawer.test.tsx", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_tests_cartdrawer_test", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "cartdrawer.test.tsx" - }, - { - "label": "mockProduct", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", - "source_location": "L19", - "_origin": "ast", - "id": "frontend_application_components_tests_cartdrawer_test_mockproduct", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "mockproduct" - }, - { - "label": "Footer.test.tsx", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/Footer.test.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_tests_footer_test", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "footer.test.tsx" - }, - { - "label": "TickerBanner.tsx", - "file_type": "code", - "source_file": "frontend/application/components/TickerBanner.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_tickerbanner", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "tickerbanner.tsx" - }, - { - "label": "useNetworkStatus.ts", - "file_type": "code", - "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_hooks_usenetworkstatus", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "usenetworkstatus.ts" - }, - { - "label": "useSettingsStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L22", - "_origin": "ast", - "id": "frontend_application_lib_store_settingsstore_usesettingsstore", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "usesettingsstore" - }, - { - "label": "uiStore.ts", - "file_type": "code", - "source_file": "frontend/application/lib/store/uiStore.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_store_uistore", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "uistore.ts" - }, - { - "label": "useUIStore", - "file_type": "code", - "source_file": "frontend/application/lib/store/uiStore.ts", - "source_location": "L14", - "_origin": "ast", - "id": "frontend_application_lib_store_uistore_useuistore", - "community": 88, - "community_name": "useSettingsStore", - "norm_label": "useuistore" - }, - { - "label": "seed.ts", - "file_type": "code", - "source_file": "backend/prisma/seed.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_prisma_seed", - "community": 89, - "community_name": "seed-products.ts", - "norm_label": "seed.ts" - }, - { - "label": "seed-home.ts", - "file_type": "code", - "source_file": "backend/prisma/seed-home.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_prisma_seed_home", - "community": 89, - "community_name": "seed-products.ts", - "norm_label": "seed-home.ts" - }, - { - "label": "prisma", - "file_type": "code", - "source_file": "backend/prisma/seed-home.ts", - "source_location": "L3", - "_origin": "ast", - "id": "backend_prisma_seed_home_prisma", - "community": 89, - "community_name": "seed-products.ts", - "norm_label": "prisma" - }, - { - "label": "prisma", - "file_type": "code", - "source_file": "backend/prisma/seed.ts", - "source_location": "L9", - "_origin": "ast", - "id": "backend_prisma_seed_prisma", - "community": 89, - "community_name": "seed-products.ts", - "norm_label": "prisma" - }, - { - "label": "seed-products.ts", - "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_prisma_seed_products", - "community": 89, - "community_name": "seed-products.ts", - "norm_label": "seed-products.ts" - }, - { - "label": "prisma", - "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L5", - "_origin": "ast", - "id": "backend_prisma_seed_products_prisma", - "community": 89, - "community_name": "seed-products.ts", - "norm_label": "prisma" - }, - { - "label": "PRODUCT_SYMPTOMS_MAP", - "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L148", - "_origin": "ast", - "id": "backend_prisma_seed_products_product_symptoms_map", - "community": 89, - "community_name": "seed-products.ts", - "norm_label": "product_symptoms_map" - }, - { - "label": "PRODUCT_TAGLINES_MAP", - "file_type": "code", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L208", - "_origin": "ast", - "id": "backend_prisma_seed_products_product_taglines_map", - "community": 89, - "community_name": "seed-products.ts", - "norm_label": "product_taglines_map" - }, - { - "label": "devDependencies", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L47", - "_origin": "ast", - "id": "backend_package_devdependencies", - "community": 9, - "community_name": "devDependencies", - "norm_label": "devdependencies" - }, - { - "label": "ts-jest", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L72", - "_origin": "ast", - "id": "backend_package_devdependencies_ts_jest", - "community": 9, - "community_name": "devDependencies", - "norm_label": "ts-jest" - }, - { - "label": "@types/bcryptjs", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L54", - "_origin": "ast", - "id": "backend_package_devdependencies_types_bcryptjs", - "community": 9, - "community_name": "devDependencies", - "norm_label": "@types/bcryptjs" - }, - { - "label": "@types/node", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L60", - "_origin": "ast", - "id": "backend_package_devdependencies_types_node", - "community": 9, - "community_name": "devDependencies", - "norm_label": "@types/node" - }, - { - "label": "typescript", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L76", - "_origin": "ast", - "id": "backend_package_devdependencies_typescript", - "community": 9, - "community_name": "devDependencies", - "norm_label": "typescript" - }, - { - "label": "@types/node", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L60", - "_origin": "ast", - "id": "backend_package_json_types_node", - "community": 9, - "community_name": "devDependencies", - "norm_label": "@types/node" - }, - { - "label": "typescript", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L76", - "_origin": "ast", - "id": "backend_package_json_typescript", - "community": 9, - "community_name": "devDependencies", - "norm_label": "typescript" - }, - { - "label": "ts-jest", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L72", - "_origin": "ast", - "id": "ts_jest", - "community": 9, - "community_name": "devDependencies", - "norm_label": "ts-jest" - }, - { - "label": "@types/bcryptjs", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L54", - "_origin": "ast", - "id": "types_bcryptjs", - "community": 9, - "community_name": "devDependencies", - "norm_label": "@types/bcryptjs" - }, - { - "label": "HomeClient.tsx", - "file_type": "code", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_homeclient", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "homeclient.tsx" - }, - { - "label": "ArchivePage.tsx", - "file_type": "code", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_archivepage", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "archivepage.tsx" - }, - { - "label": "CATEGORY_MAP", - "file_type": "code", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L43", - "_origin": "ast", - "id": "frontend_application_components_archivepage_category_map", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "category_map" - }, - { - "label": "ICON_MAP", - "file_type": "code", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L34", - "_origin": "ast", - "id": "frontend_application_components_archivepage_icon_map", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "icon_map" - }, - { - "label": "BannerPlacement.tsx", - "file_type": "code", - "source_file": "frontend/application/components/BannerPlacement.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_bannerplacement", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "bannerplacement.tsx" - }, - { - "label": "Hero.tsx", - "file_type": "code", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_hero", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "hero.tsx" - }, - { - "label": "Hero.test.tsx", - "file_type": "code", - "source_file": "frontend/application/components/__tests__/Hero.test.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_components_tests_hero_test", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "hero.test.tsx" - }, - { - "label": "types.ts", - "file_type": "code", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_lib_types", - "community": 90, - "community_name": "HomeClient.tsx", - "norm_label": "types.ts" - }, - { - "label": "02-audit-plan.md", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_02_audit_plan", - "community": 91, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "02-audit-plan.md" - }, - { - "label": "10. Documentation Engineer", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L73", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_10_documentation_engineer", - "community": 91, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "10. documentation engineer" - }, - { - "label": "1. Lead Architect / Orchestrator", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L28", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_1_lead_architect_orchestrator", - "community": 91, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "1. lead architect / orchestrator" - }, - { - "label": "2. React / Vite Storefront Auditor", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L33", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_2_react_vite_storefront_auditor", - "community": 91, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "2. react / vite storefront auditor" - }, - { - "label": "3. NestJS Backend Auditor", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L38", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_3_nestjs_backend_auditor", - "community": 91, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "3. nestjs backend auditor" - }, - { - "label": "4. Admin Features Auditor", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L43", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_4_admin_features_auditor", - "community": 91, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "4. admin features auditor" - }, - { - "label": "5. Database & Data Integrity Auditor", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L48", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_5_database_data_integrity_auditor", - "community": 91, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "5. database & data integrity auditor" - }, - { - "label": "6. Security Auditor", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L53", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_6_security_auditor", - "community": 91, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "6. security auditor" - }, - { - "label": "7. TypeScript & Code Quality Auditor", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L58", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_7_typescript_code_quality_auditor", - "community": 91, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "7. typescript & code quality auditor" - }, - { - "label": "8. Testing & Reliability Auditor", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L63", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_8_testing_reliability_auditor", - "community": 91, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "8. testing & reliability auditor" - }, - { - "label": "9. DevOps & CI/CD Auditor", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L68", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_9_devops_ci_cd_auditor", - "community": 91, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "9. devops & ci/cd auditor" - }, - { - "label": "Audit Plan & Subagent Roles", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_audit_plan_subagent_roles", - "community": 91, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "audit plan & subagent roles" - }, - { - "label": "Mandatory Global Audit Exclusions", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L10", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_mandatory_global_audit_exclusions", - "community": 91, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "mandatory global audit exclusions" - }, - { - "label": "Reconciled Audit Roles & Assignments", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L26", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "community": 91, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "reconciled audit roles & assignments" - }, - { - "label": "Strategy for Deduplication & Consolidation", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L80", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_strategy_for_deduplication_consolidation", - "community": 91, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "strategy for deduplication & consolidation" - }, - { - "label": "Subagent Execution Mode", - "file_type": "document", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L3", - "_origin": "ast", - "id": "docs_audit_02_audit_plan_subagent_execution_mode", - "community": 91, - "community_name": "Reconciled Audit Roles & Assignments", - "norm_label": "subagent execution mode" - }, - { - "label": "ApiProperty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_apiproperty", - "community": 92, - "community_name": "OrdersService", - "norm_label": "apiproperty" - }, - { - "label": "ApiPropertyOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional", - "community": 92, - "community_name": "OrdersService", - "norm_label": "apipropertyoptional" - }, - { - "label": "IsArray", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_isarray", - "community": 92, - "community_name": "OrdersService", - "norm_label": "isarray" - }, - { - "label": "IsNotEmpty", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_isnotempty", - "community": 92, - "community_name": "OrdersService", - "norm_label": "isnotempty" - }, - { - "label": "IsNumber", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_isnumber", - "community": 92, - "community_name": "OrdersService", - "norm_label": "isnumber" - }, - { - "label": "IsOptional", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_isoptional", - "community": 92, - "community_name": "OrdersService", - "norm_label": "isoptional" - }, - { - "label": "IsString", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_isstring", - "community": 92, - "community_name": "OrdersService", - "norm_label": "isstring" - }, - { - "label": "Type", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_dto_create_order_dto_ts_type", - "community": 92, - "community_name": "OrdersService", - "norm_label": "type" - }, - { - "label": "ApiBadRequestResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_apibadrequestresponse", - "community": 92, - "community_name": "OrdersService", - "norm_label": "apibadrequestresponse" - }, - { - "label": "ApiBearerAuth", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_apibearerauth", - "community": 92, - "community_name": "OrdersService", - "norm_label": "apibearerauth" - }, - { - "label": "ApiCreatedResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_apicreatedresponse", - "community": 92, - "community_name": "OrdersService", - "norm_label": "apicreatedresponse" - }, - { - "label": "ApiNotFoundResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_apinotfoundresponse", - "community": 92, - "community_name": "OrdersService", - "norm_label": "apinotfoundresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_apiokresponse", - "community": 92, - "community_name": "OrdersService", - "norm_label": "apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_apioperation", - "community": 92, - "community_name": "OrdersService", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_apitags", - "community": 92, - "community_name": "OrdersService", - "norm_label": "apitags" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_body", - "community": 92, - "community_name": "OrdersService", - "norm_label": "body" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_controller", - "community": 92, - "community_name": "OrdersService", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_get", - "community": 92, - "community_name": "OrdersService", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_param", - "community": 92, - "community_name": "OrdersService", - "norm_label": "param" - }, - { - "label": "Post", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_post", - "community": 92, - "community_name": "OrdersService", - "norm_label": "post" - }, - { - "label": "Query", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_query", - "community": 92, - "community_name": "OrdersService", - "norm_label": "query" - }, - { - "label": "Req", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_req", - "community": 92, - "community_name": "OrdersService", - "norm_label": "req" - }, - { - "label": "UseGuards", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_controller_ts_useguards", - "community": 92, - "community_name": "OrdersService", - "norm_label": "useguards" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_orders_orders_service_ts_injectable", - "community": 92, - "community_name": "OrdersService", - "norm_label": "injectable" - }, - { - "label": "ValidateNested", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "validatenested", - "community": 92, - "community_name": "OrdersService", - "norm_label": "validatenested" - }, - { - "label": "@nestjs/schematics", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L51", - "_origin": "ast", - "id": "backend_package_devdependencies_nestjs_schematics", - "community": 93, - "community_name": "@nestjs/schematics", - "norm_label": "@nestjs/schematics" - }, - { - "label": "@nestjs/schematics", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L51", - "_origin": "ast", - "id": "nestjs_schematics", - "community": 93, - "community_name": "@nestjs/schematics", - "norm_label": "@nestjs/schematics" - }, - { - "label": "phase3.1-backlog-review.md", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review", - "community": 94, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "phase3.1-backlog-review.md" - }, - { - "label": "10. Dependency & Wave Adjustments", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L102", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_10_dependency_wave_adjustments", - "community": 94, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "10. dependency & wave adjustments" - }, - { - "label": "11. Acceptance Criteria Refinements", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L114", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_11_acceptance_criteria_refinements", - "community": 94, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "11. acceptance criteria refinements" - }, - { - "label": "12. Business and Product Decision Classification", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L124", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_12_business_and_product_decision_classification", - "community": 94, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "12. business and product decision classification" - }, - { - "label": "13. Final Recommended Backlog Summary", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L134", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_13_final_recommended_backlog_summary", - "community": 94, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "13. final recommended backlog summary" - }, - { - "label": "1. Executive Assessment", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L14", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_1_executive_assessment", - "community": 94, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "1. executive assessment" - }, - { - "label": "2. Findings That Require No Change", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L26", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_2_findings_that_require_no_change", - "community": 94, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "2. findings that require no change" - }, - { - "label": "3. Findings Requiring Task Refinements", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L41", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_3_findings_requiring_task_refinements", - "community": 94, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "3. findings requiring task refinements" - }, - { - "label": "4. Tasks Requiring Splitting", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L50", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_4_tasks_requiring_splitting", - "community": 94, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "4. tasks requiring splitting" - }, - { - "label": "5. Tasks Requiring Merging", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L56", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_5_tasks_requiring_merging", - "community": 94, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "5. tasks requiring merging" - }, - { - "label": "6. Unsupported Assumptions Identified", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L62", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_6_unsupported_assumptions_identified", - "community": 94, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "6. unsupported assumptions identified" - }, - { - "label": "7. Scope Creep Identified and Removed", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L71", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_7_scope_creep_identified_and_removed", - "community": 94, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "7. scope creep identified and removed" - }, - { - "label": "8. Security Deep-Dive Review", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L78", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_8_security_deep_dive_review", - "community": 94, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "8. security deep-dive review" - }, - { - "label": "9. Architecture Review", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L92", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_9_architecture_review", - "community": 94, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "9. architecture review" - }, - { - "label": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "file_type": "document", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L1", - "_origin": "ast", - "id": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "community": 94, - "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", - "norm_label": "phase 3.1 \u2014 human review preparation and master backlog critique" - }, - { - "label": "blog/[slug]/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_blog_slug_page", - "community": 95, - "community_name": "blog/[slug]/page.tsx", - "norm_label": "blog/[slug]/page.tsx" - }, - { - "label": "revalidate", - "file_type": "code", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L51", - "_origin": "ast", - "id": "frontend_application_app_blog_slug_page_revalidate", - "community": 95, - "community_name": "blog/[slug]/page.tsx", - "norm_label": "revalidate" - }, - { - "label": "shop/[slug]/page.tsx", - "file_type": "code", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L1", - "_origin": "ast", - "id": "frontend_application_app_shop_slug_page", - "community": 95, - "community_name": "blog/[slug]/page.tsx", - "norm_label": "shop/[slug]/page.tsx" - }, - { - "label": "revalidate", - "file_type": "code", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L7", - "_origin": "ast", - "id": "frontend_application_app_shop_slug_page_revalidate", - "community": 95, - "community_name": "blog/[slug]/page.tsx", - "norm_label": "revalidate" + "community": 3, + "community_name": "ProductService", + "norm_label": "blogpage.tsx", + "id": "frontend_application_components_blogpage" }, { "label": "BlogPostClient.tsx", @@ -44927,560 +35782,186 @@ "source_file": "frontend/application/components/BlogPostClient.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_components_blogpostclient", "community": 95, "community_name": "blog/[slug]/page.tsx", - "norm_label": "blogpostclient.tsx" + "norm_label": "blogpostclient.tsx", + "id": "frontend_application_components_blogpostclient" }, { - "label": "application/tsconfig.json", + "label": "BlogPreviewSection.tsx", "file_type": "code", - "source_file": "frontend/application/tsconfig.json", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", "source_location": "L1", "_origin": "ast", - "id": "frontend_application_tsconfig", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "application/tsconfig.json" + "community": 4, + "community_name": "utils.ts", + "norm_label": "blogpreviewsection.tsx", + "id": "frontend_application_components_blogpreviewsection" }, { - "label": "compilerOptions", + "label": "ProductDetailModal.tsx", "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L2", + "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", + "source_location": "L1", "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "compileroptions" + "community": 3, + "community_name": "ProductService", + "norm_label": "productdetailmodal.tsx", + "id": "frontend_application_components_catalog_productdetailmodal" }, { - "label": "allowJs", + "label": "OrderDetailsModal.tsx", "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L5", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L1", "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_allowjs", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "allowjs" + "community": 4, + "community_name": "utils.ts", + "norm_label": "orderdetailsmodal.tsx", + "id": "frontend_application_components_orderdetailsmodal" }, { - "label": "esModuleInterop", + "label": "PodcastPlayerModal.tsx", "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L9", + "source_file": "frontend/application/components/PodcastPlayerModal.tsx", + "source_location": "L1", "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_esmoduleinterop", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "esmoduleinterop" + "community": 4, + "community_name": "utils.ts", + "norm_label": "podcastplayermodal.tsx", + "id": "frontend_application_components_podcastplayermodal" }, { - "label": "incremental", + "label": "PLAYBACK_RATES", "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L15", + "source_file": "frontend/application/components/PodcastPlayerModal.tsx", + "source_location": "L34", "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_incremental", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "incremental" + "community": 4, + "community_name": "utils.ts", + "norm_label": "playback_rates", + "id": "frontend_application_components_podcastplayermodal_playback_rates" }, { - "label": "isolatedModules", + "label": "VideoModalPlayer", "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L13", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L73", "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_isolatedmodules", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "isolatedmodules" + "community": 4, + "community_name": "utils.ts", + "norm_label": "videomodalplayer", + "id": "frontend_application_components_productpage_videomodalplayer" }, { - "label": "jsx", + "label": "SafeImage.tsx", "file_type": "code", - "source_file": "frontend/application/tsconfig.json", + "source_file": "frontend/application/components/SafeImage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "safeimage.tsx", + "id": "frontend_application_components_safeimage" + }, + { + "label": "TestimonialsSection.tsx", + "file_type": "code", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "testimonialssection.tsx", + "id": "frontend_application_components_testimonialssection" + }, + { + "label": "VetGallery.tsx", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "vetgallery.tsx", + "id": "frontend_application_components_vetgallery" + }, + { + "label": "FALLBACK_VIDEOS", + "file_type": "code", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L28", + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "fallback_videos", + "id": "frontend_application_components_vetgallery_fallback_videos" + }, + { + "label": "VideoModalPlayer.tsx", + "file_type": "code", + "source_file": "frontend/application/components/VideoModalPlayer.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "videomodalplayer.tsx", + "id": "frontend_application_components_videomodalplayer" + }, + { + "label": "PLAYBACK_RATES", + "file_type": "code", + "source_file": "frontend/application/components/VideoModalPlayer.tsx", + "source_location": "L37", + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "playback_rates", + "id": "frontend_application_components_videomodalplayer_playback_rates" + }, + { + "label": "VideosPage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 4, + "community_name": "utils.ts", + "norm_label": "videospage.tsx", + "id": "frontend_application_components_videospage" + }, + { + "label": "BASE_DOMAIN", + "file_type": "code", + "source_file": "frontend/application/lib/services/api.ts", "source_location": "L14", "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_jsx", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "jsx" + "community": 4, + "community_name": "utils.ts", + "norm_label": "base_domain", + "id": "frontend_application_lib_services_api_base_domain" }, { - "label": "lib", + "label": "videoService.ts", "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L4", + "source_file": "frontend/application/lib/services/videoService.ts", + "source_location": "L1", "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_lib", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "lib" + "community": 4, + "community_name": "utils.ts", + "norm_label": "videoservice.ts", + "id": "frontend_application_lib_services_videoservice" }, { - "label": "module", + "label": "videoService", "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L10", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_module", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "module" - }, - { - "label": "moduleResolution", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L11", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_moduleresolution", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "moduleresolution" - }, - { - "label": "noEmit", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L8", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_noemit", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "noemit" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L21", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_paths", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "paths" - }, - { - "label": "plugins", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L16", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_plugins", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "plugins" - }, - { - "label": "resolveJsonModule", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L12", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_resolvejsonmodule", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "resolvejsonmodule" - }, - { - "label": "skipLibCheck", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L6", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_skiplibcheck", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "skiplibcheck" - }, - { - "label": "strict", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L7", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_strict", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "strict" - }, - { - "label": "target", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L3", - "_origin": "ast", - "id": "frontend_application_tsconfig_compileroptions_target", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "target" - }, - { - "label": "exclude", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_application_tsconfig_exclude", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "exclude" - }, - { - "label": "include", - "file_type": "code", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "id": "frontend_application_tsconfig_include", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "include" - }, - { - "label": "dom", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_application_tsconfig_json_ref_dom", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "dom" - }, - { - "label": "dom.iterable", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L4", - "_origin": "ast", - "id": "frontend_application_tsconfig_json_ref_dom_iterable", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "dom.iterable" - }, - { - "label": "node_modules", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_application_tsconfig_json_ref_node_modules", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "node_modules" - }, - { - "label": "prisma", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "_origin": "ast", - "id": "frontend_application_tsconfig_json_ref_prisma", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "prisma" - }, - { - "label": "**/*.ts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "id": "frontend_application_tsconfig_json_ref_ts", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "**/*.ts" - }, - { - "label": "esnext", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L4", - "_origin": "ast", - "id": "ref_esnext", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "esnext" - }, - { - "label": "**/*.mts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "id": "ref_mts", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "**/*.mts" - }, - { - "label": ".next/dev/types/**/*.ts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "id": "ref_next_dev_types_ts", - "community": 96, - "community_name": "compilerOptions", - "norm_label": ".next/dev/types/**/*.ts" - }, - { - "label": "next-env.d.ts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "id": "ref_next_env_d_ts", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "next-env.d.ts" - }, - { - "label": ".next/types/**/*.ts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "id": "ref_next_types_ts", - "community": 96, - "community_name": "compilerOptions", - "norm_label": ".next/types/**/*.ts" - }, - { - "label": "**/__tests__/**", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "_origin": "ast", - "id": "ref_tests", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "**/__tests__/**" - }, - { - "label": "**/*.tsx", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "_origin": "ast", - "id": "ref_tsx", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "**/*.tsx" - }, - { - "label": "vitest.config.ts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "_origin": "ast", - "id": "ref_vitest_config_ts", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "vitest.config.ts" - }, - { - "label": "vitest.setup.ts", - "file_type": "concept", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "_origin": "ast", - "id": "ref_vitest_setup_ts", - "community": 96, - "community_name": "compilerOptions", - "norm_label": "vitest.setup.ts" - }, - { - "label": "prettier", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L68", - "_origin": "ast", - "id": "backend_package_devdependencies_prettier", - "community": 97, - "community_name": "prettier", - "norm_label": "prettier" - }, - { - "label": "prettier", - "file_type": "concept", - "source_file": "backend/package.json", - "source_location": "L68", - "_origin": "ast", - "id": "prettier", - "community": 97, - "community_name": "prettier", - "norm_label": "prettier" - }, - { - "label": "scripts", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L8", - "_origin": "ast", - "id": "backend_package_scripts", - "community": 98, - "community_name": "scripts", - "norm_label": "scripts" - }, - { - "label": "build", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L9", - "_origin": "ast", - "id": "backend_package_scripts_build", - "community": 98, - "community_name": "scripts", - "norm_label": "build" - }, - { - "label": "build:nest", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L10", - "_origin": "ast", - "id": "backend_package_scripts_build_nest", - "community": 98, - "community_name": "scripts", - "norm_label": "build:nest" - }, - { - "label": "docs:generate", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L21", - "_origin": "ast", - "id": "backend_package_scripts_docs_generate", - "community": 98, - "community_name": "scripts", - "norm_label": "docs:generate" - }, - { - "label": "lint", - "file_type": "code", - "source_file": "backend/package.json", + "source_file": "frontend/application/lib/services/videoService.ts", "source_location": "L15", "_origin": "ast", - "id": "backend_package_scripts_lint", - "community": 98, - "community_name": "scripts", - "norm_label": "lint" - }, - { - "label": "seo:backfill", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L22", - "_origin": "ast", - "id": "backend_package_scripts_seo_backfill", - "community": 98, - "community_name": "scripts", - "norm_label": "seo:backfill" - }, - { - "label": "start", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L11", - "_origin": "ast", - "id": "backend_package_scripts_start", - "community": 98, - "community_name": "scripts", - "norm_label": "start" - }, - { - "label": "start:debug", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L13", - "_origin": "ast", - "id": "backend_package_scripts_start_debug", - "community": 98, - "community_name": "scripts", - "norm_label": "start:debug" - }, - { - "label": "start:dev", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L12", - "_origin": "ast", - "id": "backend_package_scripts_start_dev", - "community": 98, - "community_name": "scripts", - "norm_label": "start:dev" - }, - { - "label": "start:prod", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L14", - "_origin": "ast", - "id": "backend_package_scripts_start_prod", - "community": 98, - "community_name": "scripts", - "norm_label": "start:prod" - }, - { - "label": "test", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L16", - "_origin": "ast", - "id": "backend_package_scripts_test", - "community": 98, - "community_name": "scripts", - "norm_label": "test" - }, - { - "label": "test:cov", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L18", - "_origin": "ast", - "id": "backend_package_scripts_test_cov", - "community": 98, - "community_name": "scripts", - "norm_label": "test:cov" - }, - { - "label": "test:debug", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L19", - "_origin": "ast", - "id": "backend_package_scripts_test_debug", - "community": 98, - "community_name": "scripts", - "norm_label": "test:debug" - }, - { - "label": "test:e2e", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L20", - "_origin": "ast", - "id": "backend_package_scripts_test_e2e", - "community": 98, - "community_name": "scripts", - "norm_label": "test:e2e" - }, - { - "label": "test:watch", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L17", - "_origin": "ast", - "id": "backend_package_scripts_test_watch", - "community": 98, - "community_name": "scripts", - "norm_label": "test:watch" + "community": 4, + "community_name": "utils.ts", + "norm_label": "videoservice", + "id": "frontend_application_lib_services_videoservice_videoservice" }, { "label": "ApiBearerAuth", @@ -45488,32 +35969,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_apibearerauth", - "community": 99, - "community_name": "BlogsController", - "norm_label": "apibearerauth" - }, - { - "label": "ApiNotFoundResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_apinotfoundresponse", - "community": 99, - "community_name": "BlogsController", - "norm_label": "apinotfoundresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_apiokresponse", - "community": 99, - "community_name": "BlogsController", - "norm_label": "apiokresponse" + "community": 40, + "community_name": "MediaController", + "norm_label": "apibearerauth", + "id": "backend_src_admin_media_controller_ts_apibearerauth" }, { "label": "ApiOperation", @@ -45521,10 +35980,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_apioperation", - "community": 99, - "community_name": "BlogsController", - "norm_label": "apioperation" + "community": 40, + "community_name": "MediaController", + "norm_label": "apioperation", + "id": "backend_src_admin_media_controller_ts_apioperation" }, { "label": "ApiTags", @@ -45532,10 +35991,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_apitags", - "community": 99, - "community_name": "BlogsController", - "norm_label": "apitags" + "community": 40, + "community_name": "MediaController", + "norm_label": "apitags", + "id": "backend_src_admin_media_controller_ts_apitags" }, { "label": "Body", @@ -45543,10 +36002,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_body", - "community": 99, - "community_name": "BlogsController", - "norm_label": "body" + "community": 40, + "community_name": "MediaController", + "norm_label": "body", + "id": "backend_src_admin_media_controller_ts_body" }, { "label": "Controller", @@ -45554,10 +36013,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_controller", - "community": 99, - "community_name": "BlogsController", - "norm_label": "controller" + "community": 40, + "community_name": "MediaController", + "norm_label": "controller", + "id": "backend_src_admin_media_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 40, + "community_name": "MediaController", + "norm_label": "delete", + "id": "backend_src_admin_media_controller_ts_delete" }, { "label": "Get", @@ -45565,10 +36035,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_get", - "community": 99, - "community_name": "BlogsController", - "norm_label": "get" + "community": 40, + "community_name": "MediaController", + "norm_label": "get", + "id": "backend_src_admin_media_controller_ts_get" }, { "label": "Param", @@ -45576,10 +36046,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_param", - "community": 99, - "community_name": "BlogsController", - "norm_label": "param" + "community": 40, + "community_name": "MediaController", + "norm_label": "param", + "id": "backend_src_admin_media_controller_ts_param" }, { "label": "Post", @@ -45587,32 +36057,32 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_post", - "community": 99, - "community_name": "BlogsController", - "norm_label": "post" + "community": 40, + "community_name": "MediaController", + "norm_label": "post", + "id": "backend_src_admin_media_controller_ts_post" }, { - "label": "Query", + "label": "Put", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_query", - "community": 99, - "community_name": "BlogsController", - "norm_label": "query" + "community": 40, + "community_name": "MediaController", + "norm_label": "put", + "id": "backend_src_admin_media_controller_ts_put" }, { - "label": "Request", + "label": "UploadedFile", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_request", - "community": 99, - "community_name": "BlogsController", - "norm_label": "request" + "community": 40, + "community_name": "MediaController", + "norm_label": "uploadedfile", + "id": "backend_src_admin_media_controller_ts_uploadedfile" }, { "label": "UseGuards", @@ -45620,32 +36090,360 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_blogs_blogs_controller_ts_useguards", - "community": 99, - "community_name": "BlogsController", - "norm_label": "useguards" + "community": 40, + "community_name": "MediaController", + "norm_label": "useguards", + "id": "backend_src_admin_media_controller_ts_useguards" }, { - "label": "home.controller.ts", - "file_type": "code", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_home_home_controller", - "community": 99, - "community_name": "BlogsController", - "norm_label": "home.controller.ts" - }, - { - "label": "ApiOkResponse", + "label": "UseInterceptors", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_home_home_controller_ts_apiokresponse", - "community": 99, - "community_name": "BlogsController", - "norm_label": "apiokresponse" + "community": 40, + "community_name": "MediaController", + "norm_label": "useinterceptors", + "id": "backend_src_admin_media_controller_ts_useinterceptors" + }, + { + "label": ".antigravity/workflows/graphify.md", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L1", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": ".antigravity/workflows/graphify.md", + "frontmatter": { + "name": "graphify", + "description": "Use for any question about a codebase, its architecture, file relationships, or project content \u2014 especially when graphify-out/ exists, where the question should be treated as a graphify query first. Turns any input (code, docs, papers, images, videos) into a persistent knowledge graph with god nodes, community detection, and query/path/explain tools." + }, + "node_kind": "page", + "id": "antigravity_workflows_graphify" + }, + { + "label": "For /graphify add and --watch", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L719", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "for /graphify add and --watch", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_for_graphify_add_and_watch" + }, + { + "label": "For /graphify query", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L707", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "for /graphify query", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_for_graphify_query" + }, + { + "label": "For the commit hook and native CLAUDE.md integration", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L725", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "for the commit hook and native claude.md integration", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_for_the_commit_hook_and_native_claude_md_integration" + }, + { + "label": "For --update and --cluster-only", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L701", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "for --update and --cluster-only", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_for_update_and_cluster_only" + }, + { + "label": "/graphify", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L6", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "/graphify", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_graphify" + }, + { + "label": "Honesty Rules", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L744", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "honesty rules", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_honesty_rules" + }, + { + "label": "Interpreter guard for subcommands", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L681", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "interpreter guard for subcommands", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_interpreter_guard_for_subcommands" + }, + { + "label": "Part A - Structural extraction for code files", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L192", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "part a - structural extraction for code files", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_part_a_structural_extraction_for_code_files" + }, + { + "label": "Part B - Semantic extraction (parallel subagents)", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L218", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "part b - semantic extraction (parallel subagents)", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_part_b_semantic_extraction_parallel_subagents" + }, + { + "label": "Part C - Merge AST + semantic into final extraction", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L381", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "part c - merge ast + semantic into final extraction", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_part_c_merge_ast_semantic_into_final_extraction" + }, + { + "label": "PowerShell 5.1: Vertical scrolling stops working", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L733", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "powershell 5.1: vertical scrolling stops working", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_powershell_5_1_vertical_scrolling_stops_working" + }, + { + "label": "Step 0 - GitHub repos and multi-path merge (only if a URL or several paths)", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L61", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 0 - github repos and multi-path merge (only if a url or several paths)", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths" + }, + { + "label": "Step 1 - Ensure graphify is installed", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L65", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 1 - ensure graphify is installed", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_step_1_ensure_graphify_is_installed" + }, + { + "label": "Step 2.5 - Video and audio (only if video files detected)", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L169", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 2.5 - video and audio (only if video files detected)", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_step_2_5_video_and_audio_only_if_video_files_detected" + }, + { + "label": "Step 2 - Detect files", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L129", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 2 - detect files", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_step_2_detect_files" + }, + { + "label": "Step 3 - Extract entities and relationships", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L173", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 3 - extract entities and relationships", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships" + }, + { + "label": "Step 4.5 - Graph health check (read-only integrity gate)", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L478", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 4.5 - graph health check (read-only integrity gate)", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_step_4_5_graph_health_check_read_only_integrity_gate" + }, + { + "label": "Step 4 - Build graph, cluster, analyze, generate outputs", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L415", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 4 - build graph, cluster, analyze, generate outputs", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_step_4_build_graph_cluster_analyze_generate_outputs" + }, + { + "label": "Step 5 - Label communities", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L504", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 5 - label communities", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_step_5_label_communities" + }, + { + "label": "Step 6 - Generate Obsidian vault (opt-in) + HTML", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L553", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 6 - generate obsidian vault (opt-in) + html", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_step_6_generate_obsidian_vault_opt_in_html" + }, + { + "label": "Step 9 - Save manifest, update cost tracker, clean up, and report", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L579", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 9 - save manifest, update cost tracker, clean up, and report", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_step_9_save_manifest_update_cost_tracker_clean_up_and_report" + }, + { + "label": "Steps 6b-8 - Wiki, Neo4j, FalkorDB, SVG, GraphML, MCP, benchmark (only on their flags)", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L573", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "steps 6b-8 - wiki, neo4j, falkordb, svg, graphml, mcp, benchmark (only on their flags)", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags" + }, + { + "label": "Troubleshooting", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L731", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "troubleshooting", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_troubleshooting" + }, + { + "label": "Usage", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L10", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "usage", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_usage" + }, + { + "label": "What graphify is for", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L45", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "what graphify is for", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_what_graphify_is_for" + }, + { + "label": "What You Must Do When Invoked", + "file_type": "document", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L49", + "_origin": "ast", + "community": 41, + "community_name": "What You Must Do When Invoked", + "norm_label": "what you must do when invoked", + "node_kind": "heading", + "id": "antigravity_workflows_graphify_what_you_must_do_when_invoked" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": "apibearerauth", + "id": "backend_src_admin_ssl_controller_ts_apibearerauth" }, { "label": "ApiOperation", @@ -45653,10 +36451,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_home_home_controller_ts_apioperation", - "community": 99, - "community_name": "BlogsController", - "norm_label": "apioperation" + "community": 42, + "community_name": "SslController", + "norm_label": "apioperation", + "id": "backend_src_admin_ssl_controller_ts_apioperation" }, { "label": "ApiTags", @@ -45664,10 +36462,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_home_home_controller_ts_apitags", - "community": 99, - "community_name": "BlogsController", - "norm_label": "apitags" + "community": 42, + "community_name": "SslController", + "norm_label": "apitags", + "id": "backend_src_admin_ssl_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": "body", + "id": "backend_src_admin_ssl_controller_ts_body" }, { "label": "Controller", @@ -45675,10 +36484,10 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_home_home_controller_ts_controller", - "community": 99, - "community_name": "BlogsController", - "norm_label": "controller" + "community": 42, + "community_name": "SslController", + "norm_label": "controller", + "id": "backend_src_admin_ssl_controller_ts_controller" }, { "label": "Get", @@ -45686,131 +36495,21 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_home_home_controller_ts_get", - "community": 99, - "community_name": "BlogsController", - "norm_label": "get" + "community": 42, + "community_name": "SslController", + "norm_label": "get", + "id": "backend_src_admin_ssl_controller_ts_get" }, { - "label": "home.module.ts", - "file_type": "code", - "source_file": "backend/src/home/home.module.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_home_home_module", - "community": 99, - "community_name": "BlogsController", - "norm_label": "home.module.ts" - }, - { - "label": "Module", + "label": "Post", "file_type": "code", "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_home_home_module_ts_module", - "community": 99, - "community_name": "BlogsController", - "norm_label": "module" - }, - { - "label": "home.service.ts", - "file_type": "code", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L1", - "_origin": "ast", - "id": "backend_src_home_home_service", - "community": 99, - "community_name": "BlogsController", - "norm_label": "home.service.ts" - }, - { - "label": "Injectable", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_home_home_service_ts_injectable", - "community": 99, - "community_name": "BlogsController", - "norm_label": "injectable" - }, - { - "label": "ApiNotFoundResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse", - "community": 99, - "community_name": "BlogsController", - "norm_label": "apinotfoundresponse" - }, - { - "label": "ApiOkResponse", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_apiokresponse", - "community": 99, - "community_name": "BlogsController", - "norm_label": "apiokresponse" - }, - { - "label": "ApiOperation", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_apioperation", - "community": 99, - "community_name": "BlogsController", - "norm_label": "apioperation" - }, - { - "label": "ApiTags", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_apitags", - "community": 99, - "community_name": "BlogsController", - "norm_label": "apitags" - }, - { - "label": "Controller", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_controller", - "community": 99, - "community_name": "BlogsController", - "norm_label": "controller" - }, - { - "label": "Get", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_get", - "community": 99, - "community_name": "BlogsController", - "norm_label": "get" - }, - { - "label": "Param", - "file_type": "code", - "source_file": "", - "source_location": "", - "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_param", - "community": 99, - "community_name": "BlogsController", - "norm_label": "param" + "community": 42, + "community_name": "SslController", + "norm_label": "post", + "id": "backend_src_admin_ssl_controller_ts_post" }, { "label": "Query", @@ -45818,10 +36517,11026 @@ "source_file": "", "source_location": "", "_origin": "ast", - "id": "backend_src_wiki_wiki_controller_ts_query", + "community": 42, + "community_name": "SslController", + "norm_label": "query", + "id": "backend_src_admin_ssl_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": "useguards", + "id": "backend_src_admin_ssl_controller_ts_useguards" + }, + { + "label": "UseInterceptors", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": "useinterceptors", + "id": "backend_src_admin_ssl_controller_ts_useinterceptors" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": "injectable", + "id": "backend_src_admin_ssl_service_ts_injectable" + }, + { + "label": "UploadedFiles", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 42, + "community_name": "SslController", + "norm_label": "uploadedfiles", + "id": "uploadedfiles" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": "apibearerauth", + "id": "backend_src_banners_banners_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": "apioperation", + "id": "backend_src_banners_banners_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": "apitags", + "id": "backend_src_banners_banners_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": "body", + "id": "backend_src_banners_banners_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": "controller", + "id": "backend_src_banners_banners_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": "delete", + "id": "backend_src_banners_banners_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": "get", + "id": "backend_src_banners_banners_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": "param", + "id": "backend_src_banners_banners_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": "patch", + "id": "backend_src_banners_banners_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": "post", + "id": "backend_src_banners_banners_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": "put", + "id": "backend_src_banners_banners_controller_ts_put" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": "useguards", + "id": "backend_src_banners_banners_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 43, + "community_name": "BannersService", + "norm_label": "injectable", + "id": "backend_src_banners_banners_service_ts_injectable" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": "apibearerauth", + "id": "backend_src_testimonials_testimonials_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": "apioperation", + "id": "backend_src_testimonials_testimonials_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": "apitags", + "id": "backend_src_testimonials_testimonials_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": "body", + "id": "backend_src_testimonials_testimonials_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": "controller", + "id": "backend_src_testimonials_testimonials_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": "delete", + "id": "backend_src_testimonials_testimonials_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": "get", + "id": "backend_src_testimonials_testimonials_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": "param", + "id": "backend_src_testimonials_testimonials_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": "patch", + "id": "backend_src_testimonials_testimonials_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": "post", + "id": "backend_src_testimonials_testimonials_controller_ts_post" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": "useguards", + "id": "backend_src_testimonials_testimonials_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 44, + "community_name": "TestimonialsService", + "norm_label": "injectable", + "id": "backend_src_testimonials_testimonials_service_ts_injectable" + }, + { + "label": "SKILL.md", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L1", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "skill.md", + "frontmatter": { + "name": "graphify", + "description": "Use for any question about a codebase, its architecture, file relationships, or project content \u2014 especially when graphify-out/ exists, where the question should be treated as a graphify query first. Turns any input (code, docs, papers, images, videos) into a persistent knowledge graph with god nodes, community detection, and query/path/explain tools." + }, + "node_kind": "page", + "id": "claude_skills_graphify_skill" + }, + { + "label": "For /graphify add and --watch", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L719", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "for /graphify add and --watch", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_for_graphify_add_and_watch" + }, + { + "label": "For /graphify query", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L707", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "for /graphify query", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_for_graphify_query" + }, + { + "label": "For the commit hook and native CLAUDE.md integration", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L725", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "for the commit hook and native claude.md integration", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_for_the_commit_hook_and_native_claude_md_integration" + }, + { + "label": "For --update and --cluster-only", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L701", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "for --update and --cluster-only", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_for_update_and_cluster_only" + }, + { + "label": "/graphify", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L6", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "/graphify", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_graphify" + }, + { + "label": "Honesty Rules", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L744", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "honesty rules", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_honesty_rules" + }, + { + "label": "Interpreter guard for subcommands", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L681", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "interpreter guard for subcommands", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_interpreter_guard_for_subcommands" + }, + { + "label": "Part A - Structural extraction for code files", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L192", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "part a - structural extraction for code files", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_part_a_structural_extraction_for_code_files" + }, + { + "label": "Part B - Semantic extraction (parallel subagents)", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L218", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "part b - semantic extraction (parallel subagents)", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_part_b_semantic_extraction_parallel_subagents" + }, + { + "label": "Part C - Merge AST + semantic into final extraction", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L381", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "part c - merge ast + semantic into final extraction", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_part_c_merge_ast_semantic_into_final_extraction" + }, + { + "label": "PowerShell 5.1: Vertical scrolling stops working", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L733", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "powershell 5.1: vertical scrolling stops working", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_powershell_5_1_vertical_scrolling_stops_working" + }, + { + "label": "Step 0 - GitHub repos and multi-path merge (only if a URL or several paths)", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L61", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 0 - github repos and multi-path merge (only if a url or several paths)", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths" + }, + { + "label": "Step 1 - Ensure graphify is installed", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L65", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 1 - ensure graphify is installed", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_step_1_ensure_graphify_is_installed" + }, + { + "label": "Step 2.5 - Video and audio (only if video files detected)", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L169", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 2.5 - video and audio (only if video files detected)", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_step_2_5_video_and_audio_only_if_video_files_detected" + }, + { + "label": "Step 2 - Detect files", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L129", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 2 - detect files", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_step_2_detect_files" + }, + { + "label": "Step 3 - Extract entities and relationships", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L173", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 3 - extract entities and relationships", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships" + }, + { + "label": "Step 4.5 - Graph health check (read-only integrity gate)", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L478", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 4.5 - graph health check (read-only integrity gate)", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_step_4_5_graph_health_check_read_only_integrity_gate" + }, + { + "label": "Step 4 - Build graph, cluster, analyze, generate outputs", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L415", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 4 - build graph, cluster, analyze, generate outputs", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_step_4_build_graph_cluster_analyze_generate_outputs" + }, + { + "label": "Step 5 - Label communities", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L504", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 5 - label communities", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_step_5_label_communities" + }, + { + "label": "Step 6 - Generate Obsidian vault (opt-in) + HTML", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L553", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 6 - generate obsidian vault (opt-in) + html", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_step_6_generate_obsidian_vault_opt_in_html" + }, + { + "label": "Step 9 - Save manifest, update cost tracker, clean up, and report", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L579", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "step 9 - save manifest, update cost tracker, clean up, and report", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_step_9_save_manifest_update_cost_tracker_clean_up_and_report" + }, + { + "label": "Steps 6b-8 - Wiki, Neo4j, FalkorDB, SVG, GraphML, MCP, benchmark (only on their flags)", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L573", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "steps 6b-8 - wiki, neo4j, falkordb, svg, graphml, mcp, benchmark (only on their flags)", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags" + }, + { + "label": "Troubleshooting", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L731", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "troubleshooting", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_troubleshooting" + }, + { + "label": "Usage", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L10", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "usage", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_usage" + }, + { + "label": "What graphify is for", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L45", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "what graphify is for", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_what_graphify_is_for" + }, + { + "label": "What You Must Do When Invoked", + "file_type": "document", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L49", + "_origin": "ast", + "community": 45, + "community_name": "What You Must Do When Invoked", + "norm_label": "what you must do when invoked", + "node_kind": "heading", + "id": "claude_skills_graphify_skill_what_you_must_do_when_invoked" + }, + { + "label": "home.controller.ts", + "file_type": "code", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 46, + "community_name": "HomeController", + "norm_label": "home.controller.ts", + "id": "backend_src_home_home_controller" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 46, + "community_name": "HomeController", + "norm_label": "apiokresponse", + "id": "backend_src_home_home_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 46, + "community_name": "HomeController", + "norm_label": "apioperation", + "id": "backend_src_home_home_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 46, + "community_name": "HomeController", + "norm_label": "apitags", + "id": "backend_src_home_home_controller_ts_apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 46, + "community_name": "HomeController", + "norm_label": "controller", + "id": "backend_src_home_home_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 46, + "community_name": "HomeController", + "norm_label": "get", + "id": "backend_src_home_home_controller_ts_get" + }, + { + "label": "home.module.ts", + "file_type": "code", + "source_file": "backend/src/home/home.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 46, + "community_name": "HomeController", + "norm_label": "home.module.ts", + "id": "backend_src_home_home_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 46, + "community_name": "HomeController", + "norm_label": "module", + "id": "backend_src_home_home_module_ts_module" + }, + { + "label": "home.service.ts", + "file_type": "code", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 46, + "community_name": "HomeController", + "norm_label": "home.service.ts", + "id": "backend_src_home_home_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 46, + "community_name": "HomeController", + "norm_label": "injectable", + "id": "backend_src_home_home_service_ts_injectable" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": "apibearerauth", + "id": "backend_src_ingredients_ingredients_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": "apioperation", + "id": "backend_src_ingredients_ingredients_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": "apitags", + "id": "backend_src_ingredients_ingredients_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": "body", + "id": "backend_src_ingredients_ingredients_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": "controller", + "id": "backend_src_ingredients_ingredients_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": "delete", + "id": "backend_src_ingredients_ingredients_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": "get", + "id": "backend_src_ingredients_ingredients_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": "param", + "id": "backend_src_ingredients_ingredients_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": "patch", + "id": "backend_src_ingredients_ingredients_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": "post", + "id": "backend_src_ingredients_ingredients_controller_ts_post" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": "useguards", + "id": "backend_src_ingredients_ingredients_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 47, + "community_name": "IngredientsService", + "norm_label": "injectable", + "id": "backend_src_ingredients_ingredients_service_ts_injectable" + }, + { + "label": "[id]/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "[id]/page.tsx", + "id": "frontend_application_app_checkout_success_id_page" + }, + { + "label": "CartDrawer", + "file_type": "code", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L11", + "_origin": "ast", + "community": 88, + "community_name": "toPersian", + "norm_label": "cartdrawer", + "id": "frontend_application_app_clientlayout_cartdrawer" + }, + { + "label": "CartDrawer.tsx", + "file_type": "code", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "cartdrawer.tsx", + "id": "frontend_application_components_cartdrawer" + }, + { + "label": "OrderSuccess.tsx", + "file_type": "code", + "source_file": "frontend/application/components/OrderSuccess.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "norm_label": "ordersuccess.tsx", + "id": "frontend_application_components_ordersuccess" + }, + { + "label": "OrderTracking.tsx", + "file_type": "code", + "source_file": "frontend/application/components/OrderTracking.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "ordertracking.tsx", + "id": "frontend_application_components_ordertracking" + }, + { + "label": "CartDrawer.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "cartdrawer.test.tsx", + "id": "frontend_application_components_tests_cartdrawer_test" + }, + { + "label": "mockProduct", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", + "source_location": "L19", + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "mockproduct", + "id": "frontend_application_components_tests_cartdrawer_test_mockproduct" + }, + { + "label": "Header.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/Header.test.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "header.test.tsx", + "id": "frontend_application_components_tests_header_test" + }, + { + "label": "orderService.ts", + "file_type": "code", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L1", + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "orderservice.ts", + "id": "frontend_application_lib_services_orderservice" + }, + { + "label": "cartStore.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L1", + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "cartstore.ts", + "id": "frontend_application_lib_store_cartstore" + }, + { + "label": "useCartStore", + "file_type": "code", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L54", + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "usecartstore", + "id": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "label": "cartStore.test.ts", + "file_type": "code", + "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", + "source_location": "L1", + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "cartstore.test.ts", + "id": "frontend_application_lib_store_tests_cartstore_test" + }, + { + "label": "mockProduct", + "file_type": "code", + "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", + "source_location": "L20", + "_origin": "ast", + "community": 22, + "community_name": "lib/services/api.ts", + "norm_label": "mockproduct", + "id": "frontend_application_lib_store_tests_cartstore_test_mockproduct" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L24", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "devdependencies", + "id": "frontend_admin_panel_package_devdependencies" + }, + { + "label": "autoprefixer", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L31", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "autoprefixer", + "id": "frontend_admin_panel_package_devdependencies_autoprefixer" + }, + { + "label": "eslint", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L32", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "eslint", + "id": "frontend_admin_panel_package_devdependencies_eslint" + }, + { + "label": "@eslint/js", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L25", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "@eslint/js", + "id": "frontend_admin_panel_package_devdependencies_eslint_js" + }, + { + "label": "globals", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L35", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "globals", + "id": "frontend_admin_panel_package_devdependencies_globals" + }, + { + "label": "postcss", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L36", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "postcss", + "id": "frontend_admin_panel_package_devdependencies_postcss" + }, + { + "label": "@types/node", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L27", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "@types/node", + "id": "frontend_admin_panel_package_devdependencies_types_node" + }, + { + "label": "@types/react", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L28", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "@types/react", + "id": "frontend_admin_panel_package_devdependencies_types_react" + }, + { + "label": "@types/react-dom", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L29", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "@types/react-dom", + "id": "frontend_admin_panel_package_devdependencies_types_react_dom" + }, + { + "label": "@vitejs/plugin-react", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L30", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "@vitejs/plugin-react", + "id": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react" + }, + { + "label": "autoprefixer", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L31", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "autoprefixer", + "id": "autoprefixer" + }, + { + "label": "eslint", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L32", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "eslint", + "id": "frontend_admin_panel_package_json_eslint" + }, + { + "label": "@eslint/js", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L25", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "@eslint/js", + "id": "frontend_admin_panel_package_json_eslint_js" + }, + { + "label": "globals", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L35", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "globals", + "id": "frontend_admin_panel_package_json_globals" + }, + { + "label": "@types/node", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L27", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "@types/node", + "id": "frontend_admin_panel_package_json_types_node" + }, + { + "label": "@types/react", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L28", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "@types/react", + "id": "frontend_admin_panel_package_json_types_react" + }, + { + "label": "@types/react-dom", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L29", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "@types/react-dom", + "id": "frontend_admin_panel_package_json_types_react_dom" + }, + { + "label": "@vitejs/plugin-react", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L30", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "@vitejs/plugin-react", + "id": "frontend_admin_panel_package_json_vitejs_plugin_react" + }, + { + "label": "postcss", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L36", + "_origin": "ast", + "community": 49, + "community_name": "devDependencies", + "norm_label": "postcss", + "id": "postcss" + }, + { + "label": "cms.controller.ts", + "file_type": "code", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "cms.controller.ts", + "id": "backend_src_cms_cms_controller" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "apibearerauth", + "id": "backend_src_cms_cms_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "apioperation", + "id": "backend_src_cms_cms_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "apitags", + "id": "backend_src_cms_cms_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "body", + "id": "backend_src_cms_cms_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "controller", + "id": "backend_src_cms_cms_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "delete", + "id": "backend_src_cms_cms_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "get", + "id": "backend_src_cms_cms_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "param", + "id": "backend_src_cms_cms_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "post", + "id": "backend_src_cms_cms_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "put", + "id": "backend_src_cms_cms_controller_ts_put" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "useguards", + "id": "backend_src_cms_cms_controller_ts_useguards" + }, + { + "label": "cms.service.ts", + "file_type": "code", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "cms.service.ts", + "id": "backend_src_cms_cms_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "injectable", + "id": "backend_src_cms_cms_service_ts_injectable" + }, + { + "label": "cms.dto.ts", + "file_type": "code", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "cms.dto.ts", + "id": "backend_src_cms_dto_cms_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "apiproperty", + "id": "backend_src_cms_dto_cms_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "apipropertyoptional", + "id": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional" + }, + { + "label": "IsBoolean", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "isboolean", + "id": "backend_src_cms_dto_cms_dto_ts_isboolean" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "isnumber", + "id": "backend_src_cms_dto_cms_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "isoptional", + "id": "backend_src_cms_dto_cms_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "isstring", + "id": "backend_src_cms_dto_cms_dto_ts_isstring" + }, + { + "label": "IsUUID", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 5, + "community_name": "CmsController", + "norm_label": "isuuid", + "id": "isuuid" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L21", + "_origin": "ast", + "community": 50, + "community_name": "devDependencies", + "norm_label": "devdependencies", + "id": "frontend_application_package_devdependencies" + }, + { + "label": "eslint", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L29", + "_origin": "ast", + "community": 50, + "community_name": "devDependencies", + "norm_label": "eslint", + "id": "frontend_application_package_devdependencies_eslint" + }, + { + "label": "eslint-config-next", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L30", + "_origin": "ast", + "community": 319, + "community_name": "eslint-config-next", + "norm_label": "eslint-config-next", + "id": "frontend_application_package_devdependencies_eslint_config_next" + }, + { + "label": "jsdom", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L31", + "_origin": "ast", + "community": 50, + "community_name": "devDependencies", + "norm_label": "jsdom", + "id": "frontend_application_package_devdependencies_jsdom" + }, + { + "label": "tailwindcss", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L32", + "_origin": "ast", + "community": 50, + "community_name": "devDependencies", + "norm_label": "tailwindcss", + "id": "frontend_application_package_devdependencies_tailwindcss" + }, + { + "label": "@tailwindcss/postcss", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L22", + "_origin": "ast", + "community": 50, + "community_name": "devDependencies", + "norm_label": "@tailwindcss/postcss", + "id": "frontend_application_package_devdependencies_tailwindcss_postcss" + }, + { + "label": "@types/node", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L25", + "_origin": "ast", + "community": 50, + "community_name": "devDependencies", + "norm_label": "@types/node", + "id": "frontend_application_package_devdependencies_types_node" + }, + { + "label": "@vitejs/plugin-react", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L28", + "_origin": "ast", + "community": 50, + "community_name": "devDependencies", + "norm_label": "@vitejs/plugin-react", + "id": "frontend_application_package_devdependencies_vitejs_plugin_react" + }, + { + "label": "eslint-config-next", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L30", + "_origin": "ast", + "community": 319, + "community_name": "eslint-config-next", + "norm_label": "eslint-config-next", + "id": "eslint_config_next" + }, + { + "label": "eslint", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L29", + "_origin": "ast", + "community": 50, + "community_name": "devDependencies", + "norm_label": "eslint", + "id": "frontend_application_package_json_eslint" + }, + { + "label": "tailwindcss", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L32", + "_origin": "ast", + "community": 50, + "community_name": "devDependencies", + "norm_label": "tailwindcss", + "id": "frontend_application_package_json_tailwindcss" + }, + { + "label": "@tailwindcss/postcss", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L22", + "_origin": "ast", + "community": 50, + "community_name": "devDependencies", + "norm_label": "@tailwindcss/postcss", + "id": "frontend_application_package_json_tailwindcss_postcss" + }, + { + "label": "@types/node", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L25", + "_origin": "ast", + "community": 50, + "community_name": "devDependencies", + "norm_label": "@types/node", + "id": "frontend_application_package_json_types_node" + }, + { + "label": "@vitejs/plugin-react", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L28", + "_origin": "ast", + "community": 50, + "community_name": "devDependencies", + "norm_label": "@vitejs/plugin-react", + "id": "frontend_application_package_json_vitejs_plugin_react" + }, + { + "label": "jsdom", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L31", + "_origin": "ast", + "community": 50, + "community_name": "devDependencies", + "norm_label": "jsdom", + "id": "jsdom" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": "apibearerauth", + "id": "backend_src_admin_blogs_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": "apioperation", + "id": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "label": "ApiQuery", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": "apiquery", + "id": "backend_src_admin_blogs_controller_ts_apiquery" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": "apitags", + "id": "backend_src_admin_blogs_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": "body", + "id": "backend_src_admin_blogs_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": "controller", + "id": "backend_src_admin_blogs_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": "delete", + "id": "backend_src_admin_blogs_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": "get", + "id": "backend_src_admin_blogs_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": "param", + "id": "backend_src_admin_blogs_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": "patch", + "id": "backend_src_admin_blogs_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": "post", + "id": "backend_src_admin_blogs_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": "put", + "id": "backend_src_admin_blogs_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": "query", + "id": "backend_src_admin_blogs_controller_ts_query" + }, + { + "label": "Request", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": "request", + "id": "backend_src_admin_blogs_controller_ts_request" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 51, + "community_name": "BlogsController", + "norm_label": "useguards", + "id": "backend_src_admin_blogs_controller_ts_useguards" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": "apibearerauth", + "id": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": "apioperation", + "id": "backend_src_prescriptions_prescriptions_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": "apitags", + "id": "backend_src_prescriptions_prescriptions_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": "body", + "id": "backend_src_prescriptions_prescriptions_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": "controller", + "id": "backend_src_prescriptions_prescriptions_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": "get", + "id": "backend_src_prescriptions_prescriptions_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": "param", + "id": "backend_src_prescriptions_prescriptions_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": "patch", + "id": "backend_src_prescriptions_prescriptions_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": "post", + "id": "backend_src_prescriptions_prescriptions_controller_ts_post" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": "req", + "id": "backend_src_prescriptions_prescriptions_controller_ts_req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": "useguards", + "id": "backend_src_prescriptions_prescriptions_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 52, + "community_name": "PrescriptionsService", + "norm_label": "injectable", + "id": "backend_src_prescriptions_prescriptions_service_ts_injectable" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": "apibearerauth", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": "apioperation", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": "apitags", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": "body", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": "controller", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": "delete", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": "get", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": "param", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": "patch", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": "post", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_post" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": "useguards", + "id": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 53, + "community_name": "SmartAdvisorService", + "norm_label": "injectable", + "id": "backend_src_smart_advisor_smart_advisor_service_ts_injectable" + }, + { + "label": "auth.constants.ts", + "file_type": "code", + "source_file": "backend/src/auth/auth.constants.ts", + "source_location": "L1", + "_origin": "ast", + "community": 48, + "community_name": "auth.module.ts", + "norm_label": "auth.constants.ts", + "id": "backend_src_auth_auth_constants" + }, + { + "label": "DEFAULT_JWT_REFRESH_SECRET", + "file_type": "code", + "source_file": "backend/src/auth/auth.constants.ts", + "source_location": "L4", + "_origin": "ast", + "community": 48, + "community_name": "auth.module.ts", + "norm_label": "default_jwt_refresh_secret", + "id": "backend_src_auth_auth_constants_default_jwt_refresh_secret" + }, + { + "label": "DEFAULT_JWT_SECRET", + "file_type": "code", + "source_file": "backend/src/auth/auth.constants.ts", + "source_location": "L1", + "_origin": "ast", + "community": 48, + "community_name": "auth.module.ts", + "norm_label": "default_jwt_secret", + "id": "backend_src_auth_auth_constants_default_jwt_secret" + }, + { + "label": "auth.module.ts", + "file_type": "code", + "source_file": "backend/src/auth/auth.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 48, + "community_name": "auth.module.ts", + "norm_label": "auth.module.ts", + "id": "backend_src_auth_auth_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 48, + "community_name": "auth.module.ts", + "norm_label": "module", + "id": "backend_src_auth_auth_module_ts_module" + }, + { + "label": "jwt.strategy.ts", + "file_type": "code", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L1", + "_origin": "ast", + "community": 48, + "community_name": "auth.module.ts", + "norm_label": "jwt.strategy.ts", + "id": "backend_src_auth_jwt_strategy" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 48, + "community_name": "auth.module.ts", + "norm_label": "injectable", + "id": "backend_src_auth_jwt_strategy_ts_injectable" + }, + { + "label": "address.dto.ts", + "file_type": "code", + "source_file": "backend/src/users/dto/address.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 60, + "community_name": "users.controller.ts", + "norm_label": "address.dto.ts", + "id": "backend_src_users_dto_address_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "users.controller.ts", + "norm_label": "apiproperty", + "id": "backend_src_users_dto_address_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "users.controller.ts", + "norm_label": "apipropertyoptional", + "id": "backend_src_users_dto_address_dto_ts_apipropertyoptional" + }, + { + "label": "IsBoolean", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "users.controller.ts", + "norm_label": "isboolean", + "id": "backend_src_users_dto_address_dto_ts_isboolean" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "users.controller.ts", + "norm_label": "isnotempty", + "id": "backend_src_users_dto_address_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "users.controller.ts", + "norm_label": "isoptional", + "id": "backend_src_users_dto_address_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "users.controller.ts", + "norm_label": "isstring", + "id": "backend_src_users_dto_address_dto_ts_isstring" + }, + { + "label": "update-profile.dto.ts", + "file_type": "code", + "source_file": "backend/src/users/dto/update-profile.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 60, + "community_name": "users.controller.ts", + "norm_label": "update-profile.dto.ts", + "id": "backend_src_users_dto_update_profile_dto" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "users.controller.ts", + "norm_label": "apipropertyoptional", + "id": "backend_src_users_dto_update_profile_dto_ts_apipropertyoptional" + }, + { + "label": "IsEmail", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "users.controller.ts", + "norm_label": "isemail", + "id": "backend_src_users_dto_update_profile_dto_ts_isemail" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "users.controller.ts", + "norm_label": "isoptional", + "id": "backend_src_users_dto_update_profile_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "users.controller.ts", + "norm_label": "isstring", + "id": "backend_src_users_dto_update_profile_dto_ts_isstring" + }, + { + "label": "MinLength", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 60, + "community_name": "users.controller.ts", + "norm_label": "minlength", + "id": "backend_src_users_dto_update_profile_dto_ts_minlength" + }, + { + "label": "users.controller.ts", + "file_type": "code", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 60, + "community_name": "users.controller.ts", + "norm_label": "users.controller.ts", + "id": "backend_src_users_users_controller" + }, + { + "label": "users.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/users/users.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": "users.controller.spec.ts", + "id": "backend_src_users_users_controller_spec" + }, + { + "label": "ApiBadRequestResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": "apibadrequestresponse", + "id": "backend_src_users_users_controller_ts_apibadrequestresponse" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": "apibearerauth", + "id": "backend_src_users_users_controller_ts_apibearerauth" + }, + { + "label": "ApiCreatedResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": "apicreatedresponse", + "id": "backend_src_users_users_controller_ts_apicreatedresponse" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": "apiokresponse", + "id": "backend_src_users_users_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": "apioperation", + "id": "backend_src_users_users_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": "apitags", + "id": "backend_src_users_users_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": "body", + "id": "backend_src_users_users_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": "controller", + "id": "backend_src_users_users_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": "delete", + "id": "backend_src_users_users_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": "get", + "id": "backend_src_users_users_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": "param", + "id": "backend_src_users_users_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": "patch", + "id": "backend_src_users_users_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": "post", + "id": "backend_src_users_users_controller_ts_post" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": "req", + "id": "backend_src_users_users_controller_ts_req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 54, + "community_name": "UsersController", + "norm_label": "useguards", + "id": "backend_src_users_users_controller_ts_useguards" + }, + { + "label": "users.module.ts", + "file_type": "code", + "source_file": "backend/src/users/users.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 48, + "community_name": "auth.module.ts", + "norm_label": "users.module.ts", + "id": "backend_src_users_users_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 48, + "community_name": "auth.module.ts", + "norm_label": "module", + "id": "backend_src_users_users_module_ts_module" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 115, + "community_name": "UsersService", + "norm_label": "injectable", + "id": "backend_src_users_users_service_ts_injectable" + }, + { + "label": "IconPickerModal.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "iconpickermodal.tsx", + "id": "frontend_admin_panel_src_components_ui_iconpickermodal" + }, + { + "label": "ICON_REGISTRY", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", + "source_location": "L51", + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "icon_registry", + "id": "frontend_admin_panel_src_components_ui_iconpickermodal_icon_registry" + }, + { + "label": "RichTextEditor.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "richtexteditor.tsx", + "id": "frontend_admin_panel_src_components_ui_richtexteditor" + }, + { + "label": "PRESET_BG_COLORS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", + "source_location": "L51", + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "preset_bg_colors", + "id": "frontend_admin_panel_src_components_ui_richtexteditor_preset_bg_colors" + }, + { + "label": "PRESET_COLORS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", + "source_location": "L41", + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "preset_colors", + "id": "frontend_admin_panel_src_components_ui_richtexteditor_preset_colors" + }, + { + "label": "ToggleSwitch.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "toggleswitch.tsx", + "id": "frontend_admin_panel_src_components_ui_toggleswitch" + }, + { + "label": "UITexts.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "uitexts.tsx", + "id": "frontend_admin_panel_src_pages_uitexts" + }, + { + "label": "SHARED_FOOTER_FIELDS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L664", + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "shared_footer_fields", + "id": "frontend_admin_panel_src_pages_uitexts_shared_footer_fields" + }, + { + "label": "SHARED_HEADER_FIELDS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L650", + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "shared_header_fields", + "id": "frontend_admin_panel_src_pages_uitexts_shared_header_fields" + }, + { + "label": "SITE_PAGES", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L273", + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "site_pages", + "id": "frontend_admin_panel_src_pages_uitexts_site_pages" + }, + { + "label": "V1_GROUP_PAGE_MAP", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L200", + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "v1_group_page_map", + "id": "frontend_admin_panel_src_pages_uitexts_v1_group_page_map" + }, + { + "label": "V1_GROUPS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L64", + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "v1_groups", + "id": "frontend_admin_panel_src_pages_uitexts_v1_groups" + }, + { + "label": "V1_PAGE_TABS", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L55", + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "v1_page_tabs", + "id": "frontend_admin_panel_src_pages_uitexts_v1_page_tabs" + }, + { + "label": "UITexts", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L21", + "_origin": "ast", + "community": 55, + "community_name": "UITexts.tsx", + "norm_label": "uitexts", + "id": "frontend_admin_panel_src_routes_adminroutes_uitexts" + }, + { + "label": "Badge.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "badge.tsx", + "id": "frontend_admin_panel_src_components_ui_badge" + }, + { + "label": "variantStyles", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", + "source_location": "L22", + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "variantstyles", + "id": "frontend_admin_panel_src_components_ui_badge_variantstyles" + }, + { + "label": "ui/Skeleton.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/Skeleton.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "ui/skeleton.tsx", + "id": "frontend_admin_panel_src_components_ui_skeleton" + }, + { + "label": "MonitoringPage.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "monitoringpage.tsx", + "id": "frontend_admin_panel_src_pages_monitoringpage" + }, + { + "label": "Orders.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "orders.tsx", + "id": "frontend_admin_panel_src_pages_orders" + }, + { + "label": "ORDER_STATUS_MAP", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L107", + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "order_status_map", + "id": "frontend_admin_panel_src_pages_orders_order_status_map" + }, + { + "label": "Users.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "users.tsx", + "id": "frontend_admin_panel_src_pages_users" + }, + { + "label": "MonitoringPage", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L47", + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "monitoringpage", + "id": "frontend_admin_panel_src_routes_adminroutes_monitoringpage" + }, + { + "label": "Orders", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L13", + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "orders", + "id": "frontend_admin_panel_src_routes_adminroutes_orders" + }, + { + "label": "Users", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L11", + "_origin": "ast", + "community": 56, + "community_name": "Orders.tsx", + "norm_label": "users", + "id": "frontend_admin_panel_src_routes_adminroutes_users" + }, + { + "label": "12_seo_content.md", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L1", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "12_seo_content.md", + "node_kind": "page", + "id": "ai_agency_agents_12_seo_content" + }, + { + "label": "CREATE MODE \u2014 Normal Operation", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L101", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "create mode \u2014 normal operation", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_create_mode_normal_operation" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L259", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "expected json output schema", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_expected_json_output_schema" + }, + { + "label": "File Scope Boundary", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L238", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "file scope boundary", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_file_scope_boundary" + }, + { + "label": "Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L231", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "forbidden actions", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_forbidden_actions" + }, + { + "label": "MODE 1: REVIEW (called during Review Phase)", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L116", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "mode 1: review (called during review phase)", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_mode_1_review_called_during_review_phase" + }, + { + "label": "MODE 2: CONTENT CREATION (standalone task from backlog)", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L160", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "mode 2: content creation (standalone task from backlog)", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog" + }, + { + "label": "Operating Modes", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L114", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "operating modes", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_operating_modes" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L229", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "operational rules & boundaries", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_operational_rules_boundaries" + }, + { + "label": "Output", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L63", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "output", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_output" + }, + { + "label": "Required Output Artifacts", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L244", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "required output artifacts", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_required_output_artifacts" + }, + { + "label": "\u2605 REVIEW MODE (called during Review Phase)", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L13", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "\u2605 review mode (called during review phase)", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L1", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "role & core objective", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_role_core_objective" + }, + { + "label": "Step 1: Gather Resources", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L166", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "step 1: gather resources", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_step_1_gather_resources" + }, + { + "label": "Step 2: SEO Strategy", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L179", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "step 2: seo strategy", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_step_2_seo_strategy" + }, + { + "label": "Step 3: Content Hierarchy", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L188", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "step 3: content hierarchy", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_step_3_content_hierarchy" + }, + { + "label": "Step 4: Structured Data (JSON-LD)", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L199", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "step 4: structured data (json-ld)", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_step_4_structured_data_json_ld" + }, + { + "label": "Step 5: Real Content Writing Standards", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L211", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "step 5: real content writing standards", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_step_5_real_content_writing_standards" + }, + { + "label": "Step 6: Image Alt Text", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L221", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "step 6: image alt text", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_step_6_image_alt_text" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L103", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "strict input specifications (what files to read)", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_strict_input_specifications_what_files_to_read" + }, + { + "label": "What You DO NOT Review", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L29", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "what you do not review", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_what_you_do_not_review" + }, + { + "label": "What You Look For (SEO Expert Eyes Only)", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L32", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "what you look for (seo expert eyes only)", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_what_you_look_for_seo_expert_eyes_only" + }, + { + "label": "Your Domain \u2014 What You Review (ONLY these areas)", + "file_type": "document", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L17", + "_origin": "ast", + "community": 57, + "community_name": "Role & Core Objective", + "norm_label": "your domain \u2014 what you review (only these areas)", + "node_kind": "heading", + "id": "ai_agency_agents_12_seo_content_your_domain_what_you_review_only_these_areas" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": "body", + "id": "backend_src_contact_contact_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": "controller", + "id": "backend_src_contact_contact_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": "get", + "id": "backend_src_contact_contact_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": "param", + "id": "backend_src_contact_contact_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": "post", + "id": "backend_src_contact_contact_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": "put", + "id": "backend_src_contact_contact_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": "query", + "id": "backend_src_contact_contact_controller_ts_query" + }, + { + "label": "Throttle", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": "throttle", + "id": "backend_src_contact_contact_controller_ts_throttle" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": "useguards", + "id": "backend_src_contact_contact_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 58, + "community_name": "ContactService", + "norm_label": "injectable", + "id": "backend_src_contact_contact_service_ts_injectable" + }, + { + "label": "backend/tsconfig.json", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "backend/tsconfig.json", + "id": "backend_tsconfig" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L2", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "compileroptions", + "id": "backend_tsconfig_compileroptions" + }, + { + "label": "allowSyntheticDefaultImports", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L12", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "allowsyntheticdefaultimports", + "id": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports" + }, + { + "label": "baseUrl", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L17", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "baseurl", + "id": "backend_tsconfig_compileroptions_baseurl" + }, + { + "label": "declaration", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L8", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "declaration", + "id": "backend_tsconfig_compileroptions_declaration" + }, + { + "label": "emitDecoratorMetadata", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L10", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "emitdecoratormetadata", + "id": "backend_tsconfig_compileroptions_emitdecoratormetadata" + }, + { + "label": "esModuleInterop", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L6", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "esmoduleinterop", + "id": "backend_tsconfig_compileroptions_esmoduleinterop" + }, + { + "label": "experimentalDecorators", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L11", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "experimentaldecorators", + "id": "backend_tsconfig_compileroptions_experimentaldecorators" + }, + { + "label": "forceConsistentCasingInFileNames", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L21", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "forceconsistentcasinginfilenames", + "id": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames" + }, + { + "label": "incremental", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L18", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "incremental", + "id": "backend_tsconfig_compileroptions_incremental" + }, + { + "label": "isolatedModules", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L7", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "isolatedmodules", + "id": "backend_tsconfig_compileroptions_isolatedmodules" + }, + { + "label": "module", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L3", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "module", + "id": "backend_tsconfig_compileroptions_module" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "moduleresolution", + "id": "backend_tsconfig_compileroptions_moduleresolution" + }, + { + "label": "noFallthroughCasesInSwitch", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L24", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "nofallthroughcasesinswitch", + "id": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch" + }, + { + "label": "noImplicitAny", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L22", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "noimplicitany", + "id": "backend_tsconfig_compileroptions_noimplicitany" + }, + { + "label": "outDir", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L15", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "outdir", + "id": "backend_tsconfig_compileroptions_outdir" + }, + { + "label": "removeComments", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L9", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "removecomments", + "id": "backend_tsconfig_compileroptions_removecomments" + }, + { + "label": "resolvePackageJsonExports", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "resolvepackagejsonexports", + "id": "backend_tsconfig_compileroptions_resolvepackagejsonexports" + }, + { + "label": "rootDir", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L16", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "rootdir", + "id": "backend_tsconfig_compileroptions_rootdir" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L19", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "skiplibcheck", + "id": "backend_tsconfig_compileroptions_skiplibcheck" + }, + { + "label": "sourceMap", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L14", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "sourcemap", + "id": "backend_tsconfig_compileroptions_sourcemap" + }, + { + "label": "strictBindCallApply", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L23", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "strictbindcallapply", + "id": "backend_tsconfig_compileroptions_strictbindcallapply" + }, + { + "label": "strictNullChecks", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L20", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "strictnullchecks", + "id": "backend_tsconfig_compileroptions_strictnullchecks" + }, + { + "label": "target", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "target", + "id": "backend_tsconfig_compileroptions_target" + }, + { + "label": "exclude", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "exclude", + "id": "backend_tsconfig_exclude" + }, + { + "label": "include", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L26", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "include", + "id": "backend_tsconfig_include" + }, + { + "label": "dist", + "file_type": "concept", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "dist", + "id": "backend_tsconfig_json_ref_dist" + }, + { + "label": "node_modules", + "file_type": "concept", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "node_modules", + "id": "backend_tsconfig_json_ref_node_modules" + }, + { + "label": "prisma", + "file_type": "concept", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "prisma", + "id": "backend_tsconfig_json_ref_prisma" + }, + { + "label": "src/**/*", + "file_type": "concept", + "source_file": "backend/tsconfig.json", + "source_location": "L26", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "src/**/*", + "id": "backend_tsconfig_json_ref_src" + }, + { + "label": "scripts", + "file_type": "concept", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "_origin": "ast", + "community": 59, + "community_name": "compilerOptions", + "norm_label": "scripts", + "id": "ref_scripts" + }, + { + "label": "create-ticket.dto.ts", + "file_type": "code", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "create-ticket.dto.ts", + "id": "backend_src_tickets_dto_create_ticket_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "apiproperty", + "id": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "apipropertyoptional", + "id": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "isnotempty", + "id": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "isoptional", + "id": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "isstring", + "id": "backend_src_tickets_dto_create_ticket_dto_ts_isstring" + }, + { + "label": "ticket-query.dto.ts", + "file_type": "code", + "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "ticket-query.dto.ts", + "id": "backend_src_tickets_dto_ticket_query_dto" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "apipropertyoptional", + "id": "backend_src_tickets_dto_ticket_query_dto_ts_apipropertyoptional" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "isnumber", + "id": "backend_src_tickets_dto_ticket_query_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "isoptional", + "id": "backend_src_tickets_dto_ticket_query_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "isstring", + "id": "backend_src_tickets_dto_ticket_query_dto_ts_isstring" + }, + { + "label": "Type", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "type", + "id": "backend_src_tickets_dto_ticket_query_dto_ts_type" + }, + { + "label": "tickets.controller.ts", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "tickets.controller.ts", + "id": "backend_src_tickets_tickets_controller" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "apibearerauth", + "id": "backend_src_tickets_tickets_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "apioperation", + "id": "backend_src_tickets_tickets_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "apitags", + "id": "backend_src_tickets_tickets_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "body", + "id": "backend_src_tickets_tickets_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "controller", + "id": "backend_src_tickets_tickets_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "get", + "id": "backend_src_tickets_tickets_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "param", + "id": "backend_src_tickets_tickets_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "post", + "id": "backend_src_tickets_tickets_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "put", + "id": "backend_src_tickets_tickets_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "query", + "id": "backend_src_tickets_tickets_controller_ts_query" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "req", + "id": "backend_src_tickets_tickets_controller_ts_req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "useguards", + "id": "backend_src_tickets_tickets_controller_ts_useguards" + }, + { + "label": "tickets.module.ts", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "tickets.module.ts", + "id": "backend_src_tickets_tickets_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 1, + "community_name": "app.module.ts", + "norm_label": "module", + "id": "backend_src_tickets_tickets_module_ts_module" + }, + { + "label": "tickets.service.ts", + "file_type": "code", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "tickets.service.ts", + "id": "backend_src_tickets_tickets_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 6, + "community_name": "tickets.controller.ts", + "norm_label": "injectable", + "id": "backend_src_tickets_tickets_service_ts_injectable" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 68, + "community_name": "PaymentService", + "norm_label": "injectable", + "id": "backend_src_payment_payment_service_ts_injectable" + }, + { + "label": "admin-transaction-filter.dto.ts", + "file_type": "code", + "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 61, + "community_name": "payment.service.ts", + "norm_label": "admin-transaction-filter.dto.ts", + "id": "backend_src_payment_dto_admin_transaction_filter_dto" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 61, + "community_name": "payment.service.ts", + "norm_label": "apipropertyoptional", + "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional" + }, + { + "label": "IsIn", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 61, + "community_name": "payment.service.ts", + "norm_label": "isin", + "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 61, + "community_name": "payment.service.ts", + "norm_label": "isnumber", + "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 61, + "community_name": "payment.service.ts", + "norm_label": "isoptional", + "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 61, + "community_name": "payment.service.ts", + "norm_label": "isstring", + "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring" + }, + { + "label": "Type", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 61, + "community_name": "payment.service.ts", + "norm_label": "type", + "id": "backend_src_payment_dto_admin_transaction_filter_dto_ts_type" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 113, + "community_name": "CreateReviewDto", + "norm_label": "apiproperty", + "id": "backend_src_reviews_dto_create_review_dto_ts_apiproperty" + }, + { + "label": "IsInt", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 113, + "community_name": "CreateReviewDto", + "norm_label": "isint", + "id": "backend_src_reviews_dto_create_review_dto_ts_isint" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 113, + "community_name": "CreateReviewDto", + "norm_label": "isnotempty", + "id": "backend_src_reviews_dto_create_review_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 113, + "community_name": "CreateReviewDto", + "norm_label": "isoptional", + "id": "backend_src_reviews_dto_create_review_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 113, + "community_name": "CreateReviewDto", + "norm_label": "isstring", + "id": "backend_src_reviews_dto_create_review_dto_ts_isstring" + }, + { + "label": "Min", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 113, + "community_name": "CreateReviewDto", + "norm_label": "min", + "id": "backend_src_reviews_dto_create_review_dto_ts_min" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "ReviewsService", + "norm_label": "post", + "id": "backend_src_reviews_reviews_controller_ts_post" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "ReviewsService", + "norm_label": "req", + "id": "backend_src_reviews_reviews_controller_ts_req" + }, + { + "label": "Throttle", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 10, + "community_name": "ReviewsService", + "norm_label": "throttle", + "id": "backend_src_reviews_reviews_controller_ts_throttle" + }, + { + "label": "Max", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 113, + "community_name": "CreateReviewDto", + "norm_label": "max", + "id": "max" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L24", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "dependencies", + "id": "backend_package_dependencies" + }, + { + "label": "bcrypt", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L33", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "bcrypt", + "id": "backend_package_dependencies_bcrypt" + }, + { + "label": "bcryptjs", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L34", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "bcryptjs", + "id": "backend_package_dependencies_bcryptjs" + }, + { + "label": "class-transformer", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L35", + "_origin": "ast", + "community": 158, + "community_name": "class-transformer", + "norm_label": "class-transformer", + "id": "backend_package_dependencies_class_transformer" + }, + { + "label": "class-validator", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L36", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "class-validator", + "id": "backend_package_dependencies_class_validator" + }, + { + "label": "compression", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L37", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "compression", + "id": "backend_package_dependencies_compression" + }, + { + "label": "helmet", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L38", + "_origin": "ast", + "community": 176, + "community_name": "helmet", + "norm_label": "helmet", + "id": "backend_package_dependencies_helmet" + }, + { + "label": "ioredis", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L39", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "ioredis", + "id": "backend_package_dependencies_ioredis" + }, + { + "label": "js-yaml", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L40", + "_origin": "ast", + "community": 177, + "community_name": "js-yaml", + "norm_label": "js-yaml", + "id": "backend_package_dependencies_js_yaml" + }, + { + "label": "@nestjs/common", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L25", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "@nestjs/common", + "id": "backend_package_dependencies_nestjs_common" + }, + { + "label": "@nestjs/core", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L26", + "_origin": "ast", + "community": 178, + "community_name": "@nestjs/core", + "norm_label": "@nestjs/core", + "id": "backend_package_dependencies_nestjs_core" + }, + { + "label": "@nestjs/jwt", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L27", + "_origin": "ast", + "community": 185, + "community_name": "@nestjs/jwt", + "norm_label": "@nestjs/jwt", + "id": "backend_package_dependencies_nestjs_jwt" + }, + { + "label": "@nestjs/passport", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L28", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "@nestjs/passport", + "id": "backend_package_dependencies_nestjs_passport" + }, + { + "label": "@nestjs/platform-express", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L29", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "@nestjs/platform-express", + "id": "backend_package_dependencies_nestjs_platform_express" + }, + { + "label": "@nestjs/swagger", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L30", + "_origin": "ast", + "community": 156, + "community_name": "@nestjs/swagger", + "norm_label": "@nestjs/swagger", + "id": "backend_package_dependencies_nestjs_swagger" + }, + { + "label": "@nestjs/throttler", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L31", + "_origin": "ast", + "community": 197, + "community_name": "@nestjs/throttler", + "norm_label": "@nestjs/throttler", + "id": "backend_package_dependencies_nestjs_throttler" + }, + { + "label": "passport", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L41", + "_origin": "ast", + "community": 198, + "community_name": "passport", + "norm_label": "passport", + "id": "backend_package_dependencies_passport" + }, + { + "label": "passport-jwt", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L42", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "passport-jwt", + "id": "backend_package_dependencies_passport_jwt" + }, + { + "label": "@prisma/client", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L32", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "@prisma/client", + "id": "backend_package_dependencies_prisma_client" + }, + { + "label": "reflect-metadata", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L43", + "_origin": "ast", + "community": 204, + "community_name": "reflect-metadata", + "norm_label": "reflect-metadata", + "id": "backend_package_dependencies_reflect_metadata" + }, + { + "label": "rxjs", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L44", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "rxjs", + "id": "backend_package_dependencies_rxjs" + }, + { + "label": "swagger-ui-express", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L45", + "_origin": "ast", + "community": 223, + "community_name": "swagger-ui-express", + "norm_label": "swagger-ui-express", + "id": "backend_package_dependencies_swagger_ui_express" + }, + { + "label": "bcrypt", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L33", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "bcrypt", + "id": "bcrypt" + }, + { + "label": "bcryptjs", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L34", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "bcryptjs", + "id": "bcryptjs" + }, + { + "label": "class-transformer", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L35", + "_origin": "ast", + "community": 158, + "community_name": "class-transformer", + "norm_label": "class-transformer", + "id": "class_transformer" + }, + { + "label": "class-validator", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L36", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "class-validator", + "id": "class_validator" + }, + { + "label": "compression", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L37", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "compression", + "id": "compression" + }, + { + "label": "helmet", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L38", + "_origin": "ast", + "community": 176, + "community_name": "helmet", + "norm_label": "helmet", + "id": "helmet" + }, + { + "label": "ioredis", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L39", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "ioredis", + "id": "ioredis" + }, + { + "label": "js-yaml", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L40", + "_origin": "ast", + "community": 177, + "community_name": "js-yaml", + "norm_label": "js-yaml", + "id": "js_yaml" + }, + { + "label": "@nestjs/common", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L25", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "@nestjs/common", + "id": "nestjs_common" + }, + { + "label": "@nestjs/core", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L26", + "_origin": "ast", + "community": 178, + "community_name": "@nestjs/core", + "norm_label": "@nestjs/core", + "id": "nestjs_core" + }, + { + "label": "@nestjs/jwt", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L27", + "_origin": "ast", + "community": 185, + "community_name": "@nestjs/jwt", + "norm_label": "@nestjs/jwt", + "id": "nestjs_jwt" + }, + { + "label": "@nestjs/passport", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L28", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "@nestjs/passport", + "id": "nestjs_passport" + }, + { + "label": "@nestjs/platform-express", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L29", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "@nestjs/platform-express", + "id": "nestjs_platform_express" + }, + { + "label": "@nestjs/swagger", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L30", + "_origin": "ast", + "community": 156, + "community_name": "@nestjs/swagger", + "norm_label": "@nestjs/swagger", + "id": "nestjs_swagger" + }, + { + "label": "@nestjs/throttler", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L31", + "_origin": "ast", + "community": 197, + "community_name": "@nestjs/throttler", + "norm_label": "@nestjs/throttler", + "id": "nestjs_throttler" + }, + { + "label": "passport", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L41", + "_origin": "ast", + "community": 198, + "community_name": "passport", + "norm_label": "passport", + "id": "passport" + }, + { + "label": "passport-jwt", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L42", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "passport-jwt", + "id": "passport_jwt" + }, + { + "label": "@prisma/client", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L32", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "@prisma/client", + "id": "prisma_client" + }, + { + "label": "reflect-metadata", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L43", + "_origin": "ast", + "community": 204, + "community_name": "reflect-metadata", + "norm_label": "reflect-metadata", + "id": "reflect_metadata" + }, + { + "label": "rxjs", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L44", + "_origin": "ast", + "community": 63, + "community_name": "dependencies", + "norm_label": "rxjs", + "id": "rxjs" + }, + { + "label": "swagger-ui-express", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L45", + "_origin": "ast", + "community": 223, + "community_name": "swagger-ui-express", + "norm_label": "swagger-ui-express", + "id": "swagger_ui_express" + }, + { + "label": "tsconfig.node.json", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L1", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "tsconfig.node.json", + "id": "frontend_admin_panel_tsconfig_node" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L2", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "compileroptions", + "id": "frontend_admin_panel_tsconfig_node_compileroptions" + }, + { + "label": "allowImportingTsExtensions", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L12", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "allowimportingtsextensions", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_allowimportingtsextensions" + }, + { + "label": "erasableSyntaxOnly", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L20", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "erasablesyntaxonly", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_erasablesyntaxonly" + }, + { + "label": "lib", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L5", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "lib", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_lib" + }, + { + "label": "module", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L6", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "module", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_module" + }, + { + "label": "moduleDetection", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L14", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "moduledetection", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_moduledetection" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L11", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "moduleresolution", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_moduleresolution" + }, + { + "label": "noEmit", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L15", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "noemit", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_noemit" + }, + { + "label": "noFallthroughCasesInSwitch", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L21", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "nofallthroughcasesinswitch", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_nofallthroughcasesinswitch" + }, + { + "label": "noUnusedLocals", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L18", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "nounusedlocals", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedlocals" + }, + { + "label": "noUnusedParameters", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L19", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "nounusedparameters", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedparameters" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L8", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "skiplibcheck", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_skiplibcheck" + }, + { + "label": "target", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L4", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "target", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_target" + }, + { + "label": "tsBuildInfoFile", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L3", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "tsbuildinfofile", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_tsbuildinfofile" + }, + { + "label": "types", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L7", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "types", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_types" + }, + { + "label": "verbatimModuleSyntax", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L13", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "verbatimmodulesyntax", + "id": "frontend_admin_panel_tsconfig_node_compileroptions_verbatimmodulesyntax" + }, + { + "label": "include", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L23", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "include", + "id": "frontend_admin_panel_tsconfig_node_include" + }, + { + "label": "ES2023", + "file_type": "concept", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L5", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "es2023", + "id": "frontend_admin_panel_tsconfig_node_json_ref_es2023" + }, + { + "label": "node", + "file_type": "concept", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L7", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "node", + "id": "frontend_admin_panel_tsconfig_node_json_ref_node" + }, + { + "label": "vite.config.ts", + "file_type": "concept", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L23", + "_origin": "ast", + "community": 64, + "community_name": "compilerOptions", + "norm_label": "vite.config.ts", + "id": "ref_vite_config_ts" + }, + { + "label": "ImagePreviewModal.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 106, + "community_name": "Media.tsx", + "norm_label": "imagepreviewmodal.tsx", + "id": "frontend_admin_panel_src_components_ui_imagepreviewmodal" + }, + { + "label": "Media.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 106, + "community_name": "Media.tsx", + "norm_label": "media.tsx", + "id": "frontend_admin_panel_src_pages_media" + }, + { + "label": "PrescriptionsManager.tsx", + "file_type": "code", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 106, + "community_name": "Media.tsx", + "norm_label": "prescriptionsmanager.tsx", + "id": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "label": "Media", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L22", + "_origin": "ast", + "community": 106, + "community_name": "Media.tsx", + "norm_label": "media", + "id": "frontend_admin_panel_src_routes_adminroutes_media" + }, + { + "label": "PrescriptionsManager", + "file_type": "code", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L31", + "_origin": "ast", + "community": 106, + "community_name": "Media.tsx", + "norm_label": "prescriptionsmanager", + "id": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager" + }, + { + "label": "wiki/wiki.controller.ts", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "wiki/wiki.controller.ts", + "id": "backend_src_wiki_wiki_controller" + }, + { + "label": "ApiNotFoundResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "apinotfoundresponse", + "id": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "apiokresponse", + "id": "backend_src_wiki_wiki_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "apioperation", + "id": "backend_src_wiki_wiki_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "apitags", + "id": "backend_src_wiki_wiki_controller_ts_apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "controller", + "id": "backend_src_wiki_wiki_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "get", + "id": "backend_src_wiki_wiki_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "param", + "id": "backend_src_wiki_wiki_controller_ts_param" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "query", + "id": "backend_src_wiki_wiki_controller_ts_query" + }, + { + "label": "wiki.module.ts", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "wiki.module.ts", + "id": "backend_src_wiki_wiki_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "module", + "id": "backend_src_wiki_wiki_module_ts_module" + }, + { + "label": "wiki/wiki.service.ts", + "file_type": "code", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "wiki/wiki.service.ts", + "id": "backend_src_wiki_wiki_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 179, + "community_name": "PaginationDto", + "norm_label": "injectable", + "id": "backend_src_wiki_wiki_service_ts_injectable" + }, + { + "label": "admin/pets.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "admin/pets.controller.ts", + "id": "backend_src_admin_pets_controller" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "apibearerauth", + "id": "backend_src_admin_pets_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "apioperation", + "id": "backend_src_admin_pets_controller_ts_apioperation" + }, + { + "label": "ApiQuery", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "apiquery", + "id": "backend_src_admin_pets_controller_ts_apiquery" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "apitags", + "id": "backend_src_admin_pets_controller_ts_apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "controller", + "id": "backend_src_admin_pets_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "delete", + "id": "backend_src_admin_pets_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "get", + "id": "backend_src_admin_pets_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "param", + "id": "backend_src_admin_pets_controller_ts_param" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "query", + "id": "backend_src_admin_pets_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "useguards", + "id": "backend_src_admin_pets_controller_ts_useguards" + }, + { + "label": "admin/pets.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "admin/pets.service.ts", + "id": "backend_src_admin_pets_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "injectable", + "id": "backend_src_admin_pets_service_ts_injectable" + }, + { + "label": "20260526145407_init/migration.sql", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": null, + "_origin": "ast", + "community": 68, + "community_name": "20260526145407_init/migration.sql", + "norm_label": "20260526145407_init/migration.sql", + "id": "backend_prisma_migrations_20260526145407_init_migration" + }, + { + "label": "\"coupons\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L148", + "_origin": "ast", + "community": 68, + "community_name": "20260526145407_init/migration.sql", + "norm_label": "\"coupons\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_coupons" + }, + { + "label": "\"health_logs\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L134", + "_origin": "ast", + "community": 68, + "community_name": "20260526145407_init/migration.sql", + "norm_label": "\"health_logs\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_health_logs" + }, + { + "label": "\"order_items\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L173", + "_origin": "ast", + "community": 68, + "community_name": "20260526145407_init/migration.sql", + "norm_label": "\"order_items\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_order_items" + }, + { + "label": "\"orders\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L159", + "_origin": "ast", + "community": 68, + "community_name": "20260526145407_init/migration.sql", + "norm_label": "\"orders\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_orders" + }, + { + "label": "\"pet_medical_conditions\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L103", + "_origin": "ast", + "community": 68, + "community_name": "20260526145407_init/migration.sql", + "norm_label": "\"pet_medical_conditions\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions" + }, + { + "label": "\"pets\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L87", + "_origin": "ast", + "community": 68, + "community_name": "20260526145407_init/migration.sql", + "norm_label": "\"pets\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_pets" + }, + { + "label": "\"product_ingredients\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L71", + "_origin": "ast", + "community": 68, + "community_name": "20260526145407_init/migration.sql", + "norm_label": "\"product_ingredients\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients" + }, + { + "label": "\"product_symptoms\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L79", + "_origin": "ast", + "community": 68, + "community_name": "20260526145407_init/migration.sql", + "norm_label": "\"product_symptoms\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms" + }, + { + "label": "\"products\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L49", + "_origin": "ast", + "community": 68, + "community_name": "20260526145407_init/migration.sql", + "norm_label": "\"products\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_products" + }, + { + "label": "\"reminder_completions\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L124", + "_origin": "ast", + "community": 68, + "community_name": "20260526145407_init/migration.sql", + "norm_label": "\"reminder_completions\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions" + }, + { + "label": "\"reminders\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L111", + "_origin": "ast", + "community": 68, + "community_name": "20260526145407_init/migration.sql", + "norm_label": "\"reminders\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_reminders" + }, + { + "label": "\"user_addresses\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L18", + "_origin": "ast", + "community": 68, + "community_name": "20260526145407_init/migration.sql", + "norm_label": "\"user_addresses\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_user_addresses" + }, + { + "label": "\"users\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L2", + "_origin": "ast", + "community": 68, + "community_name": "20260526145407_init/migration.sql", + "norm_label": "\"users\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_users" + }, + { + "label": "\"wallet_transactions\"", + "file_type": "code", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L35", + "_origin": "ast", + "community": 68, + "community_name": "20260526145407_init/migration.sql", + "norm_label": "\"wallet_transactions\"", + "id": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions" + }, + { + "label": "31-module-audit-closure.md", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L1", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "31-module-audit-closure.md", + "node_kind": "page", + "id": "docs_audit_31_module_audit_closure" + }, + { + "label": "10. Orders Backend", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L88", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "10. orders backend", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_10_orders_backend" + }, + { + "label": "11. Settings & Administrative Backend", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L96", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "11. settings & administrative backend", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_11_settings_administrative_backend" + }, + { + "label": "12. Prisma Schema, Migrations & Seed", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L104", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "12. prisma schema, migrations & seed", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_12_prisma_schema_migrations_seed" + }, + { + "label": "13. Redis & Temporary Auth State", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L114", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "13. redis & temporary auth state", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_13_redis_temporary_auth_state" + }, + { + "label": "14. Unit & E2E Tests", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L122", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "14. unit & e2e tests", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_14_unit_e2e_tests" + }, + { + "label": "15. Docker, NGINX, Prometheus & Deployment Config", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L131", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "15. docker, nginx, prometheus & deployment config", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_15_docker_nginx_prometheus_deployment_config" + }, + { + "label": "16. Documentation & OpenAPI Artifacts", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L139", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "16. documentation & openapi artifacts", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_16_documentation_openapi_artifacts" + }, + { + "label": "1. Storefront Shell & Routing", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L10", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "1. storefront shell & routing", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_1_storefront_shell_routing" + }, + { + "label": "2. Authentication UI, Stores & API Clients", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L19", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "2. authentication ui, stores & api clients", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_2_authentication_ui_stores_api_clients" + }, + { + "label": "3. Cart, Checkout, Order, Wallet & Payment UI", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L28", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "3. cart, checkout, order, wallet & payment ui", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_3_cart_checkout_order_wallet_payment_ui" + }, + { + "label": "4. Product, Pet, Scientific Term & Settings UI", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L37", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "4. product, pet, scientific term & settings ui", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_4_product_pet_scientific_term_settings_ui" + }, + { + "label": "5. NestJS Bootstrap & Shared Infrastructure", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L46", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "5. nestjs bootstrap & shared infrastructure", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_5_nestjs_bootstrap_shared_infrastructure" + }, + { + "label": "6. Authentication & Authorization Backend", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L55", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "6. authentication & authorization backend", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_6_authentication_authorization_backend" + }, + { + "label": "7. Users & Addresses Backend", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L63", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "7. users & addresses backend", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_7_users_addresses_backend" + }, + { + "label": "8. Pets Backend", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L71", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "8. pets backend", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_8_pets_backend" + }, + { + "label": "9. Products Backend", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L79", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "9. products backend", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_9_products_backend" + }, + { + "label": "Conclusion", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L149", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "conclusion", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_conclusion" + }, + { + "label": "Module Audit Closure Report", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L1", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "module audit closure report", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_module_audit_closure_report" + }, + { + "label": "Required Review Group Closures", + "file_type": "document", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L8", + "_origin": "ast", + "community": 69, + "community_name": "Required Review Group Closures", + "norm_label": "required review group closures", + "node_kind": "heading", + "id": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "label": "create-pet.dto.ts", + "file_type": "code", + "source_file": "backend/src/pets/dto/create-pet.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "create-pet.dto.ts", + "id": "backend_src_pets_dto_create_pet_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "apiproperty", + "id": "backend_src_pets_dto_create_pet_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "apipropertyoptional", + "id": "backend_src_pets_dto_create_pet_dto_ts_apipropertyoptional" + }, + { + "label": "IsArray", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "isarray", + "id": "backend_src_pets_dto_create_pet_dto_ts_isarray" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "isnotempty", + "id": "backend_src_pets_dto_create_pet_dto_ts_isnotempty" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "isnumber", + "id": "backend_src_pets_dto_create_pet_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "isoptional", + "id": "backend_src_pets_dto_create_pet_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "isstring", + "id": "backend_src_pets_dto_create_pet_dto_ts_isstring" + }, + { + "label": "update-pet.dto.ts", + "file_type": "code", + "source_file": "backend/src/pets/dto/update-pet.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "update-pet.dto.ts", + "id": "backend_src_pets_dto_update_pet_dto" + }, + { + "label": "pets/pets.controller.ts", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "pets/pets.controller.ts", + "id": "backend_src_pets_pets_controller" + }, + { + "label": "pets.controller.spec.ts", + "file_type": "code", + "source_file": "backend/src/pets/pets.controller.spec.ts", + "source_location": "L1", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "pets.controller.spec.ts", + "id": "backend_src_pets_pets_controller_spec" + }, + { + "label": "pets.module.ts", + "file_type": "code", + "source_file": "backend/src/pets/pets.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "pets.module.ts", + "id": "backend_src_pets_pets_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "module", + "id": "backend_src_pets_pets_module_ts_module" + }, + { + "label": "pets/pets.service.ts", + "file_type": "code", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "pets/pets.service.ts", + "id": "backend_src_pets_pets_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "injectable", + "id": "backend_src_pets_pets_service_ts_injectable" + }, + { + "label": "tsconfig.app.json", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L1", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "tsconfig.app.json", + "id": "frontend_admin_panel_tsconfig_app" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L2", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "compileroptions", + "id": "frontend_admin_panel_tsconfig_app_compileroptions" + }, + { + "label": "allowImportingTsExtensions", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L12", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "allowimportingtsextensions", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_allowimportingtsextensions" + }, + { + "label": "erasableSyntaxOnly", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L21", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "erasablesyntaxonly", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_erasablesyntaxonly" + }, + { + "label": "jsx", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L16", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "jsx", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_jsx" + }, + { + "label": "lib", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L5", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "lib", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_lib" + }, + { + "label": "module", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L6", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "module", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_module" + }, + { + "label": "moduleDetection", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L14", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "moduledetection", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_moduledetection" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L11", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "moduleresolution", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_moduleresolution" + }, + { + "label": "noEmit", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L15", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "noemit", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_noemit" + }, + { + "label": "noFallthroughCasesInSwitch", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L22", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "nofallthroughcasesinswitch", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_nofallthroughcasesinswitch" + }, + { + "label": "noUnusedLocals", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L19", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "nounusedlocals", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedlocals" + }, + { + "label": "noUnusedParameters", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L20", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "nounusedparameters", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedparameters" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L8", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "skiplibcheck", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_skiplibcheck" + }, + { + "label": "target", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L4", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "target", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_target" + }, + { + "label": "tsBuildInfoFile", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L3", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "tsbuildinfofile", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_tsbuildinfofile" + }, + { + "label": "types", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L7", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "types", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_types" + }, + { + "label": "verbatimModuleSyntax", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L13", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "verbatimmodulesyntax", + "id": "frontend_admin_panel_tsconfig_app_compileroptions_verbatimmodulesyntax" + }, + { + "label": "include", + "file_type": "code", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L24", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "include", + "id": "frontend_admin_panel_tsconfig_app_include" + }, + { + "label": "DOM", + "file_type": "concept", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L5", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "dom", + "id": "frontend_admin_panel_tsconfig_app_json_ref_dom" + }, + { + "label": "DOM.Iterable", + "file_type": "concept", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L5", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "dom.iterable", + "id": "frontend_admin_panel_tsconfig_app_json_ref_dom_iterable" + }, + { + "label": "ES2023", + "file_type": "concept", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L5", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "es2023", + "id": "frontend_admin_panel_tsconfig_app_json_ref_es2023" + }, + { + "label": "src", + "file_type": "concept", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L24", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "src", + "id": "frontend_admin_panel_tsconfig_app_json_ref_src" + }, + { + "label": "vite/client", + "file_type": "concept", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L7", + "_origin": "ast", + "community": 70, + "community_name": "compilerOptions", + "norm_label": "vite/client", + "id": "ref_vite_client" + }, + { + "label": "about/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/about/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "about/page.tsx", + "id": "frontend_application_app_about_page" + }, + { + "label": "checkout/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/checkout/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "checkout/page.tsx", + "id": "frontend_application_app_checkout_page" + }, + { + "label": "dashboard/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/dashboard/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "dashboard/page.tsx", + "id": "frontend_application_app_dashboard_page" + }, + { + "label": "privacy/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/privacy/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "privacy/page.tsx", + "id": "frontend_application_app_privacy_page" + }, + { + "label": "profile/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/profile/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "profile/page.tsx", + "id": "frontend_application_app_profile_page" + }, + { + "label": "search/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/search/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "search/page.tsx", + "id": "frontend_application_app_search_page" + }, + { + "label": "shop/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/shop/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "shop/page.tsx", + "id": "frontend_application_app_shop_page" + }, + { + "label": "track/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "track/page.tsx", + "id": "frontend_application_app_track_page" + }, + { + "label": "trust-seals/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "trust-seals/page.tsx", + "id": "frontend_application_app_trust_seals_page" + }, + { + "label": "wiki/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/wiki/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "wiki/page.tsx", + "id": "frontend_application_app_wiki_page" + }, + { + "label": "seo.ts", + "file_type": "code", + "source_file": "frontend/application/lib/seo.ts", + "source_location": "L1", + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "seo.ts", + "id": "frontend_application_lib_seo" + }, + { + "label": "DEFAULT_SEO_CONFIG", + "file_type": "code", + "source_file": "frontend/application/lib/seo.ts", + "source_location": "L16", + "_origin": "ast", + "community": 71, + "community_name": "getPageMetadata", + "norm_label": "default_seo_config", + "id": "frontend_application_lib_seo_default_seo_config" + }, + { + "label": "06_dev_frontend.md", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L1", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "06_dev_frontend.md", + "node_kind": "page", + "id": "ai_agency_agents_06_dev_frontend" + }, + { + "label": "1. Always Read Tech Stack First", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L119", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. always read tech stack first", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_1_always_read_tech_stack_first" + }, + { + "label": "2. Sub-step Execution (Token Resume Support)", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L131", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. sub-step execution (token resume support)", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_2_sub_step_execution_token_resume_support" + }, + { + "label": "3. API Mocking Requirement", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L141", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. api mocking requirement", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_3_api_mocking_requirement" + }, + { + "label": "4. Modular Component Architecture", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L148", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. modular component architecture", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_4_modular_component_architecture" + }, + { + "label": "5. Responsive Design (Mandatory)", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L157", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. responsive design (mandatory)", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_5_responsive_design_mandatory" + }, + { + "label": "6. File Scope Boundary", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L163", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "6. file scope boundary", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_6_file_scope_boundary" + }, + { + "label": "7. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L167", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "7. forbidden actions", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_7_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L187", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_expected_json_output_schema" + }, + { + "label": "IMPLEMENT MODE \u2014 Normal Operation", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L103", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "implement mode \u2014 normal operation", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_implement_mode_normal_operation" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L117", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries" + }, + { + "label": "Output", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L65", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "output", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_output" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L175", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "\u2605 REVIEW MODE (called during Review Phase)", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L7", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "\u2605 review mode (called during review phase)", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L1", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L107", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_strict_input_specifications_what_files_to_read" + }, + { + "label": "What You DO NOT Review", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L23", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "what you do not review", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_what_you_do_not_review" + }, + { + "label": "What You Look For (Frontend Expert Eyes Only)", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L26", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "what you look for (frontend expert eyes only)", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_what_you_look_for_frontend_expert_eyes_only" + }, + { + "label": "Your Domain \u2014 What You Review (ONLY these areas)", + "file_type": "document", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L11", + "_origin": "ast", + "community": 72, + "community_name": "Operational Rules & Boundaries", + "norm_label": "your domain \u2014 what you review (only these areas)", + "node_kind": "heading", + "id": "ai_agency_agents_06_dev_frontend_your_domain_what_you_review_only_these_areas" + }, + { + "label": "08_visual_qa.md", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L1", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "08_visual_qa.md", + "node_kind": "page", + "id": "ai_agency_agents_08_visual_qa" + }, + { + "label": "1. Framework-Aware Analysis", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L115", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. framework-aware analysis", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_1_framework_aware_analysis" + }, + { + "label": "2. DOM & Semantic Structure Analysis", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L126", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. dom & semantic structure analysis", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_2_dom_semantic_structure_analysis" + }, + { + "label": "3. Accessibility Compliance", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L134", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. accessibility compliance", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_3_accessibility_compliance" + }, + { + "label": "4. Responsive Layout Verification", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L143", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. responsive layout verification", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_4_responsive_layout_verification" + }, + { + "label": "5. Fallback Inspection Mode", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L155", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. fallback inspection mode", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_5_fallback_inspection_mode" + }, + { + "label": "6. Defect Routing Protocol", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L162", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "6. defect routing protocol", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_6_defect_routing_protocol" + }, + { + "label": "7. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L174", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "7. forbidden actions", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_7_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L190", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_expected_json_output_schema" + }, + { + "label": "INSPECT MODE \u2014 Normal Operation (Post-Task Verification)", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L99", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "inspect mode \u2014 normal operation (post-task verification)", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_inspect_mode_normal_operation_post_task_verification" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L113", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_operational_rules_boundaries" + }, + { + "label": "Output", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L63", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "output", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_output" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L182", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "\u2605 REVIEW MODE (called during Review Phase)", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L9", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "\u2605 review mode (called during review phase)", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L1", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L103", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_strict_input_specifications_what_files_to_read" + }, + { + "label": "What You DO NOT Review", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L24", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "what you do not review", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_what_you_do_not_review" + }, + { + "label": "What You Look For (UX Expert Eyes Only)", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L27", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "what you look for (ux expert eyes only)", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_what_you_look_for_ux_expert_eyes_only" + }, + { + "label": "Your Domain \u2014 What You Review (ONLY these areas)", + "file_type": "document", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L13", + "_origin": "ast", + "community": 73, + "community_name": "Operational Rules & Boundaries", + "norm_label": "your domain \u2014 what you review (only these areas)", + "node_kind": "heading", + "id": "ai_agency_agents_08_visual_qa_your_domain_what_you_review_only_these_areas" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": "apibearerauth", + "id": "backend_src_admin_wiki_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": "apioperation", + "id": "backend_src_admin_wiki_controller_ts_apioperation" + }, + { + "label": "ApiQuery", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": "apiquery", + "id": "backend_src_admin_wiki_controller_ts_apiquery" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": "apitags", + "id": "backend_src_admin_wiki_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": "body", + "id": "backend_src_admin_wiki_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": "controller", + "id": "backend_src_admin_wiki_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": "delete", + "id": "backend_src_admin_wiki_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": "get", + "id": "backend_src_admin_wiki_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": "param", + "id": "backend_src_admin_wiki_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": "post", + "id": "backend_src_admin_wiki_controller_ts_post" + }, + { + "label": "Put", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": "put", + "id": "backend_src_admin_wiki_controller_ts_put" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": "query", + "id": "backend_src_admin_wiki_controller_ts_query" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 74, + "community_name": "WikiController", + "norm_label": "useguards", + "id": "backend_src_admin_wiki_controller_ts_useguards" + }, + { + "label": "create-health-log.dto.ts", + "file_type": "code", + "source_file": "backend/src/pets/dto/create-health-log.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "create-health-log.dto.ts", + "id": "backend_src_pets_dto_create_health_log_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "apiproperty", + "id": "backend_src_pets_dto_create_health_log_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "apipropertyoptional", + "id": "backend_src_pets_dto_create_health_log_dto_ts_apipropertyoptional" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "isnotempty", + "id": "backend_src_pets_dto_create_health_log_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "isoptional", + "id": "backend_src_pets_dto_create_health_log_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "isstring", + "id": "backend_src_pets_dto_create_health_log_dto_ts_isstring" + }, + { + "label": "create-reminder.dto.ts", + "file_type": "code", + "source_file": "backend/src/pets/dto/create-reminder.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "create-reminder.dto.ts", + "id": "backend_src_pets_dto_create_reminder_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "apiproperty", + "id": "backend_src_pets_dto_create_reminder_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "apipropertyoptional", + "id": "backend_src_pets_dto_create_reminder_dto_ts_apipropertyoptional" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "isnotempty", + "id": "backend_src_pets_dto_create_reminder_dto_ts_isnotempty" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "isoptional", + "id": "backend_src_pets_dto_create_reminder_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "isstring", + "id": "backend_src_pets_dto_create_reminder_dto_ts_isstring" + }, + { + "label": "ApiBadRequestResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "apibadrequestresponse", + "id": "backend_src_pets_pets_controller_ts_apibadrequestresponse" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "apibearerauth", + "id": "backend_src_pets_pets_controller_ts_apibearerauth" + }, + { + "label": "ApiCreatedResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "apicreatedresponse", + "id": "backend_src_pets_pets_controller_ts_apicreatedresponse" + }, + { + "label": "ApiNotFoundResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "apinotfoundresponse", + "id": "backend_src_pets_pets_controller_ts_apinotfoundresponse" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "apiokresponse", + "id": "backend_src_pets_pets_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "apioperation", + "id": "backend_src_pets_pets_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "apitags", + "id": "backend_src_pets_pets_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "body", + "id": "backend_src_pets_pets_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "controller", + "id": "backend_src_pets_pets_controller_ts_controller" + }, + { + "label": "Delete", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "delete", + "id": "backend_src_pets_pets_controller_ts_delete" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "get", + "id": "backend_src_pets_pets_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "param", + "id": "backend_src_pets_pets_controller_ts_param" + }, + { + "label": "Patch", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "patch", + "id": "backend_src_pets_pets_controller_ts_patch" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "post", + "id": "backend_src_pets_pets_controller_ts_post" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "query", + "id": "backend_src_pets_pets_controller_ts_query" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "req", + "id": "backend_src_pets_pets_controller_ts_req" + }, + { + "label": "UploadedFile", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "uploadedfile", + "id": "backend_src_pets_pets_controller_ts_uploadedfile" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "useguards", + "id": "backend_src_pets_pets_controller_ts_useguards" + }, + { + "label": "UseInterceptors", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 75, + "community_name": "PetsController", + "norm_label": "useinterceptors", + "id": "backend_src_pets_pets_controller_ts_useinterceptors" + }, + { + "label": "ebank-checkout.dto.ts", + "file_type": "code", + "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", + "source_location": "L1", + "_origin": "ast", + "community": 123, + "community_name": "CreateEBankCheckoutDto", + "norm_label": "ebank-checkout.dto.ts", + "id": "backend_src_payment_dto_ebank_checkout_dto" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 123, + "community_name": "CreateEBankCheckoutDto", + "norm_label": "apiproperty", + "id": "backend_src_payment_dto_ebank_checkout_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 123, + "community_name": "CreateEBankCheckoutDto", + "norm_label": "apipropertyoptional", + "id": "backend_src_payment_dto_ebank_checkout_dto_ts_apipropertyoptional" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 123, + "community_name": "CreateEBankCheckoutDto", + "norm_label": "isnotempty", + "id": "backend_src_payment_dto_ebank_checkout_dto_ts_isnotempty" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 123, + "community_name": "CreateEBankCheckoutDto", + "norm_label": "isnumber", + "id": "backend_src_payment_dto_ebank_checkout_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 123, + "community_name": "CreateEBankCheckoutDto", + "norm_label": "isoptional", + "id": "backend_src_payment_dto_ebank_checkout_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 123, + "community_name": "CreateEBankCheckoutDto", + "norm_label": "isstring", + "id": "backend_src_payment_dto_ebank_checkout_dto_ts_isstring" + }, + { + "label": "Min", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 123, + "community_name": "CreateEBankCheckoutDto", + "norm_label": "min", + "id": "backend_src_payment_dto_ebank_checkout_dto_ts_min" + }, + { + "label": "seo.controller.ts", + "file_type": "code", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": "seo.controller.ts", + "id": "backend_src_seo_seo_controller" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": "apioperation", + "id": "backend_src_seo_seo_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": "apitags", + "id": "backend_src_seo_seo_controller_ts_apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": "controller", + "id": "backend_src_seo_seo_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": "get", + "id": "backend_src_seo_seo_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": "param", + "id": "backend_src_seo_seo_controller_ts_param" + }, + { + "label": "seo.module.ts", + "file_type": "code", + "source_file": "backend/src/seo/seo.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": "seo.module.ts", + "id": "backend_src_seo_seo_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": "module", + "id": "backend_src_seo_seo_module_ts_module" + }, + { + "label": "seo.service.ts", + "file_type": "code", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": "seo.service.ts", + "id": "backend_src_seo_seo_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 77, + "community_name": "seo.module.ts", + "norm_label": "injectable", + "id": "backend_src_seo_seo_service_ts_injectable" + }, + { + "label": "rss.xml/route.ts", + "file_type": "code", + "source_file": "frontend/application/app/blog/rss.xml/route.ts", + "source_location": "L1", + "_origin": "ast", + "community": 78, + "community_name": "route.ts", + "norm_label": "rss.xml/route.ts", + "id": "frontend_application_app_blog_rss_xml_route" + }, + { + "label": "dynamic", + "file_type": "code", + "source_file": "frontend/application/app/blog/rss.xml/route.ts", + "source_location": "L3", + "_origin": "ast", + "community": 78, + "community_name": "route.ts", + "norm_label": "dynamic", + "id": "frontend_application_app_blog_rss_xml_route_dynamic" + }, + { + "label": "AGENCY.md", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L1", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "agency.md", + "node_kind": "page", + "id": "ai_agency_agency" + }, + { + "label": "Activation", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L12", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "activation", + "node_kind": "heading", + "id": "ai_agency_agency_activation" + }, + { + "label": "Agent Directory Reference", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L239", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "agent directory reference", + "node_kind": "heading", + "id": "ai_agency_agency_agent_directory_reference" + }, + { + "label": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L1", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "\ud83c\udfe2 ai software agency \u2014 master orchestration protocol v3", + "node_kind": "heading", + "id": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3" + }, + { + "label": "Phase 1: Specialist Review (All agents read, none write code yet)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L79", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "phase 1: specialist review (all agents read, none write code yet)", + "node_kind": "heading", + "id": "ai_agency_agency_phase_1_specialist_review_all_agents_read_none_write_code_yet" + }, + { + "label": "Phase 2: Master Synthesis (02_product_manager in SYNTHESIS mode)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L104", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "phase 2: master synthesis (02_product_manager in synthesis mode)", + "node_kind": "heading", + "id": "ai_agency_agency_phase_2_master_synthesis_02_product_manager_in_synthesis_mode" + }, + { + "label": "Phase 3: Execution (Same as always)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L114", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "phase 3: execution (same as always)", + "node_kind": "heading", + "id": "ai_agency_agency_phase_3_execution_same_as_always" + }, + { + "label": "PIPELINE A \u2014 New Project (GREENFIELD)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L67", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "pipeline a \u2014 new project (greenfield)", + "node_kind": "heading", + "id": "ai_agency_agency_pipeline_a_new_project_greenfield" + }, + { + "label": "PIPELINE B \u2014 Review & Improve Existing Project (REVIEW_AND_PLAN) \u2605", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L75", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "pipeline b \u2014 review & improve existing project (review_and_plan) \u2605", + "node_kind": "heading", + "id": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan" + }, + { + "label": "PIPELINE C \u2014 Add Specific Feature (ADD_FEATURE)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L121", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "pipeline c \u2014 add specific feature (add_feature)", + "node_kind": "heading", + "id": "ai_agency_agency_pipeline_c_add_specific_feature_add_feature" + }, + { + "label": "PIPELINE D \u2014 Content & SEO Only (CONTENT_CREATION)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L133", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "pipeline d \u2014 content & seo only (content_creation)", + "node_kind": "heading", + "id": "ai_agency_agency_pipeline_d_content_seo_only_content_creation" + }, + { + "label": "Real Data Policy", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L259", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "real data policy", + "node_kind": "heading", + "id": "ai_agency_agency_real_data_policy" + }, + { + "label": "State.json Template (Full Schema v3)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L192", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "state.json template (full schema v3)", + "node_kind": "heading", + "id": "ai_agency_agency_state_json_template_full_schema_v3" + }, + { + "label": "State Machine \u2014 Active Agent Tracking", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L182", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "state machine \u2014 active agent tracking", + "node_kind": "heading", + "id": "ai_agency_agency_state_machine_active_agent_tracking" + }, + { + "label": "STEP 1 \u2014 Detect Project Intent", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L25", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "step 1 \u2014 detect project intent", + "node_kind": "heading", + "id": "ai_agency_agency_step_1_detect_project_intent" + }, + { + "label": "STEP 2 \u2014 Token Limit / Context Resume Protocol (CRITICAL)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L41", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "step 2 \u2014 token limit / context resume protocol (critical)", + "node_kind": "heading", + "id": "ai_agency_agency_step_2_token_limit_context_resume_protocol_critical" + }, + { + "label": "TASK EXECUTION LOOP (All Pipelines)", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L144", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "task execution loop (all pipelines)", + "node_kind": "heading", + "id": "ai_agency_agency_task_execution_loop_all_pipelines" + }, + { + "label": "Your Identity", + "file_type": "document", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L3", + "_origin": "ast", + "community": 79, + "community_name": "\ud83c\udfe2 AI Software Agency \u2014 Master Orchestration Protocol v3", + "norm_label": "your identity", + "node_kind": "heading", + "id": "ai_agency_agency_your_identity" + }, + { + "label": "admin.module.ts", + "file_type": "code", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L1", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "admin.module.ts", + "id": "backend_src_admin_admin_module" + }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "module", + "id": "backend_src_admin_admin_module_ts_module" + }, + { + "label": "media.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "media.controller.ts", + "id": "backend_src_admin_media_controller" + }, + { + "label": "media.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "media.service.ts", + "id": "backend_src_admin_media_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 40, + "community_name": "MediaController", + "norm_label": "injectable", + "id": "backend_src_admin_media_service_ts_injectable" + }, + { + "label": "reports.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 8, + "community_name": "ReportsController", + "norm_label": "reports.controller.ts", + "id": "backend_src_admin_reports_controller" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "ReportsController", + "norm_label": "apibearerauth", + "id": "backend_src_admin_reports_controller_ts_apibearerauth" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "ReportsController", + "norm_label": "apioperation", + "id": "backend_src_admin_reports_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "ReportsController", + "norm_label": "apitags", + "id": "backend_src_admin_reports_controller_ts_apitags" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "ReportsController", + "norm_label": "controller", + "id": "backend_src_admin_reports_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "ReportsController", + "norm_label": "get", + "id": "backend_src_admin_reports_controller_ts_get" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "ReportsController", + "norm_label": "useguards", + "id": "backend_src_admin_reports_controller_ts_useguards" + }, + { + "label": "reports.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 108, + "community_name": "PrismaService", + "norm_label": "reports.service.ts", + "id": "backend_src_admin_reports_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 8, + "community_name": "ReportsController", + "norm_label": "injectable", + "id": "backend_src_admin_reports_service_ts_injectable" + }, + { + "label": "ssl.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "ssl.service.ts", + "id": "backend_src_admin_ssl_service" + }, + { + "label": "admin/wiki.controller.ts", + "file_type": "code", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L1", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "admin/wiki.controller.ts", + "id": "backend_src_admin_wiki_controller" + }, + { + "label": "admin/wiki.service.ts", + "file_type": "code", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "admin/wiki.service.ts", + "id": "backend_src_admin_wiki_service" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 67, + "community_name": "admin.module.ts", + "norm_label": "injectable", + "id": "backend_src_admin_wiki_service_ts_injectable" + }, + { + "label": "03_product_manager.md", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L1", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "03_product_manager.md", + "node_kind": "page", + "id": "ai_agency_agents_03_product_manager" + }, + { + "label": "1. Hierarchical Decomposition Algorithm (3-Tier)", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L86", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. hierarchical decomposition algorithm (3-tier)", + "node_kind": "heading", + "id": "ai_agency_agents_03_product_manager_1_hierarchical_decomposition_algorithm_3_tier" + }, + { + "label": "2. Sub-step Definition (Required for all tasks)", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L98", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. sub-step definition (required for all tasks)", + "node_kind": "heading", + "id": "ai_agency_agents_03_product_manager_2_sub_step_definition_required_for_all_tasks" + }, + { + "label": "3. Brownfield Completeness Rule", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L110", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. brownfield completeness rule", + "node_kind": "heading", + "id": "ai_agency_agents_03_product_manager_3_brownfield_completeness_rule" + }, + { + "label": "4. Role Assignment Rules", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L116", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. role assignment rules", + "node_kind": "heading", + "id": "ai_agency_agents_03_product_manager_4_role_assignment_rules" + }, + { + "label": "5. Dependency Tracking (Strict)", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L126", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. dependency tracking (strict)", + "node_kind": "heading", + "id": "ai_agency_agents_03_product_manager_5_dependency_tracking_strict" + }, + { + "label": "6. Priority Assignment", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L132", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "6. priority assignment", + "node_kind": "heading", + "id": "ai_agency_agents_03_product_manager_6_priority_assignment" + }, + { + "label": "7. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L140", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "7. forbidden actions", + "node_kind": "heading", + "id": "ai_agency_agents_03_product_manager_7_forbidden_actions" + }, + { + "label": "DECOMPOSE MODE \u2014 Normal Operation (New Projects)", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L72", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "decompose mode \u2014 normal operation (new projects)", + "node_kind": "heading", + "id": "ai_agency_agents_03_product_manager_decompose_mode_normal_operation_new_projects" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L194", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "node_kind": "heading", + "id": "ai_agency_agents_03_product_manager_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L84", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "node_kind": "heading", + "id": "ai_agency_agents_03_product_manager_operational_rules_boundaries" + }, + { + "label": "Output of Synthesis Mode", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L62", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "output of synthesis mode", + "node_kind": "heading", + "id": "ai_agency_agents_03_product_manager_output_of_synthesis_mode" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L149", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "node_kind": "heading", + "id": "ai_agency_agents_03_product_manager_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L1", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "node_kind": "heading", + "id": "ai_agency_agents_03_product_manager_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L74", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "node_kind": "heading", + "id": "ai_agency_agents_03_product_manager_strict_input_specifications_what_files_to_read" + }, + { + "label": "\u2605 SYNTHESIS MODE (called after Review Phase completes)", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L7", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "\u2605 synthesis mode (called after review phase completes)", + "node_kind": "heading", + "id": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes" + }, + { + "label": "Synthesis Rules", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L23", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "synthesis rules", + "node_kind": "heading", + "id": "ai_agency_agents_03_product_manager_synthesis_rules" + }, + { + "label": "What You Read (ALL of these \u2014 the full picture)", + "file_type": "document", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L11", + "_origin": "ast", + "community": 80, + "community_name": "Operational Rules & Boundaries", + "norm_label": "what you read (all of these \u2014 the full picture)", + "node_kind": "heading", + "id": "ai_agency_agents_03_product_manager_what_you_read_all_of_these_the_full_picture" + }, + { + "label": "05_dev_backend.md", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L1", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "05_dev_backend.md", + "node_kind": "page", + "id": "ai_agency_agents_05_dev_backend" + }, + { + "label": "1. Always Read Tech Stack First", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L110", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "1. always read tech stack first", + "node_kind": "heading", + "id": "ai_agency_agents_05_dev_backend_1_always_read_tech_stack_first" + }, + { + "label": "2. Sub-step Execution (Token Resume Support)", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L121", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "2. sub-step execution (token resume support)", + "node_kind": "heading", + "id": "ai_agency_agents_05_dev_backend_2_sub_step_execution_token_resume_support" + }, + { + "label": "3. Mandatory Test Authoring", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L131", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "3. mandatory test authoring", + "node_kind": "heading", + "id": "ai_agency_agents_05_dev_backend_3_mandatory_test_authoring" + }, + { + "label": "4. Code Quality Standards", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L138", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "4. code quality standards", + "node_kind": "heading", + "id": "ai_agency_agents_05_dev_backend_4_code_quality_standards" + }, + { + "label": "5. File Scope Boundary", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L146", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "5. file scope boundary", + "node_kind": "heading", + "id": "ai_agency_agents_05_dev_backend_5_file_scope_boundary" + }, + { + "label": "6. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L151", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "6. forbidden actions", + "node_kind": "heading", + "id": "ai_agency_agents_05_dev_backend_6_forbidden_actions" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L172", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "expected json output schema", + "node_kind": "heading", + "id": "ai_agency_agents_05_dev_backend_expected_json_output_schema" + }, + { + "label": "IMPLEMENT MODE \u2014 Normal Operation", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L94", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "implement mode \u2014 normal operation", + "node_kind": "heading", + "id": "ai_agency_agents_05_dev_backend_implement_mode_normal_operation" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L108", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "operational rules & boundaries", + "node_kind": "heading", + "id": "ai_agency_agents_05_dev_backend_operational_rules_boundaries" + }, + { + "label": "Output", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L60", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "output", + "node_kind": "heading", + "id": "ai_agency_agents_05_dev_backend_output" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L160", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "required output artifacts (what files to write/update)", + "node_kind": "heading", + "id": "ai_agency_agents_05_dev_backend_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "\u2605 REVIEW MODE (called during Review Phase)", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L7", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "\u2605 review mode (called during review phase)", + "node_kind": "heading", + "id": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L1", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "role & core objective", + "node_kind": "heading", + "id": "ai_agency_agents_05_dev_backend_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L98", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "strict input specifications (what files to read)", + "node_kind": "heading", + "id": "ai_agency_agents_05_dev_backend_strict_input_specifications_what_files_to_read" + }, + { + "label": "What You DO NOT Review", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L23", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "what you do not review", + "node_kind": "heading", + "id": "ai_agency_agents_05_dev_backend_what_you_do_not_review" + }, + { + "label": "What You Look For (Backend Expert Eyes Only)", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L26", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "what you look for (backend expert eyes only)", + "node_kind": "heading", + "id": "ai_agency_agents_05_dev_backend_what_you_look_for_backend_expert_eyes_only" + }, + { + "label": "Your Domain \u2014 What You Review (ONLY these areas)", + "file_type": "document", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L11", + "_origin": "ast", + "community": 81, + "community_name": "Operational Rules & Boundaries", + "norm_label": "your domain \u2014 what you review (only these areas)", + "node_kind": "heading", + "id": "ai_agency_agents_05_dev_backend_your_domain_what_you_review_only_these_areas" + }, + { + "label": "package.json", + "file_type": "code", + "source_file": "package.json", + "source_location": "L1", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "package.json", + "id": "package" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "package.json", + "source_location": "L17", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "devdependencies", + "id": "package_devdependencies" + }, + { + "label": "concurrently", + "file_type": "code", + "source_file": "package.json", + "source_location": "L18", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "concurrently", + "id": "package_devdependencies_concurrently" + }, + { + "label": "dotenv", + "file_type": "code", + "source_file": "package.json", + "source_location": "L23", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "dotenv", + "id": "package_devdependencies_dotenv" + }, + { + "label": "@playwright/test", + "file_type": "code", + "source_file": "package.json", + "source_location": "L21", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "@playwright/test", + "id": "package_devdependencies_playwright_test" + }, + { + "label": "name", + "file_type": "code", + "source_file": "package.json", + "source_location": "L2", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "name", + "id": "package_name" + }, + { + "label": "private", + "file_type": "code", + "source_file": "package.json", + "source_location": "L4", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "private", + "id": "package_private" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "package.json", + "source_location": "L5", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "scripts", + "id": "package_scripts" + }, + { + "label": "build", + "file_type": "code", + "source_file": "package.json", + "source_location": "L14", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "build", + "id": "package_scripts_build" + }, + { + "label": "build:admin", + "file_type": "code", + "source_file": "package.json", + "source_location": "L13", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "build:admin", + "id": "package_scripts_build_admin" + }, + { + "label": "build:backend", + "file_type": "code", + "source_file": "package.json", + "source_location": "L11", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "build:backend", + "id": "package_scripts_build_backend" + }, + { + "label": "build:frontend", + "file_type": "code", + "source_file": "package.json", + "source_location": "L12", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "build:frontend", + "id": "package_scripts_build_frontend" + }, + { + "label": "dev", + "file_type": "code", + "source_file": "package.json", + "source_location": "L10", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "dev", + "id": "package_scripts_dev" + }, + { + "label": "dev:admin", + "file_type": "code", + "source_file": "package.json", + "source_location": "L9", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "dev:admin", + "id": "package_scripts_dev_admin" + }, + { + "label": "dev:backend", + "file_type": "code", + "source_file": "package.json", + "source_location": "L7", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "dev:backend", + "id": "package_scripts_dev_backend" + }, + { + "label": "dev:frontend", + "file_type": "code", + "source_file": "package.json", + "source_location": "L8", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "dev:frontend", + "id": "package_scripts_dev_frontend" + }, + { + "label": "install:all", + "file_type": "code", + "source_file": "package.json", + "source_location": "L6", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "install:all", + "id": "package_scripts_install_all" + }, + { + "label": "start", + "file_type": "code", + "source_file": "package.json", + "source_location": "L15", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "start", + "id": "package_scripts_start" + }, + { + "label": "test:e2e", + "file_type": "code", + "source_file": "package.json", + "source_location": "L16", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "test:e2e", + "id": "package_scripts_test_e2e" + }, + { + "label": "test:e2e:report", + "file_type": "code", + "source_file": "package.json", + "source_location": "L18", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "test:e2e:report", + "id": "package_scripts_test_e2e_report" + }, + { + "label": "test:e2e:ui", + "file_type": "code", + "source_file": "package.json", + "source_location": "L17", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "test:e2e:ui", + "id": "package_scripts_test_e2e_ui" + }, + { + "label": "version", + "file_type": "code", + "source_file": "package.json", + "source_location": "L3", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "version", + "id": "package_version" + }, + { + "label": "concurrently", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L18", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "concurrently", + "id": "concurrently" + }, + { + "label": "dotenv", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L23", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "dotenv", + "id": "dotenv" + }, + { + "label": "@playwright/test", + "file_type": "concept", + "source_file": "package.json", + "source_location": "L21", + "_origin": "ast", + "community": 82, + "community_name": "scripts", + "norm_label": "@playwright/test", + "id": "playwright_test" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L12", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "dependencies", + "id": "frontend_admin_panel_package_dependencies" + }, + { + "label": "axios", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L14", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "axios", + "id": "frontend_admin_panel_package_dependencies_axios" + }, + { + "label": "lucide-react", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L15", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "lucide-react", + "id": "frontend_admin_panel_package_dependencies_lucide_react" + }, + { + "label": "react", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L16", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "react", + "id": "frontend_admin_panel_package_dependencies_react" + }, + { + "label": "react-dom", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L17", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "react-dom", + "id": "frontend_admin_panel_package_dependencies_react_dom" + }, + { + "label": "react-hot-toast", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L18", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "react-hot-toast", + "id": "frontend_admin_panel_package_dependencies_react_hot_toast" + }, + { + "label": "react-router-dom", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L19", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "react-router-dom", + "id": "frontend_admin_panel_package_dependencies_react_router_dom" + }, + { + "label": "recharts", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L20", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "recharts", + "id": "frontend_admin_panel_package_dependencies_recharts" + }, + { + "label": "@tanstack/react-query", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L13", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "@tanstack/react-query", + "id": "frontend_admin_panel_package_dependencies_tanstack_react_query" + }, + { + "label": "vite", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L21", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "vite", + "id": "frontend_admin_panel_package_dependencies_vite" + }, + { + "label": "zustand", + "file_type": "code", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L22", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "zustand", + "id": "frontend_admin_panel_package_dependencies_zustand" + }, + { + "label": "axios", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L14", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "axios", + "id": "frontend_admin_panel_package_json_axios" + }, + { + "label": "lucide-react", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L15", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "lucide-react", + "id": "frontend_admin_panel_package_json_lucide_react" + }, + { + "label": "react", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L16", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "react", + "id": "frontend_admin_panel_package_json_react" + }, + { + "label": "react-dom", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L17", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "react-dom", + "id": "frontend_admin_panel_package_json_react_dom" + }, + { + "label": "zustand", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L22", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "zustand", + "id": "frontend_admin_panel_package_json_zustand" + }, + { + "label": "react-hot-toast", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L18", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "react-hot-toast", + "id": "react_hot_toast" + }, + { + "label": "react-router-dom", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L19", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "react-router-dom", + "id": "react_router_dom" + }, + { + "label": "recharts", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L20", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "recharts", + "id": "recharts" + }, + { + "label": "@tanstack/react-query", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L13", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "@tanstack/react-query", + "id": "tanstack_react_query" + }, + { + "label": "vite", + "file_type": "concept", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L21", + "_origin": "ast", + "community": 83, + "community_name": "dependencies", + "norm_label": "vite", + "id": "vite" + }, + { + "label": "09_devops_security.md", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L1", + "_origin": "ast", + "community": 84, + "community_name": "Role & Core Objective", + "norm_label": "09_devops_security.md", + "node_kind": "page", + "id": "ai_agency_agents_09_devops_security" + }, + { + "label": "1. Active Secret Scanning (All Modified Files)", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L108", + "_origin": "ast", + "community": 84, + "community_name": "Role & Core Objective", + "norm_label": "1. active secret scanning (all modified files)", + "node_kind": "heading", + "id": "ai_agency_agents_09_devops_security_1_active_secret_scanning_all_modified_files" + }, + { + "label": "2. Docker Container Verification (if Dockerfile exists)", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L120", + "_origin": "ast", + "community": 84, + "community_name": "Role & Core Objective", + "norm_label": "2. docker container verification (if dockerfile exists)", + "node_kind": "heading", + "id": "ai_agency_agents_09_devops_security_2_docker_container_verification_if_dockerfile_exists" + }, + { + "label": "3. CI/CD Basic Check (if `.github/workflows/` exists)", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L133", + "_origin": "ast", + "community": 84, + "community_name": "Role & Core Objective", + "norm_label": "3. ci/cd basic check (if `.github/workflows/` exists)", + "node_kind": "heading", + "id": "ai_agency_agents_09_devops_security_3_ci_cd_basic_check_if_github_workflows_exists" + }, + { + "label": "4. Failure Routing Protocol", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L138", + "_origin": "ast", + "community": 84, + "community_name": "Role & Core Objective", + "norm_label": "4. failure routing protocol", + "node_kind": "heading", + "id": "ai_agency_agents_09_devops_security_4_failure_routing_protocol" + }, + { + "label": "5. Forbidden Actions", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L150", + "_origin": "ast", + "community": 84, + "community_name": "Role & Core Objective", + "norm_label": "5. forbidden actions", + "node_kind": "heading", + "id": "ai_agency_agents_09_devops_security_5_forbidden_actions" + }, + { + "label": "ENFORCE MODE \u2014 Normal Operation", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L93", + "_origin": "ast", + "community": 84, + "community_name": "Role & Core Objective", + "norm_label": "enforce mode \u2014 normal operation", + "node_kind": "heading", + "id": "ai_agency_agents_09_devops_security_enforce_mode_normal_operation" + }, + { + "label": "Expected JSON Output Schema", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L168", + "_origin": "ast", + "community": 84, + "community_name": "Role & Core Objective", + "norm_label": "expected json output schema", + "node_kind": "heading", + "id": "ai_agency_agents_09_devops_security_expected_json_output_schema" + }, + { + "label": "Operational Rules & Boundaries", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L106", + "_origin": "ast", + "community": 84, + "community_name": "Role & Core Objective", + "norm_label": "operational rules & boundaries", + "node_kind": "heading", + "id": "ai_agency_agents_09_devops_security_operational_rules_boundaries" + }, + { + "label": "Output", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L58", + "_origin": "ast", + "community": 84, + "community_name": "Role & Core Objective", + "norm_label": "output", + "node_kind": "heading", + "id": "ai_agency_agents_09_devops_security_output" + }, + { + "label": "Required Output Artifacts (What files to write/update)", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L158", + "_origin": "ast", + "community": 84, + "community_name": "Role & Core Objective", + "norm_label": "required output artifacts (what files to write/update)", + "node_kind": "heading", + "id": "ai_agency_agents_09_devops_security_required_output_artifacts_what_files_to_write_update" + }, + { + "label": "\u2605 REVIEW MODE (called during Review Phase)", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L7", + "_origin": "ast", + "community": 84, + "community_name": "Role & Core Objective", + "norm_label": "\u2605 review mode (called during review phase)", + "node_kind": "heading", + "id": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase" + }, + { + "label": "Role & Core Objective", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L1", + "_origin": "ast", + "community": 84, + "community_name": "Role & Core Objective", + "norm_label": "role & core objective", + "node_kind": "heading", + "id": "ai_agency_agents_09_devops_security_role_core_objective" + }, + { + "label": "Strict Input Specifications (What files to read)", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L97", + "_origin": "ast", + "community": 84, + "community_name": "Role & Core Objective", + "norm_label": "strict input specifications (what files to read)", + "node_kind": "heading", + "id": "ai_agency_agents_09_devops_security_strict_input_specifications_what_files_to_read" + }, + { + "label": "What You DO NOT Review", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L23", + "_origin": "ast", + "community": 84, + "community_name": "Role & Core Objective", + "norm_label": "what you do not review", + "node_kind": "heading", + "id": "ai_agency_agents_09_devops_security_what_you_do_not_review" + }, + { + "label": "What You Look For (Security Expert Eyes Only)", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L26", + "_origin": "ast", + "community": 84, + "community_name": "Role & Core Objective", + "norm_label": "what you look for (security expert eyes only)", + "node_kind": "heading", + "id": "ai_agency_agents_09_devops_security_what_you_look_for_security_expert_eyes_only" + }, + { + "label": "Your Domain \u2014 What You Review (ONLY these areas)", + "file_type": "document", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L11", + "_origin": "ast", + "community": 84, + "community_name": "Role & Core Objective", + "norm_label": "your domain \u2014 what you review (only these areas)", + "node_kind": "heading", + "id": "ai_agency_agents_09_devops_security_your_domain_what_you_review_only_these_areas" + }, + { + "label": "eslint-config-prettier", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L64", + "_origin": "ast", + "community": 85, + "community_name": "eslint-config-prettier", + "norm_label": "eslint-config-prettier", + "id": "backend_package_devdependencies_eslint_config_prettier" + }, + { + "label": "eslint-config-prettier", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L64", + "_origin": "ast", + "community": 85, + "community_name": "eslint-config-prettier", + "norm_label": "eslint-config-prettier", + "id": "eslint_config_prettier" + }, + { + "label": "payment-gateway.interface.ts", + "file_type": "code", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L1", + "_origin": "ast", + "community": 86, + "community_name": "zibal.service.ts", + "norm_label": "payment-gateway.interface.ts", + "id": "backend_src_payment_interfaces_payment_gateway_interface" + }, + { + "label": "zibal.service.ts", + "file_type": "code", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L1", + "_origin": "ast", + "community": 86, + "community_name": "zibal.service.ts", + "norm_label": "zibal.service.ts", + "id": "backend_src_payment_zibal_service" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L11", + "_origin": "ast", + "community": 87, + "community_name": "dependencies", + "norm_label": "dependencies", + "id": "frontend_application_package_dependencies" + }, + { + "label": "axios", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L12", + "_origin": "ast", + "community": 87, + "community_name": "dependencies", + "norm_label": "axios", + "id": "frontend_application_package_dependencies_axios" + }, + { + "label": "lucide-react", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L13", + "_origin": "ast", + "community": 87, + "community_name": "dependencies", + "norm_label": "lucide-react", + "id": "frontend_application_package_dependencies_lucide_react" + }, + { + "label": "motion", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L14", + "_origin": "ast", + "community": 87, + "community_name": "dependencies", + "norm_label": "motion", + "id": "frontend_application_package_dependencies_motion" + }, + { + "label": "next", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L15", + "_origin": "ast", + "community": 87, + "community_name": "dependencies", + "norm_label": "next", + "id": "frontend_application_package_dependencies_next" + }, + { + "label": "react", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L16", + "_origin": "ast", + "community": 87, + "community_name": "dependencies", + "norm_label": "react", + "id": "frontend_application_package_dependencies_react" + }, + { + "label": "react-dom", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L17", + "_origin": "ast", + "community": 87, + "community_name": "dependencies", + "norm_label": "react-dom", + "id": "frontend_application_package_dependencies_react_dom" + }, + { + "label": "sonner", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L18", + "_origin": "ast", + "community": 87, + "community_name": "dependencies", + "norm_label": "sonner", + "id": "frontend_application_package_dependencies_sonner" + }, + { + "label": "zustand", + "file_type": "code", + "source_file": "frontend/application/package.json", + "source_location": "L19", + "_origin": "ast", + "community": 87, + "community_name": "dependencies", + "norm_label": "zustand", + "id": "frontend_application_package_dependencies_zustand" + }, + { + "label": "axios", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L12", + "_origin": "ast", + "community": 87, + "community_name": "dependencies", + "norm_label": "axios", + "id": "frontend_application_package_json_axios" + }, + { + "label": "lucide-react", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L13", + "_origin": "ast", + "community": 87, + "community_name": "dependencies", + "norm_label": "lucide-react", + "id": "frontend_application_package_json_lucide_react" + }, + { + "label": "react", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L16", + "_origin": "ast", + "community": 87, + "community_name": "dependencies", + "norm_label": "react", + "id": "frontend_application_package_json_react" + }, + { + "label": "react-dom", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L17", + "_origin": "ast", + "community": 87, + "community_name": "dependencies", + "norm_label": "react-dom", + "id": "frontend_application_package_json_react_dom" + }, + { + "label": "zustand", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L19", + "_origin": "ast", + "community": 87, + "community_name": "dependencies", + "norm_label": "zustand", + "id": "frontend_application_package_json_zustand" + }, + { + "label": "motion", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L14", + "_origin": "ast", + "community": 87, + "community_name": "dependencies", + "norm_label": "motion", + "id": "motion" + }, + { + "label": "next", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L15", + "_origin": "ast", + "community": 87, + "community_name": "dependencies", + "norm_label": "next", + "id": "next" + }, + { + "label": "sonner", + "file_type": "concept", + "source_file": "frontend/application/package.json", + "source_location": "L18", + "_origin": "ast", + "community": 87, + "community_name": "dependencies", + "norm_label": "sonner", + "id": "sonner" + }, + { + "label": "shop/[slug]/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 95, + "community_name": "blog/[slug]/page.tsx", + "norm_label": "shop/[slug]/page.tsx", + "id": "frontend_application_app_shop_slug_page" + }, + { + "label": "revalidate", + "file_type": "code", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L7", + "_origin": "ast", + "community": 95, + "community_name": "blog/[slug]/page.tsx", + "norm_label": "revalidate", + "id": "frontend_application_app_shop_slug_page_revalidate" + }, + { + "label": "PodcastInlinePlayer.tsx", + "file_type": "code", + "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "podcastinlineplayer.tsx", + "id": "frontend_application_components_podcastinlineplayer" + }, + { + "label": "PLAYBACK_RATES", + "file_type": "code", + "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", + "source_location": "L30", + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "playback_rates", + "id": "frontend_application_components_podcastinlineplayer_playback_rates" + }, + { + "label": "ProductPage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "productpage.tsx", + "id": "frontend_application_components_productpage" + }, + { + "label": "ICON_MAP", + "file_type": "code", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L34", + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "icon_map", + "id": "frontend_application_components_productpage_icon_map" + }, + { + "label": "ProductReviews", + "file_type": "code", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L74", + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "productreviews", + "id": "frontend_application_components_productpage_productreviews" + }, + { + "label": "useCalculatorStore", + "file_type": "code", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L61", + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "usecalculatorstore", + "id": "frontend_application_components_productpage_usecalculatorstore" + }, + { + "label": "ProductReviews.tsx", + "file_type": "code", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "productreviews.tsx", + "id": "frontend_application_components_productreviews" + }, + { + "label": "Tooltip.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "tooltip.test.tsx", + "id": "frontend_application_components_tests_tooltip_test" + }, + { + "label": "Tooltip.tsx", + "file_type": "code", + "source_file": "frontend/application/components/Tooltip.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "tooltip.tsx", + "id": "frontend_application_components_tooltip" + }, + { + "label": "data/scientificTerms.ts", + "file_type": "code", + "source_file": "frontend/application/lib/data/scientificTerms.ts", + "source_location": "L1", + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "data/scientificterms.ts", + "id": "frontend_application_lib_data_scientificterms" + }, + { + "label": "SCIENTIFIC_TERMS", + "file_type": "code", + "source_file": "frontend/application/lib/data/scientificTerms.ts", + "source_location": "L7", + "_origin": "ast", + "community": 21, + "community_name": "ProductPage.tsx", + "norm_label": "scientific_terms", + "id": "frontend_application_lib_data_scientificterms_scientific_terms" + }, + { + "label": "seed.ts", + "file_type": "code", + "source_file": "backend/prisma/seed.ts", + "source_location": "L1", + "_origin": "ast", + "community": 89, + "community_name": "seed-products.ts", + "norm_label": "seed.ts", + "id": "backend_prisma_seed" + }, + { + "label": "seed-home.ts", + "file_type": "code", + "source_file": "backend/prisma/seed-home.ts", + "source_location": "L1", + "_origin": "ast", + "community": 89, + "community_name": "seed-products.ts", + "norm_label": "seed-home.ts", + "id": "backend_prisma_seed_home" + }, + { + "label": "prisma", + "file_type": "code", + "source_file": "backend/prisma/seed-home.ts", + "source_location": "L3", + "_origin": "ast", + "community": 89, + "community_name": "seed-products.ts", + "norm_label": "prisma", + "id": "backend_prisma_seed_home_prisma" + }, + { + "label": "prisma", + "file_type": "code", + "source_file": "backend/prisma/seed.ts", + "source_location": "L9", + "_origin": "ast", + "community": 89, + "community_name": "seed-products.ts", + "norm_label": "prisma", + "id": "backend_prisma_seed_prisma" + }, + { + "label": "seed-products.ts", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L1", + "_origin": "ast", + "community": 89, + "community_name": "seed-products.ts", + "norm_label": "seed-products.ts", + "id": "backend_prisma_seed_products" + }, + { + "label": "prisma", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L5", + "_origin": "ast", + "community": 89, + "community_name": "seed-products.ts", + "norm_label": "prisma", + "id": "backend_prisma_seed_products_prisma" + }, + { + "label": "PRODUCT_SYMPTOMS_MAP", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L148", + "_origin": "ast", + "community": 89, + "community_name": "seed-products.ts", + "norm_label": "product_symptoms_map", + "id": "backend_prisma_seed_products_product_symptoms_map" + }, + { + "label": "PRODUCT_TAGLINES_MAP", + "file_type": "code", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L208", + "_origin": "ast", + "community": 89, + "community_name": "seed-products.ts", + "norm_label": "product_taglines_map", + "id": "backend_prisma_seed_products_product_taglines_map" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L47", + "_origin": "ast", + "community": 9, + "community_name": "devDependencies", + "norm_label": "devdependencies", + "id": "backend_package_devdependencies" + }, + { + "label": "eslint", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L63", + "_origin": "ast", + "community": 9, + "community_name": "devDependencies", + "norm_label": "eslint", + "id": "backend_package_devdependencies_eslint" + }, + { + "label": "@eslint/eslintrc", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L48", + "_origin": "ast", + "community": 231, + "community_name": "@eslint/eslintrc", + "norm_label": "@eslint/eslintrc", + "id": "backend_package_devdependencies_eslint_eslintrc" + }, + { + "label": "eslint-plugin-prettier", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L65", + "_origin": "ast", + "community": 233, + "community_name": "eslint-plugin-prettier", + "norm_label": "eslint-plugin-prettier", + "id": "backend_package_devdependencies_eslint_plugin_prettier" + }, + { + "label": "globals", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L66", + "_origin": "ast", + "community": 306, + "community_name": "globals", + "norm_label": "globals", + "id": "backend_package_devdependencies_globals" + }, + { + "label": "@nestjs/cli", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L50", + "_origin": "ast", + "community": 235, + "community_name": "@nestjs/cli", + "norm_label": "@nestjs/cli", + "id": "backend_package_devdependencies_nestjs_cli" + }, + { + "label": "@nestjs/testing", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L52", + "_origin": "ast", + "community": 236, + "community_name": "@nestjs/testing", + "norm_label": "@nestjs/testing", + "id": "backend_package_devdependencies_nestjs_testing" + }, + { + "label": "prettier", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L68", + "_origin": "ast", + "community": 97, + "community_name": "prettier", + "norm_label": "prettier", + "id": "backend_package_devdependencies_prettier" + }, + { + "label": "ts-jest", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L72", + "_origin": "ast", + "community": 316, + "community_name": "ts-jest", + "norm_label": "ts-jest", + "id": "backend_package_devdependencies_ts_jest" + }, + { + "label": "@types/bcryptjs", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L54", + "_origin": "ast", + "community": 9, + "community_name": "devDependencies", + "norm_label": "@types/bcryptjs", + "id": "backend_package_devdependencies_types_bcryptjs" + }, + { + "label": "@types/js-yaml", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L58", + "_origin": "ast", + "community": 307, + "community_name": "@types/js-yaml", + "norm_label": "@types/js-yaml", + "id": "backend_package_devdependencies_types_js_yaml" + }, + { + "label": "@types/supertest", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L62", + "_origin": "ast", + "community": 107, + "community_name": "@types/supertest", + "norm_label": "@types/supertest", + "id": "backend_package_devdependencies_types_supertest" + }, + { + "label": "typescript-eslint", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L77", + "_origin": "ast", + "community": 314, + "community_name": "typescript-eslint", + "norm_label": "typescript-eslint", + "id": "backend_package_devdependencies_typescript_eslint" + }, + { + "label": "eslint", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L63", + "_origin": "ast", + "community": 9, + "community_name": "devDependencies", + "norm_label": "eslint", + "id": "backend_package_json_eslint" + }, + { + "label": "globals", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L66", + "_origin": "ast", + "community": 306, + "community_name": "globals", + "norm_label": "globals", + "id": "backend_package_json_globals" + }, + { + "label": "typescript-eslint", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L77", + "_origin": "ast", + "community": 314, + "community_name": "typescript-eslint", + "norm_label": "typescript-eslint", + "id": "backend_package_json_typescript_eslint" + }, + { + "label": "@eslint/eslintrc", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L48", + "_origin": "ast", + "community": 231, + "community_name": "@eslint/eslintrc", + "norm_label": "@eslint/eslintrc", + "id": "eslint_eslintrc" + }, + { + "label": "eslint-plugin-prettier", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L65", + "_origin": "ast", + "community": 233, + "community_name": "eslint-plugin-prettier", + "norm_label": "eslint-plugin-prettier", + "id": "eslint_plugin_prettier" + }, + { + "label": "@nestjs/cli", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L50", + "_origin": "ast", + "community": 235, + "community_name": "@nestjs/cli", + "norm_label": "@nestjs/cli", + "id": "nestjs_cli" + }, + { + "label": "@nestjs/testing", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L52", + "_origin": "ast", + "community": 236, + "community_name": "@nestjs/testing", + "norm_label": "@nestjs/testing", + "id": "nestjs_testing" + }, + { + "label": "prettier", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L68", + "_origin": "ast", + "community": 97, + "community_name": "prettier", + "norm_label": "prettier", + "id": "prettier" + }, + { + "label": "ts-jest", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L72", + "_origin": "ast", + "community": 316, + "community_name": "ts-jest", + "norm_label": "ts-jest", + "id": "ts_jest" + }, + { + "label": "@types/bcryptjs", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L54", + "_origin": "ast", + "community": 9, + "community_name": "devDependencies", + "norm_label": "@types/bcryptjs", + "id": "types_bcryptjs" + }, + { + "label": "@types/js-yaml", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L58", + "_origin": "ast", + "community": 307, + "community_name": "@types/js-yaml", + "norm_label": "@types/js-yaml", + "id": "types_js_yaml" + }, + { + "label": "@types/supertest", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L62", + "_origin": "ast", + "community": 107, + "community_name": "@types/supertest", + "norm_label": "@types/supertest", + "id": "types_supertest" + }, + { + "label": "HomeClient.tsx", + "file_type": "code", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "homeclient.tsx", + "id": "frontend_application_app_homeclient" + }, + { + "label": "app/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 237, + "community_name": "app/page.tsx", + "norm_label": "app/page.tsx", + "id": "frontend_application_app_page" + }, + { + "label": "ArchivePage.tsx", + "file_type": "code", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "archivepage.tsx", + "id": "frontend_application_components_archivepage" + }, + { + "label": "CATEGORY_MAP", + "file_type": "code", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L43", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "category_map", + "id": "frontend_application_components_archivepage_category_map" + }, + { + "label": "ICON_MAP", + "file_type": "code", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L34", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "icon_map", + "id": "frontend_application_components_archivepage_icon_map" + }, + { + "label": "BannerPlacement.tsx", + "file_type": "code", + "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "bannerplacement.tsx", + "id": "frontend_application_components_bannerplacement" + }, + { + "label": "FAQSection.tsx", + "file_type": "code", + "source_file": "frontend/application/components/FAQSection.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "faqsection.tsx", + "id": "frontend_application_components_faqsection" + }, + { + "label": "Hero.tsx", + "file_type": "code", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "hero.tsx", + "id": "frontend_application_components_hero" + }, + { + "label": "Hero.test.tsx", + "file_type": "code", + "source_file": "frontend/application/components/__tests__/Hero.test.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "hero.test.tsx", + "id": "frontend_application_components_tests_hero_test" + }, + { + "label": "types.ts", + "file_type": "code", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L1", + "_origin": "ast", + "community": 90, + "community_name": "useSettingsStore", + "norm_label": "types.ts", + "id": "frontend_application_lib_types" + }, + { + "label": "02-audit-plan.md", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L1", + "_origin": "ast", + "community": 91, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "02-audit-plan.md", + "node_kind": "page", + "id": "docs_audit_02_audit_plan" + }, + { + "label": "10. Documentation Engineer", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L73", + "_origin": "ast", + "community": 91, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "10. documentation engineer", + "node_kind": "heading", + "id": "docs_audit_02_audit_plan_10_documentation_engineer" + }, + { + "label": "1. Lead Architect / Orchestrator", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L28", + "_origin": "ast", + "community": 91, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "1. lead architect / orchestrator", + "node_kind": "heading", + "id": "docs_audit_02_audit_plan_1_lead_architect_orchestrator" + }, + { + "label": "2. React / Vite Storefront Auditor", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L33", + "_origin": "ast", + "community": 91, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "2. react / vite storefront auditor", + "node_kind": "heading", + "id": "docs_audit_02_audit_plan_2_react_vite_storefront_auditor" + }, + { + "label": "3. NestJS Backend Auditor", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L38", + "_origin": "ast", + "community": 91, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "3. nestjs backend auditor", + "node_kind": "heading", + "id": "docs_audit_02_audit_plan_3_nestjs_backend_auditor" + }, + { + "label": "4. Admin Features Auditor", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L43", + "_origin": "ast", + "community": 91, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "4. admin features auditor", + "node_kind": "heading", + "id": "docs_audit_02_audit_plan_4_admin_features_auditor" + }, + { + "label": "5. Database & Data Integrity Auditor", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L48", + "_origin": "ast", + "community": 91, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "5. database & data integrity auditor", + "node_kind": "heading", + "id": "docs_audit_02_audit_plan_5_database_data_integrity_auditor" + }, + { + "label": "6. Security Auditor", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L53", + "_origin": "ast", + "community": 91, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "6. security auditor", + "node_kind": "heading", + "id": "docs_audit_02_audit_plan_6_security_auditor" + }, + { + "label": "7. TypeScript & Code Quality Auditor", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L58", + "_origin": "ast", + "community": 91, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "7. typescript & code quality auditor", + "node_kind": "heading", + "id": "docs_audit_02_audit_plan_7_typescript_code_quality_auditor" + }, + { + "label": "8. Testing & Reliability Auditor", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L63", + "_origin": "ast", + "community": 91, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "8. testing & reliability auditor", + "node_kind": "heading", + "id": "docs_audit_02_audit_plan_8_testing_reliability_auditor" + }, + { + "label": "9. DevOps & CI/CD Auditor", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L68", + "_origin": "ast", + "community": 91, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "9. devops & ci/cd auditor", + "node_kind": "heading", + "id": "docs_audit_02_audit_plan_9_devops_ci_cd_auditor" + }, + { + "label": "Audit Plan & Subagent Roles", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L1", + "_origin": "ast", + "community": 91, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "audit plan & subagent roles", + "node_kind": "heading", + "id": "docs_audit_02_audit_plan_audit_plan_subagent_roles" + }, + { + "label": "Mandatory Global Audit Exclusions", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L10", + "_origin": "ast", + "community": 91, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "mandatory global audit exclusions", + "node_kind": "heading", + "id": "docs_audit_02_audit_plan_mandatory_global_audit_exclusions" + }, + { + "label": "Reconciled Audit Roles & Assignments", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L26", + "_origin": "ast", + "community": 91, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "reconciled audit roles & assignments", + "node_kind": "heading", + "id": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments" + }, + { + "label": "Strategy for Deduplication & Consolidation", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L80", + "_origin": "ast", + "community": 91, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "strategy for deduplication & consolidation", + "node_kind": "heading", + "id": "docs_audit_02_audit_plan_strategy_for_deduplication_consolidation" + }, + { + "label": "Subagent Execution Mode", + "file_type": "document", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L3", + "_origin": "ast", + "community": 91, + "community_name": "Reconciled Audit Roles & Assignments", + "norm_label": "subagent execution mode", + "node_kind": "heading", + "id": "docs_audit_02_audit_plan_subagent_execution_mode" + }, + { + "label": "ApiProperty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "apiproperty", + "id": "backend_src_orders_dto_create_order_dto_ts_apiproperty" + }, + { + "label": "ApiPropertyOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "apipropertyoptional", + "id": "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional" + }, + { + "label": "IsArray", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "isarray", + "id": "backend_src_orders_dto_create_order_dto_ts_isarray" + }, + { + "label": "IsNotEmpty", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "isnotempty", + "id": "backend_src_orders_dto_create_order_dto_ts_isnotempty" + }, + { + "label": "IsNumber", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "isnumber", + "id": "backend_src_orders_dto_create_order_dto_ts_isnumber" + }, + { + "label": "IsOptional", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "isoptional", + "id": "backend_src_orders_dto_create_order_dto_ts_isoptional" + }, + { + "label": "IsString", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "isstring", + "id": "backend_src_orders_dto_create_order_dto_ts_isstring" + }, + { + "label": "Type", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "type", + "id": "backend_src_orders_dto_create_order_dto_ts_type" + }, + { + "label": "ApiBadRequestResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "apibadrequestresponse", + "id": "backend_src_orders_orders_controller_ts_apibadrequestresponse" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "apibearerauth", + "id": "backend_src_orders_orders_controller_ts_apibearerauth" + }, + { + "label": "ApiCreatedResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "apicreatedresponse", + "id": "backend_src_orders_orders_controller_ts_apicreatedresponse" + }, + { + "label": "ApiNotFoundResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "apinotfoundresponse", + "id": "backend_src_orders_orders_controller_ts_apinotfoundresponse" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "apiokresponse", + "id": "backend_src_orders_orders_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "apioperation", + "id": "backend_src_orders_orders_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "apitags", + "id": "backend_src_orders_orders_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "body", + "id": "backend_src_orders_orders_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "controller", + "id": "backend_src_orders_orders_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "get", + "id": "backend_src_orders_orders_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "param", + "id": "backend_src_orders_orders_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "post", + "id": "backend_src_orders_orders_controller_ts_post" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "query", + "id": "backend_src_orders_orders_controller_ts_query" + }, + { + "label": "Req", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "req", + "id": "backend_src_orders_orders_controller_ts_req" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "useguards", + "id": "backend_src_orders_orders_controller_ts_useguards" + }, + { + "label": "Injectable", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "injectable", + "id": "backend_src_orders_orders_service_ts_injectable" + }, + { + "label": "ValidateNested", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 92, + "community_name": "OrdersService", + "norm_label": "validatenested", + "id": "validatenested" + }, + { + "label": "@nestjs/schematics", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L51", + "_origin": "ast", + "community": 93, + "community_name": "@nestjs/schematics", + "norm_label": "@nestjs/schematics", + "id": "backend_package_devdependencies_nestjs_schematics" + }, + { + "label": "@nestjs/schematics", + "file_type": "concept", + "source_file": "backend/package.json", + "source_location": "L51", + "_origin": "ast", + "community": 93, + "community_name": "@nestjs/schematics", + "norm_label": "@nestjs/schematics", + "id": "nestjs_schematics" + }, + { + "label": "phase3.1-backlog-review.md", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L1", + "_origin": "ast", + "community": 94, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "phase3.1-backlog-review.md", + "node_kind": "page", + "id": "docs_audit_phase3_1_backlog_review" + }, + { + "label": "10. Dependency & Wave Adjustments", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L102", + "_origin": "ast", + "community": 94, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "10. dependency & wave adjustments", + "node_kind": "heading", + "id": "docs_audit_phase3_1_backlog_review_10_dependency_wave_adjustments" + }, + { + "label": "11. Acceptance Criteria Refinements", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L114", + "_origin": "ast", + "community": 94, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "11. acceptance criteria refinements", + "node_kind": "heading", + "id": "docs_audit_phase3_1_backlog_review_11_acceptance_criteria_refinements" + }, + { + "label": "12. Business and Product Decision Classification", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L124", + "_origin": "ast", + "community": 94, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "12. business and product decision classification", + "node_kind": "heading", + "id": "docs_audit_phase3_1_backlog_review_12_business_and_product_decision_classification" + }, + { + "label": "13. Final Recommended Backlog Summary", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L134", + "_origin": "ast", + "community": 94, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "13. final recommended backlog summary", + "node_kind": "heading", + "id": "docs_audit_phase3_1_backlog_review_13_final_recommended_backlog_summary" + }, + { + "label": "1. Executive Assessment", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L14", + "_origin": "ast", + "community": 94, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "1. executive assessment", + "node_kind": "heading", + "id": "docs_audit_phase3_1_backlog_review_1_executive_assessment" + }, + { + "label": "2. Findings That Require No Change", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L26", + "_origin": "ast", + "community": 94, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "2. findings that require no change", + "node_kind": "heading", + "id": "docs_audit_phase3_1_backlog_review_2_findings_that_require_no_change" + }, + { + "label": "3. Findings Requiring Task Refinements", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L41", + "_origin": "ast", + "community": 94, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "3. findings requiring task refinements", + "node_kind": "heading", + "id": "docs_audit_phase3_1_backlog_review_3_findings_requiring_task_refinements" + }, + { + "label": "4. Tasks Requiring Splitting", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L50", + "_origin": "ast", + "community": 94, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "4. tasks requiring splitting", + "node_kind": "heading", + "id": "docs_audit_phase3_1_backlog_review_4_tasks_requiring_splitting" + }, + { + "label": "5. Tasks Requiring Merging", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L56", + "_origin": "ast", + "community": 94, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "5. tasks requiring merging", + "node_kind": "heading", + "id": "docs_audit_phase3_1_backlog_review_5_tasks_requiring_merging" + }, + { + "label": "6. Unsupported Assumptions Identified", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L62", + "_origin": "ast", + "community": 94, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "6. unsupported assumptions identified", + "node_kind": "heading", + "id": "docs_audit_phase3_1_backlog_review_6_unsupported_assumptions_identified" + }, + { + "label": "7. Scope Creep Identified and Removed", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L71", + "_origin": "ast", + "community": 94, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "7. scope creep identified and removed", + "node_kind": "heading", + "id": "docs_audit_phase3_1_backlog_review_7_scope_creep_identified_and_removed" + }, + { + "label": "8. Security Deep-Dive Review", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L78", + "_origin": "ast", + "community": 94, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "8. security deep-dive review", + "node_kind": "heading", + "id": "docs_audit_phase3_1_backlog_review_8_security_deep_dive_review" + }, + { + "label": "9. Architecture Review", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L92", + "_origin": "ast", + "community": 94, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "9. architecture review", + "node_kind": "heading", + "id": "docs_audit_phase3_1_backlog_review_9_architecture_review" + }, + { + "label": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "file_type": "document", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L1", + "_origin": "ast", + "community": 94, + "community_name": "Phase 3.1 \u2014 Human Review Preparation and Master Backlog Critique", + "norm_label": "phase 3.1 \u2014 human review preparation and master backlog critique", + "node_kind": "heading", + "id": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + }, + { + "label": "b2b/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/b2b/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "b2b/page.tsx", + "id": "frontend_application_app_b2b_page" + }, + { + "label": "contact/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "contact/page.tsx", + "id": "frontend_application_app_contact_page" + }, + { + "label": "wiki/[slug]/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 148, + "community_name": "wiki/[slug]/page.tsx", + "norm_label": "wiki/[slug]/page.tsx", + "id": "frontend_application_app_wiki_slug_page" + }, + { + "label": "schema.ts", + "file_type": "code", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L1", + "_origin": "ast", + "community": 17, + "community_name": "schema.ts", + "norm_label": "schema.ts", + "id": "frontend_application_lib_schema" + }, + { + "label": "application/tsconfig.json", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L1", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "application/tsconfig.json", + "id": "frontend_application_tsconfig" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L2", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "compileroptions", + "id": "frontend_application_tsconfig_compileroptions" + }, + { + "label": "allowJs", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L5", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "allowjs", + "id": "frontend_application_tsconfig_compileroptions_allowjs" + }, + { + "label": "esModuleInterop", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L9", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "esmoduleinterop", + "id": "frontend_application_tsconfig_compileroptions_esmoduleinterop" + }, + { + "label": "incremental", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L15", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "incremental", + "id": "frontend_application_tsconfig_compileroptions_incremental" + }, + { + "label": "isolatedModules", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L13", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "isolatedmodules", + "id": "frontend_application_tsconfig_compileroptions_isolatedmodules" + }, + { + "label": "jsx", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L14", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "jsx", + "id": "frontend_application_tsconfig_compileroptions_jsx" + }, + { + "label": "lib", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "lib", + "id": "frontend_application_tsconfig_compileroptions_lib" + }, + { + "label": "module", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L10", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "module", + "id": "frontend_application_tsconfig_compileroptions_module" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L11", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "moduleresolution", + "id": "frontend_application_tsconfig_compileroptions_moduleresolution" + }, + { + "label": "noEmit", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L8", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "noemit", + "id": "frontend_application_tsconfig_compileroptions_noemit" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L21", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "paths", + "id": "frontend_application_tsconfig_compileroptions_paths" + }, + { + "label": "plugins", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L16", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "plugins", + "id": "frontend_application_tsconfig_compileroptions_plugins" + }, + { + "label": "resolveJsonModule", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L12", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "resolvejsonmodule", + "id": "frontend_application_tsconfig_compileroptions_resolvejsonmodule" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L6", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "skiplibcheck", + "id": "frontend_application_tsconfig_compileroptions_skiplibcheck" + }, + { + "label": "strict", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L7", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "strict", + "id": "frontend_application_tsconfig_compileroptions_strict" + }, + { + "label": "target", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L3", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "target", + "id": "frontend_application_tsconfig_compileroptions_target" + }, + { + "label": "exclude", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L33", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "exclude", + "id": "frontend_application_tsconfig_exclude" + }, + { + "label": "include", + "file_type": "code", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "include", + "id": "frontend_application_tsconfig_include" + }, + { + "label": "dom", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "dom", + "id": "frontend_application_tsconfig_json_ref_dom" + }, + { + "label": "dom.iterable", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "dom.iterable", + "id": "frontend_application_tsconfig_json_ref_dom_iterable" + }, + { + "label": "esnext", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L4", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "esnext", + "id": "frontend_application_tsconfig_json_ref_esnext" + }, + { + "label": "node_modules", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L33", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "node_modules", + "id": "frontend_application_tsconfig_json_ref_node_modules" + }, + { + "label": "prisma", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L33", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "prisma", + "id": "frontend_application_tsconfig_json_ref_prisma" + }, + { + "label": "**/*.ts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "**/*.ts", + "id": "frontend_application_tsconfig_json_ref_ts" + }, + { + "label": "**/*.mts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "**/*.mts", + "id": "ref_mts" + }, + { + "label": ".next/dev/types/**/*.ts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": ".next/dev/types/**/*.ts", + "id": "ref_next_dev_types_ts" + }, + { + "label": "next-env.d.ts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "next-env.d.ts", + "id": "ref_next_env_d_ts" + }, + { + "label": ".next/types/**/*.ts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": ".next/types/**/*.ts", + "id": "ref_next_types_ts" + }, + { + "label": "**/__tests__/**", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L33", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "**/__tests__/**", + "id": "ref_tests" + }, + { + "label": "**/*.tsx", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "**/*.tsx", + "id": "ref_tsx" + }, + { + "label": "vitest.config.ts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L33", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "vitest.config.ts", + "id": "ref_vitest_config_ts" + }, + { + "label": "vitest.setup.ts", + "file_type": "concept", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L33", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "norm_label": "vitest.setup.ts", + "id": "ref_vitest_setup_ts" + }, + { + "label": "blog/[slug]/page.tsx", + "file_type": "code", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L1", + "_origin": "ast", + "community": 95, + "community_name": "blog/[slug]/page.tsx", + "norm_label": "blog/[slug]/page.tsx", + "id": "frontend_application_app_blog_slug_page" + }, + { + "label": "revalidate", + "file_type": "code", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L51", + "_origin": "ast", + "community": 95, + "community_name": "blog/[slug]/page.tsx", + "norm_label": "revalidate", + "id": "frontend_application_app_blog_slug_page_revalidate" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L8", + "_origin": "ast", + "community": 98, + "community_name": "scripts", + "norm_label": "scripts", + "id": "backend_package_scripts" + }, + { + "label": "build", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L9", + "_origin": "ast", + "community": 98, + "community_name": "scripts", + "norm_label": "build", + "id": "backend_package_scripts_build" + }, + { + "label": "build:nest", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L10", + "_origin": "ast", + "community": 98, + "community_name": "scripts", + "norm_label": "build:nest", + "id": "backend_package_scripts_build_nest" + }, + { + "label": "docs:generate", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L21", + "_origin": "ast", + "community": 98, + "community_name": "scripts", + "norm_label": "docs:generate", + "id": "backend_package_scripts_docs_generate" + }, + { + "label": "lint", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L15", + "_origin": "ast", + "community": 98, + "community_name": "scripts", + "norm_label": "lint", + "id": "backend_package_scripts_lint" + }, + { + "label": "seo:backfill", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L22", + "_origin": "ast", + "community": 98, + "community_name": "scripts", + "norm_label": "seo:backfill", + "id": "backend_package_scripts_seo_backfill" + }, + { + "label": "start", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L11", + "_origin": "ast", + "community": 98, + "community_name": "scripts", + "norm_label": "start", + "id": "backend_package_scripts_start" + }, + { + "label": "start:debug", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L13", + "_origin": "ast", + "community": 98, + "community_name": "scripts", + "norm_label": "start:debug", + "id": "backend_package_scripts_start_debug" + }, + { + "label": "start:dev", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L12", + "_origin": "ast", + "community": 98, + "community_name": "scripts", + "norm_label": "start:dev", + "id": "backend_package_scripts_start_dev" + }, + { + "label": "start:prod", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L14", + "_origin": "ast", + "community": 98, + "community_name": "scripts", + "norm_label": "start:prod", + "id": "backend_package_scripts_start_prod" + }, + { + "label": "test", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L16", + "_origin": "ast", + "community": 98, + "community_name": "scripts", + "norm_label": "test", + "id": "backend_package_scripts_test" + }, + { + "label": "test:cov", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L18", + "_origin": "ast", + "community": 98, + "community_name": "scripts", + "norm_label": "test:cov", + "id": "backend_package_scripts_test_cov" + }, + { + "label": "test:debug", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L19", + "_origin": "ast", + "community": 98, + "community_name": "scripts", + "norm_label": "test:debug", + "id": "backend_package_scripts_test_debug" + }, + { + "label": "test:e2e", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L20", + "_origin": "ast", + "community": 98, + "community_name": "scripts", + "norm_label": "test:e2e", + "id": "backend_package_scripts_test_e2e" + }, + { + "label": "test:watch", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L17", + "_origin": "ast", + "community": 98, + "community_name": "scripts", + "norm_label": "test:watch", + "id": "backend_package_scripts_test_watch" + }, + { + "label": "ApiBearerAuth", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", "community": 99, "community_name": "BlogsController", - "norm_label": "query" + "norm_label": "apibearerauth", + "id": "backend_src_blogs_blogs_controller_ts_apibearerauth" + }, + { + "label": "ApiNotFoundResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": "apinotfoundresponse", + "id": "backend_src_blogs_blogs_controller_ts_apinotfoundresponse" + }, + { + "label": "ApiOkResponse", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": "apiokresponse", + "id": "backend_src_blogs_blogs_controller_ts_apiokresponse" + }, + { + "label": "ApiOperation", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": "apioperation", + "id": "backend_src_blogs_blogs_controller_ts_apioperation" + }, + { + "label": "ApiTags", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": "apitags", + "id": "backend_src_blogs_blogs_controller_ts_apitags" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": "body", + "id": "backend_src_blogs_blogs_controller_ts_body" + }, + { + "label": "Controller", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": "controller", + "id": "backend_src_blogs_blogs_controller_ts_controller" + }, + { + "label": "Get", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": "get", + "id": "backend_src_blogs_blogs_controller_ts_get" + }, + { + "label": "Param", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": "param", + "id": "backend_src_blogs_blogs_controller_ts_param" + }, + { + "label": "Post", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": "post", + "id": "backend_src_blogs_blogs_controller_ts_post" + }, + { + "label": "Query", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": "query", + "id": "backend_src_blogs_blogs_controller_ts_query" + }, + { + "label": "Request", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": "request", + "id": "backend_src_blogs_blogs_controller_ts_request" + }, + { + "label": "Throttle", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": "throttle", + "id": "backend_src_blogs_blogs_controller_ts_throttle" + }, + { + "label": "UseGuards", + "file_type": "code", + "source_file": "", + "source_location": "", + "_origin": "ast", + "community": 99, + "community_name": "BlogsController", + "norm_label": "useguards", + "id": "backend_src_blogs_blogs_controller_ts_useguards" }, { "label": "Vazirmatn Authors", @@ -46231,152 +47946,31659 @@ "rationale": "Defines staging infrastructure for the Canina application.", "source_file": "scripts/compose.stage.yml", "id": "scripts_compose_stage" + }, + { + "label": "mockPush", + "_origin": "ast", + "community": 12, + "community_name": "PetProfile.tsx", + "file_type": "code", + "norm_label": "mockpush", + "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", + "source_location": "L35", + "id": "frontend_application_components_tests_featuredproducts_test_mockpush" + }, + { + "label": "localStorageMock", + "_origin": "ast", + "community": 256, + "community_name": "vitest.setup.ts", + "file_type": "code", + "norm_label": "localstoragemock", + "source_file": "frontend/application/vitest.setup.ts", + "source_location": "L16", + "id": "frontend_application_vitest_setup_localstoragemock" + }, + { + "label": "ApiQuery", + "_origin": "ast", + "community": 8, + "community_name": "ReportsController", + "file_type": "code", + "norm_label": "apiquery", + "source_file": "", + "source_location": "", + "id": "backend_src_admin_reports_controller_ts_apiquery" + }, + { + "label": "Query", + "_origin": "ast", + "community": 8, + "community_name": "ReportsController", + "file_type": "code", + "norm_label": "query", + "source_file": "", + "source_location": "", + "id": "backend_src_admin_reports_controller_ts_query" + }, + { + "label": "esnext", + "_origin": "ast", + "community": 96, + "community_name": "compilerOptions", + "file_type": "concept", + "norm_label": "esnext", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L4", + "id": "ref_esnext" } ], "links": [ { - "relation": "calls", - "context": "call", + "relation": "references", "confidence": "EXTRACTED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L106", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L39", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "ai_agency_orchestrate_cmd_next_task", - "target": "ai_agency_orchestrate_load_json", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_ts_apitags" }, { - "relation": "calls", - "context": "call", + "relation": "references", "confidence": "EXTRACTED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L76", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L40", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "ai_agency_orchestrate_cmd_progress", - "target": "ai_agency_orchestrate_load_json", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_ts_controller" }, { - "relation": "calls", - "context": "call", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L177", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L2", "weight": 1.0, "_origin": "ast", - "source": "ai_agency_orchestrate_cmd_reset", - "target": "ai_agency_orchestrate_save_json", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_module" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": ".ai_agency/orchestrate.py", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_createrefund" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L356", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L365", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L391", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L401", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L416", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", "source_location": "L42", "weight": 1.0, "_origin": "ast", - "source": "ai_agency_orchestrate_cmd_status", - "target": "ai_agency_orchestrate_load_json", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_constructor" }, { - "relation": "calls", - "context": "call", + "relation": "method", "confidence": "EXTRACTED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L129", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L439", "weight": 1.0, "_origin": "ast", - "source": "ai_agency_orchestrate_cmd_unblock", - "target": "ai_agency_orchestrate_load_json", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout" }, { - "relation": "calls", - "context": "call", + "relation": "method", "confidence": "EXTRACTED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L138", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L448", "weight": 1.0, "_origin": "ast", - "source": "ai_agency_orchestrate_cmd_unblock", - "target": "ai_agency_orchestrate_save_json", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist" }, { - "relation": "calls", - "context": "call", + "relation": "method", "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L292", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L471", "weight": 1.0, "_origin": "ast", - "source": "backend_prisma_seed_products_main", - "target": "backend_prisma_seed_products_determinesuitablefor", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout" }, { - "relation": "calls", - "context": "call", + "relation": "method", "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L302", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L48", "weight": 1.0, "_origin": "ast", - "source": "backend_prisma_seed_products_main", - "target": "backend_prisma_seed_products_slugify", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip" }, { - "relation": "calls", - "context": "call", + "relation": "method", "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L304", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L485", "weight": 1.0, "_origin": "ast", - "source": "backend_prisma_seed_products_main", - "target": "backend_prisma_seed_products_findorcreatecategory", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments" }, { - "relation": "calls", - "context": "call", + "relation": "method", "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L312", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L508", "weight": 1.0, "_origin": "ast", - "source": "backend_prisma_seed_products_main", - "target": "backend_prisma_seed_products_parsesize", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus" }, { - "relation": "calls", - "context": "call", + "relation": "method", "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L359", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L525", "weight": 1.0, "_origin": "ast", - "source": "backend_prisma_seed_products_main", - "target": "backend_prisma_seed_products_getproductimageurl", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions" }, { - "relation": "calls", - "context": "call", + "relation": "method", "confidence": "EXTRACTED", - "source_file": "backend/scripts/seo-backfill.ts", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L534", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_getadminstats" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L545", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L556", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L580", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L591", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_manualverify" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L603", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_manualreject" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L618", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_gethealth" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller", + "target": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.module.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_module_b2bmodule", + "target": "backend_src_b2b_b2b_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_module_b2bmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.module.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_module_b2bmodule", + "target": "backend_src_b2b_b2b_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.module.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_module_bannersmodule", + "target": "backend_src_banners_banners_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_module_bannersmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.module.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_module_bannersmodule", + "target": "backend_src_banners_banners_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.module.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_module_cmsmodule", + "target": "backend_src_cms_cms_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_module_cmsmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.module.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_module_cmsmodule", + "target": "backend_src_cms_cms_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/sms.module.ts", + "source_location": "L4", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_sms_module_smsmodule", + "target": "backend_src_common_sms_module_ts_global" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/sms.module.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_sms_module_smsmodule", + "target": "backend_src_common_sms_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_sms_module_smsmodule", + "target": "backend_src_app_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_sms_module_smsmodule", + "target": "backend_src_contact_contact_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_sms_module_smsmodule", + "target": "backend_src_payment_payment_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/sms.module.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_sms_module_smsmodule", + "target": "backend_src_common_sms_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.module.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_module_contactmodule", + "target": "backend_src_contact_contact_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_module_contactmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.module.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_module_contactmodule", + "target": "backend_src_contact_contact_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.module.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_module_doctorsmodule", + "target": "backend_src_doctors_doctors_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_module_doctorsmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.module.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_module_doctorsmodule", + "target": "backend_src_doctors_doctors_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.module.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_module_faqmodule", + "target": "backend_src_faq_faq_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_module_faqmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.module.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_module_faqmodule", + "target": "backend_src_faq_faq_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.module.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_module_ingredientsmodule", + "target": "backend_src_ingredients_ingredients_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_module_ingredientsmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.module.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_module_ingredientsmodule", + "target": "backend_src_ingredients_ingredients_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.module.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_module_menumodule", + "target": "backend_src_menu_menu_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_module_menumodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.module.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_module_menumodule", + "target": "backend_src_menu_menu_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L9", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_module_paymentmodule", + "target": "backend_src_payment_payment_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_module_paymentmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_module_paymentmodule", + "target": "backend_src_payment_payment_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.module.ts", + "source_location": "L7", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", + "target": "backend_src_prescriptions_prescriptions_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.module.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", + "target": "backend_src_prescriptions_prescriptions_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prisma/prisma.module.ts", + "source_location": "L4", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_prisma_prisma_module_ts_global" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prisma/prisma.module.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_prisma_prisma_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_app_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_b2b_b2b_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_banners_banners_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_cms_cms_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_doctors_doctors_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_ingredients_ingredients_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_payment_payment_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_prescriptions_prescriptions_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_reviews_reviews_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_seo_seo_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_settings_settings_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_smart_advisor_smart_advisor_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_testimonials_testimonials_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_tickets_tickets_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_wholesale_wholesale_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/prisma/prisma.module.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module_prismamodule", + "target": "backend_src_prisma_prisma_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.module.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_module_settingsmodule", + "target": "backend_src_settings_settings_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_module_settingsmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.module.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_module_settingsmodule", + "target": "backend_src_settings_settings_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", + "target": "backend_src_smart_advisor_smart_advisor_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", + "target": "backend_src_smart_advisor_smart_advisor_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.module.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_module_testimonialsmodule", + "target": "backend_src_testimonials_testimonials_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", "source_location": "L26", "weight": 1.0, "_origin": "ast", - "source": "backend_scripts_seo_backfill_runseobackfill", - "target": "backend_scripts_seo_backfill_striphtml", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_module_testimonialsmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.module.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_module_testimonialsmodule", + "target": "backend_src_testimonials_testimonials_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.module.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_module_wholesalemodule", + "target": "backend_src_wholesale_wholesale_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_module_wholesalemodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.module.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_module_wholesalemodule", + "target": "backend_src_wholesale_wholesale_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L22", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller", + "target": "backend_src_reviews_reviews_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller", + "target": "backend_src_reviews_reviews_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller", + "target": "backend_src_reviews_reviews_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller", + "target": "backend_src_reviews_reviews_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller", + "target": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller", + "target": "backend_src_reviews_reviews_controller_reviewscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller", + "target": "backend_src_reviews_reviews_controller_reviewscontroller_createreview" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller", + "target": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller", + "target": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller", + "target": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_priceinput_priceinputprops", + "target": "frontend_admin_panel_src_components_ui_priceinput" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_coupons_coupon", + "target": "frontend_admin_panel_src_pages_coupons" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_coupons_couponformdata", + "target": "frontend_admin_panel_src_pages_coupons" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L308", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_coupons_couponmodalprops", + "target": "frontend_admin_panel_src_pages_coupons" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_coupons_coupontarget", + "target": "frontend_admin_panel_src_pages_coupons" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_financialsettings", + "target": "frontend_admin_panel_src_pages_financialsettingspage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_financialsettings", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_service_categoryquery", + "target": "backend_src_admin_categories_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_melipayamakpattern", + "target": "backend_src_common_services_sms_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_melipayamakresponse", + "target": "backend_src_common_services_sms_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_sendpatternsmsoptions", + "target": "backend_src_common_services_sms_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsconfig", + "target": "backend_src_common_services_sms_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smslogquery", + "target": "backend_src_settings_settings_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L616", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smslogquery", + "target": "backend_src_settings_settings_service_settingsservice_getsmslogs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smslogquery", + "target": "backend_src_common_services_sms_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_service_createcontactsubmissiondto", + "target": "backend_src_contact_contact_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_service_updatecontactinfoitemdto", + "target": "backend_src_contact_contact_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menutype", + "target": "backend_src_menu_menu_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_clientmetadata", + "target": "backend_src_payment_payment_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_ebankcheckoutlistfilter", + "target": "backend_src_payment_zibal_ebank_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_ebankcheckoutoptions", + "target": "backend_src_payment_zibal_ebank_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_ebankidentifiedpaymentfilter", + "target": "backend_src_payment_zibal_ebank_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_ebankstatementfilter", + "target": "backend_src_payment_zibal_ebank_service" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L4", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_prisma_prisma_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_admin_admin_service_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_admin_blogs_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_admin_categories_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_admin_media_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_admin_pets_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_admin_reports_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_admin_wiki_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_auth_auth_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_auth_auth_service_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_b2b_b2b_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_banners_banners_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_blogs_blogs_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_cms_cms_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_common_metrics_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_common_services_sms_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_contact_contact_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_doctors_doctors_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_faq_faq_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_home_home_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_ingredients_ingredients_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_menu_menu_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_orders_orders_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_orders_orders_service_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_payment_payment_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_payment_zibal_ebank_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_payment_zibal_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_pets_pets_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_pets_pets_service_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_prescriptions_prescriptions_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prisma/prisma.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_prisma_prisma_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_products_products_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_products_products_service_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_reviews_reviews_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_seo_seo_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_settings_settings_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_settings_settings_service_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_smart_advisor_smart_advisor_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_testimonials_testimonials_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_tickets_tickets_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_users_users_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_users_users_service_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_videos_videos_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_wholesale_wholesale_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_wiki_wiki_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_admin_admin_service_adminservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_admin_blogs_service_blogsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_admin_categories_service_categoriesservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_admin_media_service_mediaservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_admin_pets_service_petsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_admin_reports_service_reportsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_admin_wiki_service_wikiservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_auth_auth_service_authservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_b2b_b2b_service_b2bservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_banners_banners_service_bannersservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_blogs_blogs_service_blogsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_cms_cms_service_cmsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_common_metrics_controller_metricscontroller_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_common_services_sms_service_smsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_contact_contact_service_contactservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_doctors_doctors_service_doctorsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_faq_faq_service_faqservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_home_home_service_homeservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_menu_menu_service_menuservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_orders_orders_service_ordersservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_payment_payment_service_paymentservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_payment_zibal_service_zibalservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_pets_pets_service_petsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_products_products_service_productsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_reviews_reviews_service_reviewsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_seo_seo_service_seoservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_settings_settings_service_settingsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_tickets_tickets_service_ticketsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_users_users_service_usersservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_videos_videos_service_videosservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_wiki_wiki_service_wikiservice_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice", + "target": "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_scientifictermdata", + "target": "backend_src_settings_settings_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_scientifictermdata", + "target": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_scientifictermdata", + "target": "backend_src_settings_settings_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_useraddressinput", + "target": "backend_src_users_users_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops", + "target": "frontend_admin_panel_src_components_ui_confirmmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector_media", + "target": "frontend_admin_panel_src_components_ui_mediaselector" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops", + "target": "frontend_admin_panel_src_components_ui_mediaselector" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination_paginationprops", + "target": "frontend_admin_panel_src_components_ui_pagination" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_blogs_authoruser", + "target": "frontend_admin_panel_src_pages_blogs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_blogs_blogcategory", + "target": "frontend_admin_panel_src_pages_blogs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_blogs_blogpost", + "target": "frontend_admin_panel_src_pages_blogs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_blogs_blogtag", + "target": "frontend_admin_panel_src_pages_blogs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_blogs_productsimple", + "target": "frontend_admin_panel_src_pages_blogs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_categories_category", + "target": "frontend_admin_panel_src_pages_categories" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_pets_pet", + "target": "frontend_admin_panel_src_pages_pets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_products_category", + "target": "frontend_admin_panel_src_pages_products" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_products_product", + "target": "frontend_admin_panel_src_pages_products" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_videos_doctoroption", + "target": "frontend_admin_panel_src_pages_videos" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_videos_video", + "target": "frontend_admin_panel_src_pages_videos" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest", + "target": "frontend_admin_panel_src_pages_wholesaleapplications" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_banner", + "target": "frontend_admin_panel_src_pages_bannersmanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_banner", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_ingredient", + "target": "frontend_admin_panel_src_pages_ingredientsmanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_ingredient", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_testimonial", + "target": "frontend_admin_panel_src_pages_testimonialsmanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_testimonial", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/dto/update-review.dto.ts", + "source_location": "L11", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_update_review_dto_updatereviewdto", + "target": "backend_src_reviews_dto_update_review_dto_ts_isin" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/dto/update-review.dto.ts", + "source_location": "L15", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_update_review_dto_updatereviewdto", + "target": "backend_src_reviews_dto_update_review_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/dto/update-review.dto.ts", + "source_location": "L16", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_update_review_dto_updatereviewdto", + "target": "backend_src_reviews_dto_update_review_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/dto/update-review.dto.ts", + "source_location": "L17", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_update_review_dto_updatereviewdto", + "target": "backend_src_reviews_dto_update_review_dto_ts_isoptional" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_update_review_dto_updatereviewdto", + "target": "backend_src_reviews_reviews_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_update_review_dto_updatereviewdto", + "target": "backend_src_reviews_reviews_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_update_review_dto_updatereviewdto", + "target": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_update_review_dto_updatereviewdto", + "target": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/dto/update-review.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_update_review_dto_updatereviewdto", + "target": "backend_src_reviews_dto_update_review_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.module.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_module_reviewsmodule", + "target": "backend_src_reviews_reviews_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_module_reviewsmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.module.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_module_reviewsmodule", + "target": "backend_src_reviews_reviews_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L12", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_service_reviewsservice", + "target": "backend_src_reviews_reviews_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_service_reviewsservice", + "target": "backend_src_reviews_reviews_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_service_reviewsservice", + "target": "backend_src_reviews_reviews_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_service_reviewsservice", + "target": "backend_src_reviews_reviews_controller_reviewscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_service_reviewsservice", + "target": "backend_src_reviews_reviews_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L137", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_service_reviewsservice", + "target": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_service_reviewsservice", + "target": "backend_src_reviews_reviews_service_reviewsservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_service_reviewsservice", + "target": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_service_reviewsservice", + "target": "backend_src_reviews_reviews_service_reviewsservice_createreview" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_service_reviewsservice", + "target": "backend_src_reviews_reviews_service_reviewsservice_deletereview" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_service_reviewsservice", + "target": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.controller.ts", + "source_location": "L4", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_controller_appcontroller", + "target": "backend_src_app_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.controller.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_controller_appcontroller", + "target": "backend_src_app_controller_spec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.controller.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_controller_appcontroller", + "target": "backend_src_app_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.controller.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_controller_appcontroller", + "target": "backend_src_app_controller_appcontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.controller.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_controller_appcontroller", + "target": "backend_src_app_controller_appcontroller_gethello" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.service.ts", + "source_location": "L3", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_service_appservice", + "target": "backend_src_app_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.controller.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_service_appservice", + "target": "backend_src_app_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.controller.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_service_appservice", + "target": "backend_src_app_controller_spec" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.controller.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_service_appservice", + "target": "backend_src_app_controller_appcontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_service_appservice", + "target": "backend_src_app_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_service_appservice", + "target": "backend_src_app_service_appservice_gethello" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L7", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_controller_blogscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_blogsservice_getblogs" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_blogsservice_updateblog" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_blogsservice_deleteblog" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_blogsservice_getauthors" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_blogsservice_getblogcategories" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_blogsservice_createblogcategory" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_blogsservice_updateblogcategory" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_blogsservice_deleteblogcategory" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_blogsservice_getblogtags" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_blogsservice_createblogtag" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L277", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_blogsservice_deleteblogtag" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L282", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_blogsservice_getcomments" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_blogsservice_updatecommentstatus" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L332", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_blogsservice_deletecomment" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_blogsservice_getblogbyid" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_blogsservice_createblog" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service_blogsservice", + "target": "backend_src_admin_blogs_service_blogsservice_constructor" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L25", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L26", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L27", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L28", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_getproducts" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_createproduct" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_updateproduct" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_deleteproduct" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_getorders" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_getorderbyid" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_updateorderstatus" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_refundordertowallet" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_getcoupons" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_createcoupon" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_updatecoupon" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_togglecoupon" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_deletecoupon" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_getdoctors" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L247", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_createdoctor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_updatedoctor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L280", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_deletedoctor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L287", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_getsettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_updatesettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_getdashboardstats" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_getusers" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_createuser" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_getuserdetails" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_updateuser" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_deleteuser" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_updateuserrole" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller", + "target": "backend_src_admin_admin_controller_admincontroller_adjustwallet" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L50", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_controller_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_spec" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_controller_admincontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getusers" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getuserdetails" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_createuser" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_updateuser" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_updateuserrole" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_deleteuser" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L311", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getproducts" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_createproduct" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L468", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_updateproduct" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L559", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_deleteproduct" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L573", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getorders" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getdashboardstats" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L631", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getorderbyid" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L653", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_updateorderstatus" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L673", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_refundordertowallet" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L741", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getcoupons" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L772", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_createcoupon" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L799", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_updatecoupon" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L829", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_togglecoupon" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L836", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_deletecoupon" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L842", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getsettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L850", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_updatesettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L887", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getpets" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L937", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_getdoctors" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L943", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_createdoctor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L953", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_updatedoctor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L966", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_deletedoctor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L970", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice", + "target": "backend_src_admin_admin_service_adminservice_adjustuserwallet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_couponinput", + "target": "backend_src_admin_admin_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_couponinput", + "target": "backend_src_admin_admin_controller_admincontroller_createcoupon" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L216", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_couponinput", + "target": "backend_src_admin_admin_controller_admincontroller_updatecoupon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_couponinput", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/admin-query.dto.ts", + "source_location": "L16", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", + "target": "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/admin-query.dto.ts", + "source_location": "L17", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", + "target": "backend_src_admin_dto_admin_query_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/admin-query.dto.ts", + "source_location": "L18", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", + "target": "backend_src_admin_dto_admin_query_dto_ts_isstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", + "target": "backend_src_admin_admin_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", + "target": "backend_src_admin_admin_controller_admincontroller_getcoupons" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", + "target": "backend_src_admin_admin_controller_admincontroller_getorders" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", + "target": "backend_src_admin_admin_controller_admincontroller_getproducts" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", + "target": "backend_src_admin_admin_controller_admincontroller_getusers" + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/admin-query.dto.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", + "target": "backend_src_common_dto_pagination_dto_paginationdto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/admin-query.dto.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", + "target": "backend_src_admin_dto_admin_query_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/product.dto.ts", + "source_location": "L198", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_product_dto_productdto", + "target": "backend_src_admin_dto_product_dto_ts_isarray" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/product.dto.ts", + "source_location": "L235", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_product_dto_productdto", + "target": "backend_src_admin_dto_product_dto_ts_isboolean" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/product.dto.ts", + "source_location": "L238", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_product_dto_productdto", + "target": "backend_src_admin_dto_product_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/product.dto.ts", + "source_location": "L239", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_product_dto_productdto", + "target": "backend_src_admin_dto_product_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/product.dto.ts", + "source_location": "L240", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_product_dto_productdto", + "target": "backend_src_admin_dto_product_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/product.dto.ts", + "source_location": "L88", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_product_dto_productdto", + "target": "backend_src_admin_dto_product_dto_ts_isnumber" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_product_dto_productdto", + "target": "backend_src_admin_admin_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_product_dto_productdto", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_product_dto_productdto", + "target": "backend_src_admin_admin_controller_admincontroller_createproduct" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_product_dto_productdto", + "target": "backend_src_admin_admin_controller_admincontroller_updateproduct" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L399", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_product_dto_productdto", + "target": "backend_src_admin_admin_service_adminservice_createproduct" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L468", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_product_dto_productdto", + "target": "backend_src_admin_admin_service_adminservice_updateproduct" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/product.dto.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_product_dto_productdto", + "target": "backend_src_admin_dto_product_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L22", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_createuserdto", + "target": "backend_src_admin_dto_user_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_createuserdto", + "target": "backend_src_admin_dto_user_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L32", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_createuserdto", + "target": "backend_src_admin_dto_user_dto_ts_isemail" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L38", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_createuserdto", + "target": "backend_src_admin_dto_user_dto_ts_minlength" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L43", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_createuserdto", + "target": "backend_src_admin_dto_user_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L46", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_createuserdto", + "target": "backend_src_admin_dto_user_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L47", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_createuserdto", + "target": "backend_src_admin_dto_user_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_createuserdto", + "target": "backend_src_admin_dto_user_dto_ts_isnumber" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_createuserdto", + "target": "backend_src_admin_admin_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_createuserdto", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_createuserdto", + "target": "backend_src_admin_admin_controller_admincontroller_createuser" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_createuserdto", + "target": "backend_src_admin_admin_service_adminservice_createuser" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_createuserdto", + "target": "backend_src_admin_dto_user_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L73", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_updateuserdto", + "target": "backend_src_admin_dto_user_dto_ts_isemail" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L82", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_updateuserdto", + "target": "backend_src_admin_dto_user_dto_ts_minlength" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L87", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_updateuserdto", + "target": "backend_src_admin_dto_user_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L90", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_updateuserdto", + "target": "backend_src_admin_dto_user_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L91", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_updateuserdto", + "target": "backend_src_admin_dto_user_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L92", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_updateuserdto", + "target": "backend_src_admin_dto_user_dto_ts_isnumber" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_updateuserdto", + "target": "backend_src_admin_admin_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_updateuserdto", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_updateuserdto", + "target": "backend_src_admin_admin_controller_admincontroller_updateuser" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L220", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_updateuserdto", + "target": "backend_src_admin_admin_service_adminservice_updateuser" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/user.dto.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto_updateuserdto", + "target": "backend_src_admin_dto_user_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module_appmodule", + "target": "backend_src_app_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-openapi.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module_appmodule", + "target": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/main.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module_appmodule", + "target": "backend_src_main" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module_appmodule", + "target": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/test/app.e2e-spec.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module_appmodule", + "target": "backend_test_app_e2e_spec_ts_backend_test_app_e2e_spec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module_appmodule", + "target": "backend_src_app_module" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module_appmodule", + "target": "backend_src_app_module_appmodule_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module_appmodule", + "target": "backend_src_app_module_appmodule_configure" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/env.validation.ts", + "source_location": "L10", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_env_validation_environmentvariables", + "target": "backend_src_common_env_validation_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/env.validation.ts", + "source_location": "L34", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_env_validation_environmentvariables", + "target": "backend_src_common_env_validation_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/env.validation.ts", + "source_location": "L35", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_env_validation_environmentvariables", + "target": "backend_src_common_env_validation_ts_isstring" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/env.validation.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_env_validation_environmentvariables", + "target": "backend_src_common_env_validation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L12", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", + "target": "backend_src_common_filters_http_exception_filter_ts_catch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/main.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", + "target": "backend_src_main" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", + "target": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", + "target": "backend_src_common_filters_http_exception_filter" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/filters/prisma-exception.filter.ts", + "source_location": "L11", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", + "target": "backend_src_common_filters_prisma_exception_filter_ts_catch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/main.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", + "target": "backend_src_main" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", + "target": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/filters/prisma-exception.filter.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", + "target": "backend_src_common_filters_prisma_exception_filter" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/filters/prisma-exception.filter.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", + "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", + "source_location": "L11", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", + "target": "backend_src_common_interceptors_decimal_interceptor_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/interceptors/decimal.interceptor.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", + "target": "backend_src_common_interceptors_decimal_interceptor_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/main.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", + "target": "backend_src_main" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", + "target": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", + "target": "backend_src_common_interceptors_decimal_interceptor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", + "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", + "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/schemas/error-response.schema.ts", + "source_location": "L50", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_schemas_error_response_schema_apierrorresponse", + "target": "backend_src_common_schemas_error_response_schema_ts_apiproperty" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/schemas/error-response.schema.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_schemas_error_response_schema_apierrorresponse", + "target": "backend_src_common_schemas_error_response_schema" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/schemas/error-response.schema.ts", + "source_location": "L7", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_schemas_error_response_schema_errordetailfield", + "target": "backend_src_common_schemas_error_response_schema_ts_apiproperty" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_schemas_error_response_schema_errordetailfield", + "target": "backend_src_common_filters_http_exception_filter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/schemas/error-response.schema.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_schemas_error_response_schema_errordetailfield", + "target": "backend_src_common_schemas_error_response_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BrandLogo.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_brandlogo_brandlogoprops", + "target": "frontend_application_components_brandlogo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor_smartadvisorprops", + "target": "frontend_application_components_smartadvisor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_scientificterm", + "target": "frontend_application_lib_store_settingsstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_settingsstore", + "target": "frontend_application_lib_store_settingsstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/uiStore.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_uistore_uistate", + "target": "frontend_application_lib_store_uistore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_navigationtarget", + "target": "frontend_application_app_clientlayout" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Footer.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_navigationtarget", + "target": "frontend_application_components_footer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_navigationtarget", + "target": "frontend_application_components_header" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_navigationtarget", + "target": "frontend_application_lib_types" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_errorboundary_errorboundary", + "target": "frontend_application_components_errorboundary" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_errorboundary_errorboundary", + "target": "frontend_application_components_errorboundary_errorboundary_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_errorboundary_errorboundary", + "target": "frontend_application_components_errorboundary_errorboundary_getderivedstatefromerror" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_errorboundary_errorboundary", + "target": "frontend_application_components_errorboundary_errorboundary_componentdidcatch" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_errorboundary_errorboundary", + "target": "frontend_application_components_errorboundary_errorboundary_handleretry" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_errorboundary_errorboundary", + "target": "frontend_application_components_errorboundary_errorboundary_render" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_errorboundary_props", + "target": "frontend_application_components_errorboundary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ErrorBoundary.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_errorboundary_state", + "target": "frontend_application_components_errorboundary" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L3", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_common_revalidation_revalidation_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_admin_blogs_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_common_revalidation_revalidation_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_products_products_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_reviews_reviews_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_admin_admin_service_adminservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_admin_blogs_service_blogsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_products_products_service_productsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_reviews_reviews_service_reviewsservice_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_common_revalidation_revalidation_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatesettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_secret" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatetag" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatepath" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_frontendurl" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog" + }, + { + "relation": "imports", + "_origin": "ast", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "context": "import", + "source_file": "backend/src/admin/admin.service.spec.ts", + "source_location": "L5", + "weight": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_admin_admin_service_spec" + }, + { + "relation": "imports", + "_origin": "ast", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "context": "import", + "source_file": "backend/src/products/products.service.spec.ts", + "source_location": "L4", + "weight": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", + "target": "backend_src_products_products_service_spec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smssettingspage_patternitem", + "target": "frontend_admin_panel_src_pages_smssettingspage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate", + "target": "frontend_admin_panel_src_pages_smssettingspage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smssettingspage_smslogitem", + "target": "frontend_admin_panel_src_pages_smssettingspage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smssettingspage_smslogstats", + "target": "frontend_admin_panel_src_pages_smssettingspage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_sidebar_menugroup", + "target": "frontend_admin_panel_src_components_sidebar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_sidebar_sidebarprops", + "target": "frontend_admin_panel_src_components_sidebar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_sidebar_submenuitem", + "target": "frontend_admin_panel_src_components_sidebar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_topbar_livemonitoringsummary", + "target": "frontend_admin_panel_src_components_topbar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_topbar_topbarprops", + "target": "frontend_admin_panel_src_components_topbar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_apierrorpayload", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_adminloginpayload", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_adminuser", + "target": "frontend_admin_panel_src_components_protectedroute" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_adminuser", + "target": "frontend_admin_panel_src_store_adminauthstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_adminuser", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L30", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_apiresponse", + "target": "backend_src_auth_auth_controller_authcontroller" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L27", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_apiresponse", + "target": "backend_src_blogs_blogs_controller_blogscontroller" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L12", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_apiresponse", + "target": "backend_src_home_home_controller_homecontroller" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L42", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_apiresponse", + "target": "backend_src_orders_orders_controller_orderscontroller" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L43", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_apiresponse", + "target": "backend_src_pets_pets_controller_petscontroller" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L22", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_apiresponse", + "target": "backend_src_products_products_controller_productscontroller" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_apiresponse", + "target": "backend_src_users_users_controller_userscontroller" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L14", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_apiresponse", + "target": "backend_src_wiki_wiki_controller_wikicontroller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_apiresponse", + "target": "frontend_admin_panel_src_components_protectedroute" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Login.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_apiresponse", + "target": "frontend_admin_panel_src_pages_login" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_apiresponse", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_apiresponse", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_authresponsedata", + "target": "frontend_admin_panel_src_components_protectedroute" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Login.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_authresponsedata", + "target": "frontend_admin_panel_src_pages_login" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_authresponsedata", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_authresponsedata", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_authstate", + "target": "frontend_admin_panel_src_store_adminauthstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_authstate", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_b2binquiry", + "target": "frontend_admin_panel_src_pages_b2bmanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_b2binquiry", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_partneraccount", + "target": "frontend_admin_panel_src_pages_b2bmanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_partneraccount", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_product", + "target": "frontend_admin_panel_src_pages_smartadvisormanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_product", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_sendotppayload", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_seosettings", + "target": "frontend_admin_panel_src_pages_seosettingspage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_seosettings", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_smartadvisorrule", + "target": "frontend_admin_panel_src_pages_smartadvisormanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_smartadvisorrule", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_systemsettings", + "target": "frontend_admin_panel_src_pages_systemsettingspage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_systemsettings", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_verifyotppayload", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_coupontargetinput", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_paginationquery", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_adminlogininput", + "target": "backend_src_auth_auth_service" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L36", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_authservice", + "target": "backend_src_auth_auth_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_authservice", + "target": "backend_src_auth_auth_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_authservice", + "target": "backend_src_auth_auth_controller_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_authservice", + "target": "backend_src_auth_auth_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_authservice", + "target": "backend_src_auth_auth_service_spec" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_authservice", + "target": "backend_src_auth_auth_controller_authcontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_authservice", + "target": "backend_src_auth_auth_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_authservice", + "target": "backend_src_auth_auth_service_authservice_verifyotp" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_authservice", + "target": "backend_src_auth_auth_service_authservice_register" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_authservice", + "target": "backend_src_auth_auth_service_authservice_login" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_authservice", + "target": "backend_src_auth_auth_service_authservice_adminlogin" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_authservice", + "target": "backend_src_auth_auth_service_authservice_refresh" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_authservice", + "target": "backend_src_auth_auth_service_authservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_authservice", + "target": "backend_src_auth_auth_service_authservice_sendotp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_logininput", + "target": "backend_src_auth_auth_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_registerinput", + "target": "backend_src_auth_auth_service" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.module.ts", + "source_location": "L4", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_module_revalidationmodule", + "target": "backend_src_common_revalidation_revalidation_module_ts_global" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.module.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_module_revalidationmodule", + "target": "backend_src_common_revalidation_revalidation_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_module_revalidationmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.module.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_module_revalidationmodule", + "target": "backend_src_common_revalidation_revalidation_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/redis/redis.module.ts", + "source_location": "L4", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_module_redismodule", + "target": "backend_src_redis_redis_module_ts_global" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/redis/redis.module.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_module_redismodule", + "target": "backend_src_redis_redis_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_module_redismodule", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_module_redismodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/redis/redis.module.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_module_redismodule", + "target": "backend_src_redis_redis_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L4", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_redis_redis_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.spec.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_admin_admin_service_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_app_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_auth_auth_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.spec.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_auth_auth_service_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/redis/redis.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_redis_redis_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/redis/redis.service.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_redis_redis_service_spec" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_admin_admin_service_adminservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_app_module_appmodule_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_auth_auth_service_authservice_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_redis_redis_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_redis_redis_service_redisservice_onmoduledestroy" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_redis_redis_service_redisservice_set" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_redis_redis_service_redisservice_get" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_redis_redis_service_redisservice_del" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_redis_redis_service_redisservice_incr" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_redis_redis_service_redisservice_ttl" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/redis/redis.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service_redisservice", + "target": "backend_src_redis_redis_service_redisservice_onmoduleinit" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L10", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", + "target": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L11", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L12", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", + "target": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", + "target": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", + "target": "backend_src_payment_dto_initiate_payment_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L17", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", + "target": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L18", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L21", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", + "target": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L22", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", + "target": "backend_src_payment_dto_initiate_payment_dto_ts_isstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", + "target": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", + "target": "backend_src_payment_dto_initiate_payment_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L18", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller", + "target": "backend_src_doctors_doctors_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L19", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller", + "target": "backend_src_doctors_doctors_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller", + "target": "backend_src_doctors_doctors_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller", + "target": "backend_src_doctors_doctors_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller", + "target": "backend_src_doctors_doctors_controller_doctorscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller", + "target": "backend_src_doctors_doctors_controller_doctorscontroller_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller", + "target": "backend_src_doctors_doctors_controller_doctorscontroller_findone" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller", + "target": "backend_src_doctors_doctors_controller_doctorscontroller_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller", + "target": "backend_src_doctors_doctors_controller_doctorscontroller_update" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller", + "target": "backend_src_doctors_doctors_controller_doctorscontroller_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L8", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_service_doctorsservice", + "target": "backend_src_doctors_doctors_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_service_doctorsservice", + "target": "backend_src_doctors_doctors_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_service_doctorsservice", + "target": "backend_src_doctors_doctors_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_service_doctorsservice", + "target": "backend_src_doctors_doctors_controller_doctorscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_service_doctorsservice", + "target": "backend_src_doctors_doctors_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_service_doctorsservice", + "target": "backend_src_doctors_doctors_service_doctorsservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_service_doctorsservice", + "target": "backend_src_doctors_doctors_service_doctorsservice_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_service_doctorsservice", + "target": "backend_src_doctors_doctors_service_doctorsservice_findone" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_service_doctorsservice", + "target": "backend_src_doctors_doctors_service_doctorsservice_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_service_doctorsservice", + "target": "backend_src_doctors_doctors_service_doctorsservice_update" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_service_doctorsservice", + "target": "backend_src_doctors_doctors_service_doctorsservice_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", + "source_location": "L19", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", + "target": "backend_src_doctors_dto_doctor_query_dto_ts_type" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", + "source_location": "L20", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", + "target": "backend_src_doctors_dto_doctor_query_dto_ts_isint" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", + "source_location": "L21", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", + "target": "backend_src_doctors_dto_doctor_query_dto_ts_min" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", + "source_location": "L26", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", + "target": "backend_src_doctors_dto_doctor_query_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", + "source_location": "L29", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", + "target": "backend_src_doctors_dto_doctor_query_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", + "source_location": "L30", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", + "target": "backend_src_doctors_dto_doctor_query_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", + "target": "backend_src_doctors_dto_doctor_query_dto_ts_transform" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", + "source_location": "L36", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", + "target": "backend_src_doctors_dto_doctor_query_dto_ts_isboolean" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", + "target": "backend_src_doctors_doctors_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", + "target": "backend_src_doctors_doctors_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", + "target": "backend_src_doctors_doctors_controller_doctorscontroller_findall" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", + "target": "backend_src_doctors_doctors_service_doctorsservice_findall" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", + "target": "backend_src_doctors_dto_doctor_query_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/schemas/paginated-response.schema.ts", + "source_location": "L21", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_schemas_paginated_response_schema_paginatedresponse", + "target": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/schemas/paginated-response.schema.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_schemas_paginated_response_schema_paginatedresponse", + "target": "backend_src_common_schemas_paginated_response_schema" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/schemas/paginated-response.schema.ts", + "source_location": "L13", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_schemas_paginated_response_schema_paginationmeta", + "target": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/schemas/paginated-response.schema.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_schemas_paginated_response_schema_paginationmeta", + "target": "backend_src_common_schemas_paginated_response_schema" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_addressmodal_addressmodalprops", + "target": "frontend_application_lib_store_userstore_address" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_addressmodal_addressmodalprops", + "target": "frontend_application_components_addressmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_authmodal_authmodalprops", + "target": "frontend_application_components_authmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BackButton.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_backbutton_backbuttonprops", + "target": "frontend_application_components_backbutton" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/DeleteConfirmModal.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops", + "target": "frontend_application_components_deleteconfirmmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/HeaderButton.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_headerbutton_headerbuttonprops", + "target": "frontend_application_components_headerbutton" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SearchableSelect.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_searchableselect_searchableselectprops", + "target": "frontend_application_components_searchableselect" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_topupmodal_topupmodalprops", + "target": "frontend_application_components_topupmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_ticketservice_createticketpayload", + "target": "frontend_application_lib_services_ticketservice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_ticketservice_ticket", + "target": "frontend_application_components_userdashboard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_ticketservice_ticket", + "target": "frontend_application_lib_services_ticketservice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_ticketservice_ticketmessage", + "target": "frontend_application_components_userdashboard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_ticketservice_ticketmessage", + "target": "frontend_application_lib_services_ticketservice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_userstore_address", + "target": "frontend_application_components_addressmodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_userstore_address", + "target": "frontend_application_components_userdashboard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_userstore_address", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.module.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_module_blogsmodule", + "target": "backend_src_blogs_blogs_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_module_blogsmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.module.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_module_blogsmodule", + "target": "backend_src_blogs_blogs_module" + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_service_blogfilterdto", + "target": "backend_src_common_dto_pagination_dto_paginationdto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_service_blogfilterdto", + "target": "backend_src_blogs_blogs_service" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L12", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_service_blogsservice", + "target": "backend_src_blogs_blogs_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_service_blogsservice", + "target": "backend_src_blogs_blogs_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_service_blogsservice", + "target": "backend_src_blogs_blogs_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_service_blogsservice", + "target": "backend_src_blogs_blogs_controller_blogscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_service_blogsservice", + "target": "backend_src_blogs_blogs_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_service_blogsservice", + "target": "backend_src_blogs_blogs_service_blogsservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_service_blogsservice", + "target": "backend_src_blogs_blogs_service_blogsservice_findonebyslug" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_service_blogsservice", + "target": "backend_src_blogs_blogs_service_blogsservice_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_service_blogsservice", + "target": "backend_src_blogs_blogs_service_blogsservice_getcategories" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_service_blogsservice", + "target": "backend_src_blogs_blogs_service_blogsservice_gettags" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L329", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_service_blogsservice", + "target": "backend_src_blogs_blogs_service_blogsservice_findcommentsbyslug" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_service_blogsservice", + "target": "backend_src_blogs_blogs_service_blogsservice_addcomment" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_service_blogsservice", + "target": "backend_src_blogs_blogs_service_blogsservice_findhomepage" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L28", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_common_dto_pagination_dto_ts_type" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L29", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_common_dto_pagination_dto_ts_isint" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L30", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_common_dto_pagination_dto_ts_min" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L47", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_common_dto_pagination_dto_ts_isenum" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L50", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_common_dto_pagination_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L51", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_common_dto_pagination_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L52", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_common_dto_pagination_dto_ts_isstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_admin_blogs_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_admin_blogs_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_admin_categories_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/admin-query.dto.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_admin_dto_admin_query_dto" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_admin_pets_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_admin_wiki_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_blogs_blogs_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_blogs_blogs_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_orders_orders_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_orders_orders_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_pets_pets_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_pets_pets_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_products_dto_get_products_dto" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_videos_dto_get_videos_query_dto" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_wiki_wiki_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_wiki_wiki_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_admin_blogs_controller_blogscontroller_getblogs" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_admin_blogs_service_blogsservice_getblogs" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_admin_categories_controller_categoriescontroller_getcategories" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_admin_pets_controller_petscontroller_getpets" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_admin_wiki_controller_wikicontroller_getterms" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_blogs_blogs_controller_blogscontroller_findall" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_orders_orders_controller_orderscontroller_findall" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_orders_orders_service_ordersservice_findallbyuser" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_pets_pets_controller_petscontroller_findall" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_pets_pets_service_petsservice_findalladmin" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_pets_pets_service_petsservice_findallbyuser" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_wiki_wiki_controller_wikicontroller_findall" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_wiki_wiki_service_wikiservice_findall" + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_products_dto_get_products_dto_getproductsdto" + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_paginationdto", + "target": "backend_src_common_dto_pagination_dto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/dto/pagination.dto.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto_sortorder", + "target": "backend_src_common_dto_pagination_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L30", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_validatecoupondto", + "target": "backend_src_orders_orders_controller_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_validatecoupondto", + "target": "backend_src_orders_orders_controller_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L34", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_validatecoupondto", + "target": "backend_src_orders_orders_controller_ts_isnumber" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_validatecoupondto", + "target": "backend_src_orders_orders_controller" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.module.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_module_ordersmodule", + "target": "backend_src_orders_orders_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_module_ordersmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.module.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_module_ordersmodule", + "target": "backend_src_orders_orders_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/jwt-auth.guard.ts", + "source_location": "L4", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_auth_jwt_auth_guard_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_admin_admin_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_admin_blogs_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_admin_categories_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_admin_media_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_admin_pets_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_admin_reports_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_admin_ssl_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_admin_wiki_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_auth_auth_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_b2b_b2b_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_banners_banners_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_blogs_blogs_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_cms_cms_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_contact_contact_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_doctors_doctors_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_faq_faq_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_ingredients_ingredients_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_menu_menu_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_orders_orders_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_pets_pets_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_prescriptions_prescriptions_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_products_products_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_reviews_reviews_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_settings_settings_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.spec.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_settings_settings_controller_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_smart_advisor_smart_advisor_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_testimonials_testimonials_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_tickets_tickets_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_users_users_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_videos_videos_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_wholesale_wholesale_controller" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/jwt-auth.guard.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_auth_jwt_auth_guard" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/jwt-auth.guard.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", + "target": "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_requestwithuser", + "target": "backend_src_common_guards_roles_guard" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L16", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_common_guards_roles_guard_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_admin_ssl_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_b2b_b2b_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_banners_banners_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_cms_cms_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/guards/roles.guard.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_common_guards_roles_guard_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_contact_contact_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_faq_faq_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_ingredients_ingredients_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_menu_menu_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_prescriptions_prescriptions_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_products_products_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_reviews_reviews_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_settings_settings_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.spec.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_settings_settings_controller_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_smart_advisor_smart_advisor_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_testimonials_testimonials_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_tickets_tickets_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_wholesale_wholesale_controller" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_common_guards_roles_guard" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_common_guards_roles_guard_rolesguard_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard_rolesguard", + "target": "backend_src_common_guards_roles_guard_rolesguard_canactivate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_userreqpayload", + "target": "backend_src_prescriptions_prescriptions_controller" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_metrics_controller_metricscontroller", + "target": "apiexcludecontroller" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L7", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_metrics_controller_metricscontroller", + "target": "backend_src_common_metrics_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_metrics_controller_metricscontroller", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_metrics_controller_metricscontroller", + "target": "backend_src_common_metrics_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_metrics_controller_metricscontroller", + "target": "backend_src_common_metrics_controller_metricscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_metrics_controller_metricscontroller", + "target": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_metrics_controller_metricscontroller", + "target": "backend_src_common_metrics_controller_metricscontroller_getmetrics" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/dto/update-blog.dto.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_dto_create_blog_dto_createblogdto", + "target": "backend_src_blogs_dto_update_blog_dto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/dto/create-blog.dto.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_dto_create_blog_dto_createblogdto", + "target": "backend_src_blogs_dto_create_blog_dto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/dto/update-blog.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_dto_update_blog_dto_updateblogdto", + "target": "backend_src_blogs_dto_update_blog_dto" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/dto/update-home.dto.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_dto_create_home_dto_createhomedto", + "target": "backend_src_home_dto_update_home_dto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/dto/create-home.dto.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_dto_create_home_dto_createhomedto", + "target": "backend_src_home_dto_create_home_dto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/dto/update-home.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_dto_update_home_dto_updatehomedto", + "target": "backend_src_home_dto_update_home_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_location": "L21", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_dto_get_products_dto_getproductsdto", + "target": "backend_src_products_dto_get_products_dto_ts_isenum" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_location": "L39", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_dto_get_products_dto_getproductsdto", + "target": "backend_src_products_dto_get_products_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_dto_get_products_dto_getproductsdto", + "target": "backend_src_products_dto_get_products_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_location": "L41", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_dto_get_products_dto_getproductsdto", + "target": "backend_src_products_dto_get_products_dto_ts_isstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_dto_get_products_dto_getproductsdto", + "target": "backend_src_products_products_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_dto_get_products_dto_getproductsdto", + "target": "backend_src_products_products_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_dto_get_products_dto_getproductsdto", + "target": "backend_src_products_products_controller_productscontroller_findall" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_dto_get_products_dto_getproductsdto", + "target": "backend_src_products_products_service_productsservice_findall" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_dto_get_products_dto_getproductsdto", + "target": "backend_src_products_dto_get_products_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L20", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller", + "target": "backend_src_products_products_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L21", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller", + "target": "backend_src_products_products_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller", + "target": "backend_src_products_products_controller_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller", + "target": "backend_src_products_products_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller", + "target": "backend_src_products_products_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller", + "target": "backend_src_products_products_controller_productscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller", + "target": "backend_src_products_products_controller_productscontroller_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller", + "target": "backend_src_products_products_controller_productscontroller_getactivefilters" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller", + "target": "backend_src_products_products_controller_productscontroller_getnavigationfilters" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller", + "target": "backend_src_products_products_controller_productscontroller_getdosageconfig" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller", + "target": "backend_src_products_products_controller_productscontroller_updatedosageconfig" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller", + "target": "backend_src_products_products_controller_productscontroller_findone" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.module.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_module_productsmodule", + "target": "backend_src_products_products_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_module_productsmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.module.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_module_productsmodule", + "target": "backend_src_products_products_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L7", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_service_productsservice", + "target": "backend_src_products_products_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_service_productsservice", + "target": "backend_src_products_products_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_service_productsservice", + "target": "backend_src_products_products_controller_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_service_productsservice", + "target": "backend_src_products_products_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_service_productsservice", + "target": "backend_src_products_products_service_spec" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_service_productsservice", + "target": "backend_src_products_products_controller_productscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_service_productsservice", + "target": "backend_src_products_products_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_service_productsservice", + "target": "backend_src_products_products_service_productsservice_findone" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_service_productsservice", + "target": "backend_src_products_products_service_productsservice_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L193", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_service_productsservice", + "target": "backend_src_products_products_service_productsservice_getactivefilters" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L228", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_service_productsservice", + "target": "backend_src_products_products_service_productsservice_getnavigationfilters" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_service_productsservice", + "target": "backend_src_products_products_service_productsservice_getdosageconfig" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_service_productsservice", + "target": "backend_src_products_products_service_productsservice_updatedosageconfig" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_service_productsservice", + "target": "backend_src_products_products_service_productsservice_constructor" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_dto_create_wiki_dto_createwikidto", + "target": "backend_src_wiki_dto_update_wiki_dto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/dto/create-wiki.dto.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_dto_create_wiki_dto_createwikidto", + "target": "backend_src_wiki_dto_create_wiki_dto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_dto_update_wiki_dto_updatewikidto", + "target": "backend_src_wiki_dto_update_wiki_dto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_select_selectoption", + "target": "frontend_admin_panel_src_components_ui_select" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_select_selectprops", + "target": "frontend_admin_panel_src_components_ui_select" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L28", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller", + "target": "backend_src_auth_auth_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L29", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller", + "target": "backend_src_auth_auth_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller", + "target": "backend_src_auth_auth_controller_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.module.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller", + "target": "backend_src_auth_auth_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller", + "target": "backend_src_auth_auth_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller", + "target": "backend_src_auth_auth_controller_authcontroller_adminlogin" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller", + "target": "backend_src_auth_auth_controller_authcontroller_refresh" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller", + "target": "backend_src_auth_auth_controller_authcontroller_logout" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller", + "target": "backend_src_auth_auth_controller_authcontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller", + "target": "backend_src_auth_auth_controller_authcontroller_sendotp" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller", + "target": "backend_src_auth_auth_controller_authcontroller_verifyotp" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller", + "target": "backend_src_auth_auth_controller_authcontroller_register" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller", + "target": "backend_src_auth_auth_controller_authcontroller_login" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/admin-login.dto.ts", + "source_location": "L10", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", + "target": "backend_src_auth_dto_admin_login_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/admin-login.dto.ts", + "source_location": "L11", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", + "target": "backend_src_auth_dto_admin_login_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/admin-login.dto.ts", + "source_location": "L12", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", + "target": "backend_src_auth_dto_admin_login_dto_ts_minlength" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/admin-login.dto.ts", + "source_location": "L13", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", + "target": "backend_src_auth_dto_admin_login_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/admin-login.dto.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", + "target": "backend_src_auth_dto_admin_login_dto_ts_isemail" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", + "target": "backend_src_auth_auth_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", + "target": "backend_src_auth_auth_controller_authcontroller_adminlogin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/admin-login.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", + "target": "backend_src_auth_dto_admin_login_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/login.dto.ts", + "source_location": "L10", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_login_dto_logindto", + "target": "backend_src_auth_dto_login_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/login.dto.ts", + "source_location": "L11", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_login_dto_logindto", + "target": "backend_src_auth_dto_login_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/login.dto.ts", + "source_location": "L12", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_login_dto_logindto", + "target": "backend_src_auth_dto_login_dto_ts_minlength" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/login.dto.ts", + "source_location": "L7", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_login_dto_logindto", + "target": "backend_src_auth_dto_login_dto_ts_isstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_login_dto_logindto", + "target": "backend_src_auth_auth_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_login_dto_logindto", + "target": "backend_src_auth_auth_controller_authcontroller_login" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/login.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_login_dto_logindto", + "target": "backend_src_auth_dto_login_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/register.dto.ts", + "source_location": "L21", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_register_dto_registerdto", + "target": "backend_src_auth_dto_register_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/register.dto.ts", + "source_location": "L25", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_register_dto_registerdto", + "target": "backend_src_auth_dto_register_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/register.dto.ts", + "source_location": "L26", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_register_dto_registerdto", + "target": "backend_src_auth_dto_register_dto_ts_isemail" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/register.dto.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_register_dto_registerdto", + "target": "backend_src_auth_dto_register_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/register.dto.ts", + "source_location": "L34", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_register_dto_registerdto", + "target": "backend_src_auth_dto_register_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/register.dto.ts", + "source_location": "L35", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_register_dto_registerdto", + "target": "backend_src_auth_dto_register_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/register.dto.ts", + "source_location": "L36", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_register_dto_registerdto", + "target": "backend_src_auth_dto_register_dto_ts_minlength" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_register_dto_registerdto", + "target": "backend_src_auth_auth_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_register_dto_registerdto", + "target": "backend_src_auth_auth_controller_authcontroller_register" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/register.dto.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_register_dto_registerdto", + "target": "backend_src_auth_dto_register_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/send-otp.dto.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_send_otp_dto_sendotpdto", + "target": "backend_src_auth_dto_send_otp_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/send-otp.dto.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_send_otp_dto_sendotpdto", + "target": "backend_src_auth_dto_send_otp_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/send-otp.dto.ts", + "source_location": "L7", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_send_otp_dto_sendotpdto", + "target": "backend_src_auth_dto_send_otp_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/send-otp.dto.ts", + "source_location": "L8", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_send_otp_dto_sendotpdto", + "target": "backend_src_auth_dto_send_otp_dto_ts_matches" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_send_otp_dto_sendotpdto", + "target": "backend_src_auth_auth_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_send_otp_dto_sendotpdto", + "target": "backend_src_auth_auth_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_send_otp_dto_sendotpdto", + "target": "backend_src_auth_auth_controller_authcontroller_sendotp" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_send_otp_dto_sendotpdto", + "target": "backend_src_auth_auth_service_authservice_sendotp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/send-otp.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_send_otp_dto_sendotpdto", + "target": "backend_src_auth_dto_send_otp_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/verify-otp.dto.ts", + "source_location": "L11", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "target": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/verify-otp.dto.ts", + "source_location": "L12", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "target": "backend_src_auth_dto_verify_otp_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/verify-otp.dto.ts", + "source_location": "L13", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "target": "backend_src_auth_dto_verify_otp_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/verify-otp.dto.ts", + "source_location": "L14", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "target": "length" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/verify-otp.dto.ts", + "source_location": "L8", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "target": "backend_src_auth_dto_verify_otp_dto_ts_matches" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "target": "backend_src_auth_auth_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "target": "backend_src_auth_auth_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "target": "backend_src_auth_auth_controller_authcontroller_verifyotp" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "target": "backend_src_auth_auth_service_authservice_verifyotp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/dto/verify-otp.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", + "target": "backend_src_auth_dto_verify_otp_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L50", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_auth_auth_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.spec.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_auth_auth_service_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/sms.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_sms_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_contact_contact_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_orders_orders_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.spec.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_orders_orders_service_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_payment_payment_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.module.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_prescriptions_prescriptions_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_prescriptions_prescriptions_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_settings_settings_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_wholesale_wholesale_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_auth_auth_service_authservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_contact_contact_service_contactservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_orders_orders_service_ordersservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_payment_payment_service_paymentservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_settings_settings_service_settingsservice_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1015", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_sendsms" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_postasmx" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_recordlog" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_getsmslogs" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_deletesmslog" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L255", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_clearallsmslogs" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_parsepatternsxml" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L300", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_getcredit" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_getpatterns" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L477", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_addpattern" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L556", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_editpattern" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L611", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_savelocalpattern" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L639", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_updatelocalpattern" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L679", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L807", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_testsms" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L932", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_sendotp" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L945", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L964", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_sendshippingnotification" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L981", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_sendb2bnotification" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L997", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder" + }, + { + "relation": "imports", + "_origin": "ast", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "context": "import", + "source_file": "backend/src/settings/settings.service.spec.ts", + "source_location": "L4", + "weight": 1.0, + "source": "backend_src_common_services_sms_service_smsservice", + "target": "backend_src_settings_settings_service_spec" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", + "source_location": "L14", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", + "target": "backend_src_settings_dto_sms_log_query_dto_ts_type" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", + "source_location": "L15", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", + "target": "backend_src_settings_dto_sms_log_query_dto_ts_isnumber" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", + "source_location": "L41", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", + "target": "backend_src_settings_dto_sms_log_query_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", + "source_location": "L44", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", + "target": "backend_src_settings_dto_sms_log_query_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", + "source_location": "L49", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", + "target": "backend_src_settings_dto_sms_log_query_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", + "source_location": "L50", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", + "target": "backend_src_settings_dto_sms_log_query_dto_ts_isin" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", + "target": "backend_src_settings_settings_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", + "target": "backend_src_settings_settings_controller_settingscontroller_getsmslogs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", + "target": "backend_src_settings_dto_sms_log_query_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L26", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L27", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_getscientificterms" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_getseosettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_updateseosettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_getsmssettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_getsmscredit" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_testsms" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_getpatterns" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_addpattern" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_editpattern" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_getsmslogs" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_deletesmslog" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_getuitexts" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_putuitext" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_patchuitext" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_getfinancial" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller", + "target": "backend_src_settings_settings_controller_settingscontroller_updatefinancial" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L144", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_controller_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_spec" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_controller_settingscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_onmoduleinit" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_getuitexts" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_updateuitext" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_getfinancialsettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_getscientificterms" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_upsertscientificterm" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L397", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_deletescientificterm" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L403", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_getcategorysetting" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L499", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_updatecategorysetting" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L583", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_getsmssettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L587", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_getsmscredit" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L591", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_updatesmssettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L600", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_testsms" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L604", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_getpatterns" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L608", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_addpattern" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L612", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_editpattern" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L616", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_getsmslogs" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L620", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_deletesmslog" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L624", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice", + "target": "backend_src_settings_settings_service_settingsservice_clearallsmslogs" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/dto/create-video.dto.ts", + "source_location": "L41", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_create_video_dto_createvideodto", + "target": "backend_src_videos_dto_create_video_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/dto/create-video.dto.ts", + "source_location": "L46", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_create_video_dto_createvideodto", + "target": "backend_src_videos_dto_create_video_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/dto/create-video.dto.ts", + "source_location": "L50", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_create_video_dto_createvideodto", + "target": "backend_src_videos_dto_create_video_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/dto/create-video.dto.ts", + "source_location": "L54", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_create_video_dto_createvideodto", + "target": "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/dto/create-video.dto.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_create_video_dto_createvideodto", + "target": "backend_src_videos_dto_create_video_dto_ts_isboolean" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/dto/create-video.dto.ts", + "source_location": "L59", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_create_video_dto_createvideodto", + "target": "backend_src_videos_dto_create_video_dto_ts_isoptional" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_create_video_dto_createvideodto", + "target": "backend_src_videos_videos_controller_videoscontroller_update" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_create_video_dto_createvideodto", + "target": "backend_src_videos_videos_service_videosservice_update" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_create_video_dto_createvideodto", + "target": "backend_src_videos_videos_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_create_video_dto_createvideodto", + "target": "backend_src_videos_videos_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_create_video_dto_createvideodto", + "target": "backend_src_videos_videos_controller_videoscontroller_create" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_create_video_dto_createvideodto", + "target": "backend_src_videos_videos_service_videosservice_create" + }, + { + "relation": "inherits", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/dto/create-video.dto.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_create_video_dto_createvideodto", + "target": "backend_src_videos_dto_create_video_dto_updatevideodto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/dto/create-video.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_create_video_dto_createvideodto", + "target": "backend_src_videos_dto_create_video_dto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/dto/create-video.dto.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_create_video_dto_updatevideodto", + "target": "backend_src_videos_dto_create_video_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", + "source_location": "L10", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", + "target": "backend_src_videos_dto_get_videos_query_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", + "source_location": "L11", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", + "target": "backend_src_videos_dto_get_videos_query_dto_ts_transform" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", + "source_location": "L16", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", + "target": "backend_src_videos_dto_get_videos_query_dto_ts_isboolean" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", + "source_location": "L7", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", + "target": "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", + "target": "backend_src_videos_videos_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", + "target": "backend_src_videos_videos_controller_videoscontroller_findall" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", + "target": "backend_src_videos_dto_get_videos_query_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller", + "target": "backend_src_videos_videos_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L24", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller", + "target": "backend_src_videos_videos_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller", + "target": "backend_src_videos_videos_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller", + "target": "backend_src_videos_videos_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller", + "target": "backend_src_videos_videos_controller_videoscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller", + "target": "backend_src_videos_videos_controller_videoscontroller_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller", + "target": "backend_src_videos_videos_controller_videoscontroller_findone" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller", + "target": "backend_src_videos_videos_controller_videoscontroller_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller", + "target": "backend_src_videos_videos_controller_videoscontroller_update" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller", + "target": "backend_src_videos_videos_controller_videoscontroller_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.module.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_module_videosmodule", + "target": "backend_src_videos_videos_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_module_videosmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.module.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_module_videosmodule", + "target": "backend_src_videos_videos_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_service_videoquery", + "target": "backend_src_videos_videos_service" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L13", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_service_videosservice", + "target": "backend_src_videos_videos_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_service_videosservice", + "target": "backend_src_videos_videos_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_service_videosservice", + "target": "backend_src_videos_videos_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_service_videosservice", + "target": "backend_src_videos_videos_controller_videoscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_service_videosservice", + "target": "backend_src_videos_videos_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_service_videosservice", + "target": "backend_src_videos_videos_service_videosservice_remove" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_service_videosservice", + "target": "backend_src_videos_videos_service_videosservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_service_videosservice", + "target": "backend_src_videos_videos_service_videosservice_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_service_videosservice", + "target": "backend_src_videos_videos_service_videosservice_findone" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_service_videosservice", + "target": "backend_src_videos_videos_service_videosservice_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_service_videosservice", + "target": "backend_src_videos_videos_service_videosservice_update" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/scientificTerms.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_scientificterms_scientificterm", + "target": "backend_prisma_scientificterms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_buttonprops", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_buttonsize", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_buttonvariant", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_doctorsmanager_doctor", + "target": "frontend_admin_panel_src_pages_doctorsmanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_faqmanager_faq", + "target": "frontend_admin_panel_src_pages_faqmanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_reviews_productreview", + "target": "frontend_admin_panel_src_pages_reviews" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_sslsettingspage_sslstatus", + "target": "frontend_admin_panel_src_pages_sslsettingspage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/FormField.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_formfield_formfieldprops", + "target": "frontend_admin_panel_src_components_ui_formfield" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ContactFormClient.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_contactformclient_contactinfoitem", + "target": "frontend_application_components_contactformclient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_loginmodal_loginmodalprops", + "target": "frontend_application_components_loginmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops", + "target": "frontend_application_components_prescriptionuploadmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_apierrorpayload", + "target": "frontend_application_lib_services_api" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_apierr", + "target": "frontend_application_lib_services_authservice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_authresponse", + "target": "frontend_application_lib_services_authservice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_authservice", + "target": "frontend_application_components_authmodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_authservice", + "target": "frontend_application_components_loginmodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_authservice", + "target": "frontend_application_lib_store_tests_userstore_test" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_authservice", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_authservice", + "target": "frontend_application_lib_services_authservice" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_authservice", + "target": "frontend_application_lib_services_authservice_authservice_login" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_authservice", + "target": "frontend_application_lib_services_authservice_authservice_getprofile" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_authservice", + "target": "frontend_application_lib_services_authservice_authservice_updateprofile" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_authservice", + "target": "frontend_application_lib_services_authservice_authservice_logout" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_authservice", + "target": "frontend_application_lib_services_authservice_authservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_authservice", + "target": "frontend_application_lib_services_authservice_authservice_getinstance" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_authservice", + "target": "frontend_application_lib_services_authservice_authservice_sendotp" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_authservice", + "target": "frontend_application_lib_services_authservice_authservice_verifyotp" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_authservice", + "target": "frontend_application_lib_services_authservice_authservice_register" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_user", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice_user", + "target": "frontend_application_lib_services_authservice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_userstore_transaction", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_userstore_userprofile", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_userstore_userrole", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_userstore_userstore", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Input.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_input_inputprops", + "target": "frontend_admin_panel_src_components_ui_input" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Textarea.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_textarea_textareaprops", + "target": "frontend_admin_panel_src_components_ui_textarea" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller", + "target": "backend_src_menu_menu_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L24", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller", + "target": "backend_src_menu_menu_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller", + "target": "backend_src_menu_menu_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller", + "target": "backend_src_menu_menu_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller", + "target": "backend_src_menu_menu_controller_menucontroller_remove" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller", + "target": "backend_src_menu_menu_controller_menucontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller", + "target": "backend_src_menu_menu_controller_menucontroller_findbytype" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller", + "target": "backend_src_menu_menu_controller_menucontroller_findbytypeparam" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller", + "target": "backend_src_menu_menu_controller_menucontroller_findalladmin" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller", + "target": "backend_src_menu_menu_controller_menucontroller_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller", + "target": "backend_src_menu_menu_controller_menucontroller_reorder" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller", + "target": "backend_src_menu_menu_controller_menucontroller_update" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menuservice", + "target": "backend_src_menu_menu_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menuservice", + "target": "backend_src_menu_menu_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menuservice", + "target": "backend_src_menu_menu_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menuservice", + "target": "backend_src_menu_menu_controller_menucontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menuservice", + "target": "backend_src_menu_menu_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menuservice", + "target": "backend_src_menu_menu_service_menuservice_onmoduleinit" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L181", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menuservice", + "target": "backend_src_menu_menu_service_menuservice_findbytype" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menuservice", + "target": "backend_src_menu_menu_service_menuservice_findalladmin" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menuservice", + "target": "backend_src_menu_menu_service_menuservice_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menuservice", + "target": "backend_src_menu_menu_service_menuservice_seedifempty" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menuservice", + "target": "backend_src_menu_menu_service_menuservice_update" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menuservice", + "target": "backend_src_menu_menu_service_menuservice_remove" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menuservice", + "target": "backend_src_menu_menu_service_menuservice_reorder" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menuservice", + "target": "backend_src_menu_menu_service_menuservice_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/entities/blog.entity.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_entities_blog_entity_blog", + "target": "backend_src_blogs_entities_blog_entity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/entities/home.entity.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_entities_home_entity_home", + "target": "backend_src_home_entities_home_entity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/entities/wiki.entity.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_entities_wiki_entity_wiki", + "target": "backend_src_wiki_entities_wiki_entity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/vitest.setup.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_vitest_setup_mockintersectionobserver", + "target": "frontend_application_vitest_setup" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L42", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_payment_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_payment_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_payment_controller_paymentcontroller_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_payment_service_paymentservice_constructor" + }, + { + "relation": "implements", + "context": "type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_getfrontendurl" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L130", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_getbackendurl" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_requestpayment" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_getstarturl" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_verifypayment" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_inquirypayment" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_checkhealth" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_requestlazypayment" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L422", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_verifylazypayment" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L465", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_getaccesstoken" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_getgatewayname" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L516", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_apirequest" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_callwithretry" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L575", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_getwalletlist" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L582", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_getwalletbalance" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L589", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_requestrefund" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L625", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_inquirerefund" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L643", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_getrefundlist" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L667", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_getgatewaytransactionsreport" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L701", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_getcheckoutreport" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L722", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_getcheckoutqueuereport" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L731", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_inquirecheckoutreport" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L746", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_createsubmerchant" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L761", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_getsubmerchantlist" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L768", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_editsubmerchant" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L779", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_getresultmessage" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L816", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_getstatusmessage" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice", + "target": "backend_src_payment_zibal_service_zibalservice_getmerchant" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L43", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_zibal_ebank_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_payment_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_payment_controller_paymentcontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_zibal_ebank_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L152", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_createcheckout" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquirecheckout" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getcheckoutlist" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_cancelcheckout" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L240", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountlist" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L252", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountbalance" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getstatementlist" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L294", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getidentifiedpaymentlist" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L318", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_changeidentifiedpaymentstatus" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquireidentifiedpayment" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccesstoken" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/verify-payment.dto.ts", + "source_location": "L45", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", + "target": "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/verify-payment.dto.ts", + "source_location": "L46", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", + "target": "backend_src_payment_dto_verify_payment_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/verify-payment.dto.ts", + "source_location": "L47", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", + "target": "backend_src_payment_dto_verify_payment_dto_ts_isstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", + "target": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", + "target": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/verify-payment.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", + "target": "backend_src_payment_dto_verify_payment_dto" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops", + "target": "frontend_application_lib_data_products_product" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops", + "target": "frontend_application_components_catalog_catalogpagespread" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_catalogpagespread_categorymeta", + "target": "frontend_application_components_catalog_flipbookcatalog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_catalogpagespread_categorymeta", + "target": "frontend_application_components_catalog_catalogpagespread" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops", + "target": "frontend_application_lib_data_products_product" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops", + "target": "frontend_application_components_catalog_flipbookcatalog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_dosageresult", + "target": "frontend_application_lib_data_products" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_faq", + "target": "frontend_application_lib_data_products" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_ingredientinfo", + "target": "frontend_application_components_ingredientwiki" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_ingredientinfo", + "target": "frontend_application_lib_data_products" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_pettype", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_pettype", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_pettype", + "target": "frontend_application_lib_services_productservice_productservice_getproducts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_pettype", + "target": "frontend_application_lib_data_products" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_lib_store_cartstore_cartitem" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_lib_store_cartstore_cartstore" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_lib_services_productservice_productservice_getproductbyid" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_lib_services_productservice_productservice_getproductbyslug" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_lib_services_productservice_productservice_getproducts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/catalog/CatalogClient.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_app_catalog_catalogclient" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_components_b2bportal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPage.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_components_blogpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_components_cartdrawer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_components_catalog_catalogpagespread" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_components_catalog_flipbookcatalog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_components_catalog_productdetailmodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_components_featuredproducts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_components_ingredientwiki" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_components_petprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SearchResultsPage.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_components_searchresultspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_product", + "target": "frontend_application_lib_data_products" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_specialist", + "target": "frontend_application_lib_data_products" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_backendproduct", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/catalog/CatalogClient.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_app_catalog_catalogclient" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/feed.xml/route.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_app_shop_feed_xml_route" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_app_shop_slug_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_app_sitemap" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_app_sitemap_categories_xml_route" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap-products.xml/route.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_app_sitemap_products_xml_route" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_components_b2bportal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPage.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_components_blogpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_components_cartdrawer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_components_featuredproducts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_components_header" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_components_ingredientwiki" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_components_petprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SearchResultsPage.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_components_searchresultspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_components_smartadvisor" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_components_tests_cartdrawer_test" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_components_tests_featuredproducts_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L383", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L235", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_lib_services_productservice_productservice_serverfetch" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L246", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_lib_services_productservice_productservice_getproducts" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_lib_services_productservice_productservice_getproductbyid" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_lib_services_productservice_productservice_getproductbyslug" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L313", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L343", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_lib_services_productservice_productservice_getactivefilters" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_lib_services_productservice_productservice_getnavigationfilters" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_lib_services_productservice_productservice_getbanners" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_lib_services_productservice_productservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_lib_services_productservice_productservice_getinstance" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice", + "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_ingredient", + "target": "frontend_application_components_ingredientwiki" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_ingredient", + "target": "frontend_application_lib_types" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modalprops", + "target": "frontend_admin_panel_src_components_ui_modal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem", + "target": "frontend_admin_panel_src_pages_contactsubmissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission", + "target": "frontend_admin_panel_src_pages_contactsubmissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_menumanager_menuitem", + "target": "frontend_admin_panel_src_pages_menumanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_menumanager_menutype", + "target": "frontend_admin_panel_src_pages_menumanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_tickets_ticket", + "target": "frontend_admin_panel_src_pages_tickets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_tickets_ticketmessage", + "target": "frontend_admin_panel_src_pages_tickets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_wiki_productitem", + "target": "frontend_admin_panel_src_pages_wiki" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_wiki_wikiterm", + "target": "frontend_admin_panel_src_pages_wiki" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_maskablefield_maskablefieldprops", + "target": "frontend_admin_panel_src_components_ui_maskablefield" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_routeerrorboundary_props", + "target": "frontend_admin_panel_src_components_routeerrorboundary" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", + "target": "frontend_admin_panel_src_components_routeerrorboundary" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", + "target": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_getderivedstatefromerror" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", + "target": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_componentdidcatch" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", + "target": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_handlereload" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", + "target": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_handlegohome" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", + "target": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_render" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_routeerrorboundary_state", + "target": "frontend_admin_panel_src_components_routeerrorboundary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_cms_herobanner", + "target": "frontend_admin_panel_src_pages_cms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_cms_vettestimonial", + "target": "frontend_admin_panel_src_pages_cms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_dashboard_categorydist", + "target": "frontend_admin_panel_src_pages_dashboard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_dashboard_dashboarddata", + "target": "frontend_admin_panel_src_pages_dashboard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_reports_bestselleritem", + "target": "frontend_admin_panel_src_pages_reports" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_reports_categorydistitem", + "target": "frontend_admin_panel_src_pages_reports" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_reports_customtooltipprops", + "target": "frontend_admin_panel_src_pages_reports" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_reports_reportdata", + "target": "frontend_admin_panel_src_pages_reports" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_reports_topcouponitem", + "target": "frontend_admin_panel_src_pages_reports" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", + "source_location": "L10", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", + "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", + "source_location": "L12", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", + "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", + "source_location": "L20", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", + "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", + "source_location": "L21", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", + "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", + "source_location": "L22", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", + "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", + "target": "backend_src_wholesale_wholesale_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", + "target": "backend_src_wholesale_wholesale_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", + "target": "backend_src_wholesale_dto_wholesale_apply_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L18", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", + "target": "backend_src_wholesale_wholesale_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L19", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", + "target": "backend_src_wholesale_wholesale_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", + "target": "backend_src_wholesale_wholesale_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", + "target": "backend_src_wholesale_wholesale_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L7", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_service_wholesaleservice", + "target": "backend_src_wholesale_wholesale_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_service_wholesaleservice", + "target": "backend_src_wholesale_wholesale_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_service_wholesaleservice", + "target": "backend_src_wholesale_wholesale_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_service_wholesaleservice", + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_service_wholesaleservice", + "target": "backend_src_wholesale_wholesale_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_service_wholesaleservice", + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_service_wholesaleservice", + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_service_wholesaleservice", + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_service_wholesaleservice", + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_service_wholesaleservice", + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L19", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller", + "target": "backend_src_b2b_b2b_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L20", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller", + "target": "backend_src_b2b_b2b_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller", + "target": "backend_src_b2b_b2b_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller", + "target": "backend_src_b2b_b2b_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller", + "target": "backend_src_b2b_b2b_controller_b2bcontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller", + "target": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller", + "target": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller", + "target": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller", + "target": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller", + "target": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller", + "target": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L13", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_service_b2bservice", + "target": "backend_src_b2b_b2b_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_service_b2bservice", + "target": "backend_src_b2b_b2b_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_service_b2bservice", + "target": "backend_src_b2b_b2b_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_service_b2bservice", + "target": "backend_src_b2b_b2b_controller_b2bcontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_service_b2bservice", + "target": "backend_src_b2b_b2b_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_service_b2bservice", + "target": "backend_src_b2b_b2b_service_b2bservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_service_b2bservice", + "target": "backend_src_b2b_b2b_service_b2bservice_createinquiry" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_service_b2bservice", + "target": "backend_src_b2b_b2b_service_b2bservice_findallinquiries" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_service_b2bservice", + "target": "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_service_b2bservice", + "target": "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_service_b2bservice", + "target": "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_service_b2bservice", + "target": "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", + "target": "backend_src_b2b_b2b_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", + "target": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", + "target": "backend_src_b2b_b2b_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_skeleton_skeletonprops", + "target": "frontend_application_components_skeleton" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_usepetstore_healthlog", + "target": "frontend_application_components_petprofile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_usepetstore_healthlog", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_usepetstore_petconsumption", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_usepetstore_petprofile", + "target": "frontend_application_components_petprofile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_usepetstore_petprofile", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_usepetstore_petstore", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_usepetstore_reminder", + "target": "frontend_application_components_petprofile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_usepetstore_reminder", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L17", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller", + "target": "backend_src_faq_faq_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L18", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller", + "target": "backend_src_faq_faq_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller", + "target": "backend_src_faq_faq_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller", + "target": "backend_src_faq_faq_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller", + "target": "backend_src_faq_faq_controller_faqcontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller", + "target": "backend_src_faq_faq_controller_faqcontroller_findactive" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller", + "target": "backend_src_faq_faq_controller_faqcontroller_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller", + "target": "backend_src_faq_faq_controller_faqcontroller_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller", + "target": "backend_src_faq_faq_controller_faqcontroller_reorder" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller", + "target": "backend_src_faq_faq_controller_faqcontroller_update" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller", + "target": "backend_src_faq_faq_controller_faqcontroller_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L4", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_service_faqservice", + "target": "backend_src_faq_faq_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_service_faqservice", + "target": "backend_src_faq_faq_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_service_faqservice", + "target": "backend_src_faq_faq_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_service_faqservice", + "target": "backend_src_faq_faq_controller_faqcontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_service_faqservice", + "target": "backend_src_faq_faq_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_service_faqservice", + "target": "backend_src_faq_faq_service_faqservice_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_service_faqservice", + "target": "backend_src_faq_faq_service_faqservice_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_service_faqservice", + "target": "backend_src_faq_faq_service_faqservice_update" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_service_faqservice", + "target": "backend_src_faq_faq_service_faqservice_remove" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_service_faqservice", + "target": "backend_src_faq_faq_service_faqservice_reorder" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_service_faqservice", + "target": "backend_src_faq_faq_service_faqservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_service_faqservice", + "target": "backend_src_faq_faq_service_faqservice_findactive" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptdata", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptdata", + "target": "frontend_admin_panel_src_components_transactionreceiptmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodalprops", + "target": "frontend_admin_panel_src_components_transactionreceiptmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/ThSort.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_thsort_thsortprops", + "target": "frontend_admin_panel_src_components_ui_thsort" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_transactions_gatewayhealth", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_transactions_stats", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_transactions_transaction", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/utils/useTableParams.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_utils_usetableparams_usetableparamsoptions", + "target": "frontend_admin_panel_src_utils_usetableparams" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L24", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller", + "target": "backend_src_admin_categories_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L25", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller", + "target": "backend_src_admin_categories_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L26", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller", + "target": "backend_src_admin_categories_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L27", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller", + "target": "backend_src_admin_categories_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller", + "target": "backend_src_admin_categories_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller", + "target": "backend_src_admin_categories_controller_categoriescontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller", + "target": "backend_src_admin_categories_controller_categoriescontroller_getcategories" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller", + "target": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller", + "target": "backend_src_admin_categories_controller_categoriescontroller_createcategory" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller", + "target": "backend_src_admin_categories_controller_categoriescontroller_updatecategory" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller", + "target": "backend_src_admin_categories_controller_categoriescontroller_deletecategory" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L11", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_service_categoriesservice", + "target": "backend_src_admin_categories_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_service_categoriesservice", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_service_categoriesservice", + "target": "backend_src_admin_categories_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_service_categoriesservice", + "target": "backend_src_admin_categories_controller_categoriescontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_service_categoriesservice", + "target": "backend_src_admin_categories_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_service_categoriesservice", + "target": "backend_src_admin_categories_service_categoriesservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_service_categoriesservice", + "target": "backend_src_admin_categories_service_categoriesservice_getcategories" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_service_categoriesservice", + "target": "backend_src_admin_categories_service_categoriesservice_getallcategoriesraw" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_service_categoriesservice", + "target": "backend_src_admin_categories_service_categoriesservice_createcategory" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_service_categoriesservice", + "target": "backend_src_admin_categories_service_categoriesservice_updatecategory" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_service_categoriesservice", + "target": "backend_src_admin_categories_service_categoriesservice_deletecategory" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPage.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_blogpage_blogcategory", + "target": "frontend_application_components_blogpage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPage.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_blogpage_blogpostitem", + "target": "frontend_application_components_blogpage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPostClient.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_blogpostclient_blogpostclientprops", + "target": "frontend_application_components_blogpostclient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_blogpreviewsection_blogpost", + "target": "frontend_application_components_blogpreviewsection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", + "target": "frontend_application_components_catalog_productdetailmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops", + "target": "frontend_application_components_orderdetailsmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PodcastPlayerModal.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_podcastplayermodal_podcastplayermodalprops", + "target": "frontend_application_components_podcastplayermodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SafeImage.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimageprops", + "target": "frontend_application_components_safeimage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_testimonialssection_testimonial", + "target": "frontend_application_components_testimonialssection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_vetgallery_displayvideoitem", + "target": "frontend_application_components_vetgallery" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_vetgallery_testimonialitem", + "target": "frontend_application_components_vetgallery" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VideoModalPlayer.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_videomodalplayer_videomodalplayerprops", + "target": "frontend_application_components_videomodalplayer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_videoservice_video", + "target": "frontend_application_components_vetgallery" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_videoservice_video", + "target": "frontend_application_components_videospage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/videoService.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_videoservice_video", + "target": "frontend_application_lib_services_videoservice" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L19", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller", + "target": "backend_src_admin_media_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L20", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller", + "target": "backend_src_admin_media_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L21", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller", + "target": "backend_src_admin_media_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller", + "target": "backend_src_admin_media_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller", + "target": "backend_src_admin_media_controller_mediacontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller", + "target": "backend_src_admin_media_controller_mediacontroller_getallmedia" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller", + "target": "backend_src_admin_media_controller_mediacontroller_uploadfile" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller", + "target": "backend_src_admin_media_controller_mediacontroller_deletemanymedia" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller", + "target": "backend_src_admin_media_controller_mediacontroller_deletemedia" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller", + "target": "backend_src_admin_media_controller_mediacontroller_updatemedia" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L19", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller", + "target": "backend_src_admin_ssl_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L20", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller", + "target": "backend_src_admin_ssl_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L21", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller", + "target": "backend_src_admin_ssl_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L22", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller", + "target": "backend_src_common_decorators_roles_decorator_roles" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller", + "target": "backend_src_admin_ssl_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller", + "target": "backend_src_admin_ssl_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller", + "target": "backend_src_admin_ssl_controller_sslcontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller", + "target": "backend_src_admin_ssl_controller_sslcontroller_getstatus" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller", + "target": "backend_src_admin_ssl_controller_sslcontroller_updatebytext" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller", + "target": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller", + "target": "backend_src_admin_ssl_controller_sslcontroller_testdomain" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L22", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice", + "target": "backend_src_admin_ssl_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice", + "target": "backend_src_admin_ssl_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice", + "target": "backend_src_admin_ssl_controller_sslcontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice", + "target": "backend_src_admin_ssl_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice", + "target": "backend_src_admin_ssl_service_sslservice_updatecertificates" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice", + "target": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice", + "target": "backend_src_admin_ssl_service_sslservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice", + "target": "backend_src_admin_ssl_service_sslservice_getcertpath" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice", + "target": "backend_src_admin_ssl_service_sslservice_getkeypath" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice", + "target": "backend_src_admin_ssl_service_sslservice_toshamsi" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice", + "target": "backend_src_admin_ssl_service_sslservice_getstatus" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L19", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller", + "target": "backend_src_banners_banners_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L20", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller", + "target": "backend_src_banners_banners_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller", + "target": "backend_src_banners_banners_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller", + "target": "backend_src_banners_banners_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller", + "target": "backend_src_banners_banners_controller_bannerscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller", + "target": "backend_src_banners_banners_controller_bannerscontroller_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller", + "target": "backend_src_banners_banners_controller_bannerscontroller_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller", + "target": "backend_src_banners_banners_controller_bannerscontroller_reorder" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller", + "target": "backend_src_banners_banners_controller_bannerscontroller_update" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller", + "target": "backend_src_banners_banners_controller_bannerscontroller_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_service_bannersservice", + "target": "backend_src_banners_banners_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_service_bannersservice", + "target": "backend_src_banners_banners_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_service_bannersservice", + "target": "backend_src_banners_banners_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_service_bannersservice", + "target": "backend_src_banners_banners_controller_bannerscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_service_bannersservice", + "target": "backend_src_banners_banners_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_service_bannersservice", + "target": "backend_src_banners_banners_service_bannersservice_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_service_bannersservice", + "target": "backend_src_banners_banners_service_bannersservice_update" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_service_bannersservice", + "target": "backend_src_banners_banners_service_bannersservice_remove" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_service_bannersservice", + "target": "backend_src_banners_banners_service_bannersservice_reorder" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_service_bannersservice", + "target": "backend_src_banners_banners_service_bannersservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_service_bannersservice", + "target": "backend_src_banners_banners_service_bannersservice_findall" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L18", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", + "target": "backend_src_testimonials_testimonials_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L19", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", + "target": "backend_src_testimonials_testimonials_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", + "target": "backend_src_testimonials_testimonials_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", + "target": "backend_src_testimonials_testimonials_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findhomepage" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_service_testimonialsservice", + "target": "backend_src_testimonials_testimonials_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_service_testimonialsservice", + "target": "backend_src_testimonials_testimonials_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_service_testimonialsservice", + "target": "backend_src_testimonials_testimonials_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_service_testimonialsservice", + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_service_testimonialsservice", + "target": "backend_src_testimonials_testimonials_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_service_testimonialsservice", + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_findhomepage" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_service_testimonialsservice", + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_service_testimonialsservice", + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_update" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_service_testimonialsservice", + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_remove" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_service_testimonialsservice", + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_service_testimonialsservice", + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_findall" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L10", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_controller_homecontroller", + "target": "backend_src_home_home_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L11", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_controller_homecontroller", + "target": "backend_src_home_home_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_controller_homecontroller", + "target": "backend_src_home_home_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_controller_homecontroller", + "target": "backend_src_home_home_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_controller_homecontroller", + "target": "backend_src_home_home_controller_homecontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_controller_homecontroller", + "target": "backend_src_home_home_controller_homecontroller_gethomedata" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.module.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_module_homemodule", + "target": "backend_src_home_home_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_module_homemodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.module.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_module_homemodule", + "target": "backend_src_home_home_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L4", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_service_homeservice", + "target": "backend_src_home_home_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_service_homeservice", + "target": "backend_src_home_home_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_service_homeservice", + "target": "backend_src_home_home_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_service_homeservice", + "target": "backend_src_home_home_controller_homecontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_service_homeservice", + "target": "backend_src_home_home_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_service_homeservice", + "target": "backend_src_home_home_service_homeservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_service_homeservice", + "target": "backend_src_home_home_service_homeservice_gethomedata" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L18", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", + "target": "backend_src_ingredients_ingredients_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L19", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", + "target": "backend_src_ingredients_ingredients_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", + "target": "backend_src_ingredients_ingredients_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", + "target": "backend_src_ingredients_ingredients_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_service_ingredientsservice", + "target": "backend_src_ingredients_ingredients_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_service_ingredientsservice", + "target": "backend_src_ingredients_ingredients_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_service_ingredientsservice", + "target": "backend_src_ingredients_ingredients_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_service_ingredientsservice", + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_service_ingredientsservice", + "target": "backend_src_ingredients_ingredients_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_service_ingredientsservice", + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_findone" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_service_ingredientsservice", + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_service_ingredientsservice", + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_update" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_service_ingredientsservice", + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_remove" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_service_ingredientsservice", + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_service_ingredientsservice", + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_findall" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_orderservice_apierr", + "target": "frontend_application_lib_services_orderservice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_orderservice_order", + "target": "frontend_application_lib_services_orderservice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_orderservice_orderitem", + "target": "frontend_application_lib_services_orderservice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_orderservice_orderservice", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_orderservice_orderservice", + "target": "frontend_application_lib_store_tests_cartstore_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_orderservice_orderservice", + "target": "frontend_application_lib_services_orderservice" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_orderservice_orderservice", + "target": "frontend_application_lib_services_orderservice_orderservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_orderservice_orderservice", + "target": "frontend_application_lib_services_orderservice_orderservice_getinstance" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_orderservice_orderservice", + "target": "frontend_application_lib_services_orderservice_orderservice_createorder" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_orderservice_orderservice", + "target": "frontend_application_lib_services_orderservice_orderservice_getuserorders" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_orderservice_orderservice", + "target": "frontend_application_lib_services_orderservice_orderservice_getorderbyid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_cartstore_cartitem", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_cartstore_cartstore", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_cartstore_order", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L22", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller_ts_controller" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L24", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L25", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_common_decorators_roles_decorator_roles" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L26", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller_ts_apibearerauth" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller_cmscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller_cmscontroller_getherobanners" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller_cmscontroller_createherobanner" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller_cmscontroller_updateherobanner" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller", + "target": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L9", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_controller_cmscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_service_cmsservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_service_cmsservice_getherobanners" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_service_cmsservice_createherobanner" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_service_cmsservice_updateherobanner" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_service_cmsservice_deleteherobanner" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_service_cmsservice_getvettestimonials" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_service_cmsservice_createvettestimonial" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_service_cmsservice_updatevettestimonial" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_service_cmsservice_deletevettestimonial" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_service_cmsservice_getsmartadvisorrules" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service_cmsservice", + "target": "backend_src_cms_cms_service_cmsservice_deletesmartadvisorrule" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L20", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createherobannerdto", + "target": "backend_src_cms_dto_cms_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createherobannerdto", + "target": "backend_src_cms_dto_cms_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L36", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createherobannerdto", + "target": "backend_src_cms_dto_cms_dto_ts_isnumber" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L39", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createherobannerdto", + "target": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createherobannerdto", + "target": "backend_src_cms_dto_cms_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L41", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createherobannerdto", + "target": "backend_src_cms_dto_cms_dto_ts_isboolean" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createherobannerdto", + "target": "backend_src_cms_cms_controller_cmscontroller_updateherobanner" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createherobannerdto", + "target": "backend_src_cms_cms_service_cmsservice_updateherobanner" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createherobannerdto", + "target": "backend_src_cms_cms_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createherobannerdto", + "target": "backend_src_cms_cms_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createherobannerdto", + "target": "backend_src_cms_cms_controller_cmscontroller_createherobanner" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createherobannerdto", + "target": "backend_src_cms_cms_service_cmsservice_createherobanner" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createherobannerdto", + "target": "backend_src_cms_dto_cms_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L85", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "target": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L86", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "target": "backend_src_cms_dto_cms_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L91", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "target": "isuuid" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L94", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "target": "backend_src_cms_dto_cms_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L95", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "target": "backend_src_cms_dto_cms_dto_ts_isstring" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "target": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "target": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "target": "backend_src_cms_cms_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "target": "backend_src_cms_cms_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "target": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "target": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", + "target": "backend_src_cms_dto_cms_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L60", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "target": "backend_src_cms_dto_cms_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L61", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "target": "backend_src_cms_dto_cms_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L71", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "target": "backend_src_cms_dto_cms_dto_ts_isnumber" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L74", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "target": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L75", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "target": "backend_src_cms_dto_cms_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L76", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "target": "backend_src_cms_dto_cms_dto_ts_isboolean" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "target": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "target": "backend_src_cms_cms_service_cmsservice_updatevettestimonial" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "target": "backend_src_cms_cms_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "target": "backend_src_cms_cms_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "target": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "target": "backend_src_cms_cms_service_cmsservice_createvettestimonial" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/dto/cms.dto.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", + "target": "backend_src_cms_dto_cms_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L25", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L26", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L27", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L28", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_blogscontroller_deleteblogtag" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_blogscontroller_getblogbyid" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_blogscontroller_createblog" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_blogscontroller_updateblog" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_blogscontroller_deleteblog" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_blogscontroller_getcomments" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L165", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_blogscontroller_deletecomment" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_blogscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_blogscontroller_getblogs" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_blogscontroller_getauthors" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_blogscontroller_getblogcategories" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_blogscontroller_createblogcategory" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_blogscontroller_deleteblogcategory" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_blogscontroller_getblogtags" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller", + "target": "backend_src_admin_blogs_controller_blogscontroller_createblogtag" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L25", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", + "target": "backend_src_prescriptions_prescriptions_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L26", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", + "target": "backend_src_prescriptions_prescriptions_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", + "target": "backend_src_prescriptions_prescriptions_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", + "target": "backend_src_prescriptions_prescriptions_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L10", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", + "target": "backend_src_prescriptions_prescriptions_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", + "target": "backend_src_prescriptions_prescriptions_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", + "target": "backend_src_prescriptions_prescriptions_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", + "target": "backend_src_prescriptions_prescriptions_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findone" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findall" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L18", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L19", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", + "target": "backend_src_smart_advisor_smart_advisor_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", + "target": "backend_src_smart_advisor_smart_advisor_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", + "target": "backend_src_smart_advisor_smart_advisor_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", + "target": "backend_src_smart_advisor_smart_advisor_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", + "target": "backend_src_smart_advisor_smart_advisor_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", + "target": "backend_src_smart_advisor_smart_advisor_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_remove" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_findall" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.module.ts", + "source_location": "L10", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_module_authmodule", + "target": "backend_src_auth_auth_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_module_authmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.module.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_module_authmodule", + "target": "backend_src_auth_auth_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_strategy_jwtpayload", + "target": "backend_src_auth_jwt_strategy" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L14", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_strategy_jwtstrategy", + "target": "backend_src_auth_jwt_strategy_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.module.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_strategy_jwtstrategy", + "target": "backend_src_auth_auth_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_strategy_jwtstrategy", + "target": "backend_src_auth_jwt_strategy" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_strategy_jwtstrategy", + "target": "backend_src_auth_jwt_strategy_jwtstrategy_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_strategy_jwtstrategy", + "target": "backend_src_auth_jwt_strategy_jwtstrategy_validate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/dto/address.dto.ts", + "source_location": "L35", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_address_dto_addressdto", + "target": "backend_src_users_dto_address_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/dto/address.dto.ts", + "source_location": "L36", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_address_dto_addressdto", + "target": "backend_src_users_dto_address_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/dto/address.dto.ts", + "source_location": "L37", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_address_dto_addressdto", + "target": "backend_src_users_dto_address_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/dto/address.dto.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_address_dto_addressdto", + "target": "backend_src_users_dto_address_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/dto/address.dto.ts", + "source_location": "L41", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_address_dto_addressdto", + "target": "backend_src_users_dto_address_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/dto/address.dto.ts", + "source_location": "L42", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_address_dto_addressdto", + "target": "backend_src_users_dto_address_dto_ts_isboolean" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_address_dto_addressdto", + "target": "backend_src_users_users_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_address_dto_addressdto", + "target": "backend_src_users_users_controller_userscontroller_addaddress" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_address_dto_addressdto", + "target": "backend_src_users_users_controller_userscontroller_updateaddress" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/dto/address.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_address_dto_addressdto", + "target": "backend_src_users_dto_address_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/dto/update-profile.dto.ts", + "source_location": "L17", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", + "target": "backend_src_users_dto_update_profile_dto_ts_isemail" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/dto/update-profile.dto.ts", + "source_location": "L28", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", + "target": "backend_src_users_dto_update_profile_dto_ts_minlength" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/dto/update-profile.dto.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", + "target": "backend_src_users_dto_update_profile_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/dto/update-profile.dto.ts", + "source_location": "L32", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", + "target": "backend_src_users_dto_update_profile_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/dto/update-profile.dto.ts", + "source_location": "L33", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", + "target": "backend_src_users_dto_update_profile_dto_ts_isstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", + "target": "backend_src_users_users_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", + "target": "backend_src_users_users_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", + "target": "backend_src_users_users_controller_userscontroller_updateprofile" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", + "target": "backend_src_users_users_service_usersservice_update" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/dto/update-profile.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", + "target": "backend_src_users_dto_update_profile_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L28", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller", + "target": "backend_src_users_users_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L29", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller", + "target": "backend_src_users_users_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L30", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller", + "target": "backend_src_users_users_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller", + "target": "backend_src_users_users_controller_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller", + "target": "backend_src_users_users_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller", + "target": "backend_src_users_users_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller", + "target": "backend_src_users_users_controller_userscontroller_updateprofile" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller", + "target": "backend_src_users_users_controller_userscontroller_addaddress" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller", + "target": "backend_src_users_users_controller_userscontroller_updateaddress" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller", + "target": "backend_src_users_users_controller_userscontroller_deleteaddress" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller", + "target": "backend_src_users_users_controller_userscontroller_setdefaultaddress" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller", + "target": "backend_src_users_users_controller_userscontroller_topupwallet" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller", + "target": "backend_src_users_users_controller_userscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller", + "target": "backend_src_users_users_controller_userscontroller_getprofile" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.module.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_module_usersmodule", + "target": "backend_src_users_users_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_module_usersmodule", + "target": "backend_src_app_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.module.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_module_usersmodule", + "target": "backend_src_auth_auth_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.module.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_module_usersmodule", + "target": "backend_src_users_users_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_users_users_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_auth_jwt_strategy" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_users_users_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_users_users_controller_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_users_users_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_users_users_service_spec" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_auth_jwt_strategy_jwtstrategy_constructor" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_users_users_controller_userscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_users_users_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_users_users_service_usersservice_update" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_users_users_service_usersservice_addaddress" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L232", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_users_users_service_usersservice_updateaddress" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_users_users_service_usersservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L258", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_users_users_service_usersservice_deleteaddress" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L264", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_users_users_service_usersservice_setdefaultaddress" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_users_users_service_usersservice_findbyid" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_users_users_service_usersservice_topupwallet" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L299", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice", + "target": "backend_src_users_users_service_usersservice_findbyphone" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_iconpickermodal_iconpickermodalprops", + "target": "frontend_admin_panel_src_components_ui_iconpickermodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_richtexteditor_activestates", + "target": "frontend_admin_panel_src_components_ui_richtexteditor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditorprops", + "target": "frontend_admin_panel_src_components_ui_richtexteditor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitchprops", + "target": "frontend_admin_panel_src_components_ui_toggleswitch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_uitexts_appsitepage", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_uitexts_pagesection", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_uitexts_sectionfield", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_badge_badgeprops", + "target": "frontend_admin_panel_src_components_ui_badge" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_badge_badgevariant", + "target": "frontend_admin_panel_src_components_ui_badge" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_monitoringpage_monitoringstats", + "target": "frontend_admin_panel_src_pages_monitoringpage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_orders_order", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_orders_orderitem", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_orders_paymenttx", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_users_userrecord", + "target": "frontend_admin_panel_src_types_admin_useraddress" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_users_userrecord", + "target": "frontend_admin_panel_src_types_admin_petsummary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_users_userrecord", + "target": "frontend_admin_panel_src_pages_users" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_petsummary", + "target": "frontend_admin_panel_src_pages_users" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_petsummary", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_useraddress", + "target": "frontend_admin_panel_src_pages_users" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_useraddress", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L18", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller", + "target": "backend_src_contact_contact_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller", + "target": "backend_src_contact_contact_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller", + "target": "backend_src_contact_contact_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller", + "target": "backend_src_contact_contact_controller_contactcontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller", + "target": "backend_src_contact_contact_controller_contactcontroller_submitcontact" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller", + "target": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller", + "target": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller", + "target": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller", + "target": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L21", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_service_contactservice", + "target": "backend_src_contact_contact_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_service_contactservice", + "target": "backend_src_contact_contact_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_service_contactservice", + "target": "backend_src_contact_contact_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_service_contactservice", + "target": "backend_src_contact_contact_controller_contactcontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_service_contactservice", + "target": "backend_src_contact_contact_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_service_contactservice", + "target": "backend_src_contact_contact_service_contactservice_getallsubmissions" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_service_contactservice", + "target": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_service_contactservice", + "target": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_service_contactservice", + "target": "backend_src_contact_contact_service_contactservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_service_contactservice", + "target": "backend_src_contact_contact_service_contactservice_submitcontactform" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_service_contactservice", + "target": "backend_src_contact_contact_service_contactservice_getcontactinfo" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L91", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", + "target": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L95", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L96", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", + "target": "backend_src_tickets_tickets_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", + "target": "backend_src_tickets_tickets_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", + "target": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", + "target": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", + "target": "backend_src_tickets_dto_create_ticket_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L19", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "target": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L24", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L53", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "target": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L54", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L55", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "target": "backend_src_tickets_tickets_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "target": "backend_src_tickets_tickets_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "target": "backend_src_tickets_tickets_controller_ticketscontroller_createticket" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "target": "backend_src_tickets_tickets_service_ticketsservice_createticket" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", + "target": "backend_src_tickets_dto_create_ticket_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L60", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "target": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L65", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L73", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "target": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L77", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L78", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "target": "backend_src_tickets_dto_create_ticket_dto_ts_isstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "target": "backend_src_tickets_tickets_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "target": "backend_src_tickets_tickets_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "target": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "target": "backend_src_tickets_tickets_service_ticketsservice_replytoticket" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", + "target": "backend_src_tickets_dto_create_ticket_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", + "source_location": "L14", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", + "target": "backend_src_tickets_dto_ticket_query_dto_ts_type" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", + "source_location": "L15", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", + "target": "backend_src_tickets_dto_ticket_query_dto_ts_isnumber" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", + "source_location": "L34", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", + "target": "backend_src_tickets_dto_ticket_query_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", + "source_location": "L37", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", + "target": "backend_src_tickets_dto_ticket_query_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", + "source_location": "L38", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", + "target": "backend_src_tickets_dto_ticket_query_dto_ts_isstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", + "target": "backend_src_tickets_tickets_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", + "target": "backend_src_tickets_tickets_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", + "target": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", + "target": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", + "target": "backend_src_tickets_dto_ticket_query_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L29", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller", + "target": "backend_src_tickets_tickets_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L32", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller", + "target": "backend_src_tickets_tickets_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller", + "target": "backend_src_tickets_tickets_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller", + "target": "backend_src_tickets_tickets_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller", + "target": "backend_src_tickets_tickets_controller_ticketscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller", + "target": "backend_src_tickets_tickets_controller_ticketscontroller_createticket" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller", + "target": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller", + "target": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller", + "target": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller", + "target": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller", + "target": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.module.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_module_ticketsmodule", + "target": "backend_src_tickets_tickets_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_module_ticketsmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.module.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_module_ticketsmodule", + "target": "backend_src_tickets_tickets_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L17", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_service_ticketsservice", + "target": "backend_src_tickets_tickets_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_service_ticketsservice", + "target": "backend_src_tickets_tickets_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_service_ticketsservice", + "target": "backend_src_tickets_tickets_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_service_ticketsservice", + "target": "backend_src_tickets_tickets_controller_ticketscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_service_ticketsservice", + "target": "backend_src_tickets_tickets_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_service_ticketsservice", + "target": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_service_ticketsservice", + "target": "backend_src_tickets_tickets_service_ticketsservice_replytoticket" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L207", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_service_ticketsservice", + "target": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_service_ticketsservice", + "target": "backend_src_tickets_tickets_service_ticketsservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_service_ticketsservice", + "target": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L279", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_service_ticketsservice", + "target": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_service_ticketsservice", + "target": "backend_src_tickets_tickets_service_ticketsservice_createticket" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_service_ticketsservice", + "target": "backend_src_tickets_tickets_service_ticketsservice_getusertickets" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L18", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_controller_paymentcontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L1014", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_initiatewallettopup" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_initiateorderpayment" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L540", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L635", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_gettransaction" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L685", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_getadmintransactions" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L798", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L845", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_adminliveinquiry" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L896", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_gettransactionbytrackid" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L902", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L925", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_adminmanualverify" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L988", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice", + "target": "backend_src_payment_payment_service_paymentservice_adminmanualreject" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", + "source_location": "L62", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_type" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", + "source_location": "L63", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", + "source_location": "L68", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", + "source_location": "L71", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", + "source_location": "L75", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", + "source_location": "L76", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "target": "backend_src_payment_payment_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L525", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "target": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L685", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "target": "backend_src_payment_payment_service_paymentservice_getadmintransactions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", + "target": "backend_src_payment_dto_admin_transaction_filter_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/dto/create-review.dto.ts", + "source_location": "L13", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "target": "backend_src_reviews_dto_create_review_dto_ts_isint" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/dto/create-review.dto.ts", + "source_location": "L14", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "target": "backend_src_reviews_dto_create_review_dto_ts_min" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/dto/create-review.dto.ts", + "source_location": "L15", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "target": "max" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/dto/create-review.dto.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "target": "backend_src_reviews_dto_create_review_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/dto/create-review.dto.ts", + "source_location": "L35", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "target": "backend_src_reviews_dto_create_review_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/dto/create-review.dto.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "target": "backend_src_reviews_dto_create_review_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/dto/create-review.dto.ts", + "source_location": "L41", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "target": "backend_src_reviews_dto_create_review_dto_ts_isoptional" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "target": "backend_src_reviews_reviews_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "target": "backend_src_reviews_reviews_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "target": "backend_src_reviews_reviews_controller_reviewscontroller_createreview" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "target": "backend_src_reviews_reviews_service_reviewsservice_createreview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/dto/create-review.dto.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", + "target": "backend_src_reviews_dto_create_review_dto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodalprops", + "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_media_media", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_prescriptionsmanager_productitem", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_prescription", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/types/admin.ts", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin_prescription", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L12", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller_wikicontroller", + "target": "backend_src_wiki_wiki_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L13", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller_wikicontroller", + "target": "backend_src_wiki_wiki_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller_wikicontroller", + "target": "backend_src_wiki_wiki_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller_wikicontroller", + "target": "backend_src_wiki_wiki_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller_wikicontroller", + "target": "backend_src_wiki_wiki_controller_wikicontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller_wikicontroller", + "target": "backend_src_wiki_wiki_controller_wikicontroller_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller_wikicontroller", + "target": "backend_src_wiki_wiki_controller_wikicontroller_findone" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.module.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_module_wikimodule", + "target": "backend_src_wiki_wiki_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_module_wikimodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.module.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_module_wikimodule", + "target": "backend_src_wiki_wiki_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_service_wikiservice", + "target": "backend_src_wiki_wiki_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_service_wikiservice", + "target": "backend_src_wiki_wiki_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_service_wikiservice", + "target": "backend_src_wiki_wiki_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_service_wikiservice", + "target": "backend_src_wiki_wiki_controller_wikicontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_service_wikiservice", + "target": "backend_src_wiki_wiki_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_service_wikiservice", + "target": "backend_src_wiki_wiki_service_wikiservice_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_service_wikiservice", + "target": "backend_src_wiki_wiki_service_wikiservice_findonebykey" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_service_wikiservice", + "target": "backend_src_wiki_wiki_service_wikiservice_constructor" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L20", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller_petscontroller", + "target": "backend_src_admin_pets_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L21", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller_petscontroller", + "target": "backend_src_admin_pets_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L22", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller_petscontroller", + "target": "backend_src_admin_pets_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller_petscontroller", + "target": "backend_src_admin_pets_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller_petscontroller", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller_petscontroller", + "target": "backend_src_admin_pets_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller_petscontroller", + "target": "backend_src_admin_pets_controller_petscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller_petscontroller", + "target": "backend_src_admin_pets_controller_petscontroller_getpets" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller_petscontroller", + "target": "backend_src_admin_pets_controller_petscontroller_deletepet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_service_petquery", + "target": "backend_src_admin_pets_service" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L11", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_service_petsservice", + "target": "backend_src_admin_pets_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_service_petsservice", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_service_petsservice", + "target": "backend_src_admin_pets_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_service_petsservice", + "target": "backend_src_admin_pets_controller_petscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_service_petsservice", + "target": "backend_src_admin_pets_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_service_petsservice", + "target": "backend_src_admin_pets_service_petsservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_service_petsservice", + "target": "backend_src_admin_pets_service_petsservice_getpets" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_service_petsservice", + "target": "backend_src_admin_pets_service_petsservice_deletepet" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-pet.dto.ts", + "source_location": "L16", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_pet_dto_createpetdto", + "target": "backend_src_pets_dto_create_pet_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-pet.dto.ts", + "source_location": "L17", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_pet_dto_createpetdto", + "target": "backend_src_pets_dto_create_pet_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-pet.dto.ts", + "source_location": "L33", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_pet_dto_createpetdto", + "target": "backend_src_pets_dto_create_pet_dto_ts_isnumber" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-pet.dto.ts", + "source_location": "L41", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_pet_dto_createpetdto", + "target": "backend_src_pets_dto_create_pet_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-pet.dto.ts", + "source_location": "L42", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_pet_dto_createpetdto", + "target": "backend_src_pets_dto_create_pet_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-pet.dto.ts", + "source_location": "L43", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_pet_dto_createpetdto", + "target": "backend_src_pets_dto_create_pet_dto_ts_isarray" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-pet.dto.ts", + "source_location": "L44", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_pet_dto_createpetdto", + "target": "backend_src_pets_dto_create_pet_dto_ts_isstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/update-pet.dto.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_pet_dto_createpetdto", + "target": "backend_src_pets_dto_update_pet_dto" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_pet_dto_createpetdto", + "target": "backend_src_pets_pets_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_pet_dto_createpetdto", + "target": "backend_src_pets_pets_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_pet_dto_createpetdto", + "target": "backend_src_pets_pets_controller_petscontroller_create" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_pet_dto_createpetdto", + "target": "backend_src_pets_pets_service_petsservice_create" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-pet.dto.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_pet_dto_createpetdto", + "target": "backend_src_pets_dto_create_pet_dto" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_update_pet_dto_updatepetdto", + "target": "backend_src_pets_pets_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_update_pet_dto_updatepetdto", + "target": "backend_src_pets_pets_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_update_pet_dto_updatepetdto", + "target": "backend_src_pets_pets_controller_petscontroller_update" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_update_pet_dto_updatepetdto", + "target": "backend_src_pets_pets_service_petsservice_update" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/update-pet.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_update_pet_dto_updatepetdto", + "target": "backend_src_pets_dto_update_pet_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.module.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_module_petsmodule", + "target": "backend_src_pets_pets_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_module_petsmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.module.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_module_petsmodule", + "target": "backend_src_pets_pets_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_healthloginput", + "target": "backend_src_pets_pets_service" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L22", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice", + "target": "backend_src_pets_pets_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice", + "target": "backend_src_pets_pets_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice", + "target": "backend_src_pets_pets_controller_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice", + "target": "backend_src_pets_pets_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice", + "target": "backend_src_pets_pets_service_spec" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice", + "target": "backend_src_pets_pets_controller_petscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice", + "target": "backend_src_pets_pets_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice", + "target": "backend_src_pets_pets_service_petsservice_findallbyuser" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice", + "target": "backend_src_pets_pets_service_petsservice_findone" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L161", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice", + "target": "backend_src_pets_pets_service_petsservice_update" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice", + "target": "backend_src_pets_pets_service_petsservice_remove" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L198", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice", + "target": "backend_src_pets_pets_service_petsservice_addreminder" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice", + "target": "backend_src_pets_pets_service_petsservice_togglereminder" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice", + "target": "backend_src_pets_pets_service_petsservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice", + "target": "backend_src_pets_pets_service_petsservice_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice", + "target": "backend_src_pets_pets_service_petsservice_addhealthlog" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice", + "target": "backend_src_pets_pets_service_petsservice_findalladmin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_reminderinput", + "target": "backend_src_pets_pets_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/seo.ts", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_pagemetadataoptions", + "target": "frontend_application_lib_seo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/seo.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_seoconfig", + "target": "frontend_application_lib_seo" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L24", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller", + "target": "backend_src_admin_wiki_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L25", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller", + "target": "backend_src_admin_wiki_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L26", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller", + "target": "backend_src_admin_wiki_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L27", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller", + "target": "backend_src_admin_wiki_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller", + "target": "backend_src_admin_wiki_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller", + "target": "backend_src_admin_wiki_controller_wikicontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller", + "target": "backend_src_admin_wiki_controller_wikicontroller_getterms" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller", + "target": "backend_src_admin_wiki_controller_wikicontroller_createterm" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller", + "target": "backend_src_admin_wiki_controller_wikicontroller_updateterm" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller", + "target": "backend_src_admin_wiki_controller_wikicontroller_deleteterm" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-health-log.dto.ts", + "source_location": "L15", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", + "target": "backend_src_pets_dto_create_health_log_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-health-log.dto.ts", + "source_location": "L16", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", + "target": "backend_src_pets_dto_create_health_log_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-health-log.dto.ts", + "source_location": "L20", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", + "target": "backend_src_pets_dto_create_health_log_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-health-log.dto.ts", + "source_location": "L24", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", + "target": "backend_src_pets_dto_create_health_log_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-health-log.dto.ts", + "source_location": "L25", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", + "target": "backend_src_pets_dto_create_health_log_dto_ts_isstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", + "target": "backend_src_pets_pets_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", + "target": "backend_src_pets_pets_controller_petscontroller_addhealthlog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-health-log.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", + "target": "backend_src_pets_dto_create_health_log_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-reminder.dto.ts", + "source_location": "L15", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", + "target": "backend_src_pets_dto_create_reminder_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-reminder.dto.ts", + "source_location": "L19", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", + "target": "backend_src_pets_dto_create_reminder_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-reminder.dto.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", + "target": "backend_src_pets_dto_create_reminder_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-reminder.dto.ts", + "source_location": "L27", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", + "target": "backend_src_pets_dto_create_reminder_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-reminder.dto.ts", + "source_location": "L28", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", + "target": "backend_src_pets_dto_create_reminder_dto_ts_isstring" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", + "target": "backend_src_pets_pets_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", + "target": "backend_src_pets_pets_controller_petscontroller_addreminder" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/create-reminder.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", + "target": "backend_src_pets_dto_create_reminder_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L39", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller", + "target": "backend_src_pets_pets_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller", + "target": "backend_src_pets_pets_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L41", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller", + "target": "backend_src_pets_pets_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L42", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller", + "target": "backend_src_pets_pets_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller", + "target": "backend_src_pets_pets_controller_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller", + "target": "backend_src_pets_pets_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller", + "target": "backend_src_pets_pets_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller", + "target": "backend_src_pets_pets_controller_petscontroller_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller", + "target": "backend_src_pets_pets_controller_petscontroller_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller", + "target": "backend_src_pets_pets_controller_petscontroller_findone" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller", + "target": "backend_src_pets_pets_controller_petscontroller_update" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller", + "target": "backend_src_pets_pets_controller_petscontroller_remove" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller", + "target": "backend_src_pets_pets_controller_petscontroller_addreminder" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller", + "target": "backend_src_pets_pets_controller_petscontroller_togglereminder" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L285", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller", + "target": "backend_src_pets_pets_controller_petscontroller_addhealthlog" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller", + "target": "backend_src_pets_pets_controller_petscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller", + "target": "backend_src_pets_pets_controller_petscontroller_uploadpetimage" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", + "source_location": "L13", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", + "target": "backend_src_payment_dto_ebank_checkout_dto_ts_min" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", + "source_location": "L16", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", + "target": "backend_src_payment_dto_ebank_checkout_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", + "source_location": "L18", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", + "target": "backend_src_payment_dto_ebank_checkout_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", + "source_location": "L32", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", + "target": "backend_src_payment_dto_ebank_checkout_dto_ts_isnumber" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", + "source_location": "L51", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", + "target": "backend_src_payment_dto_ebank_checkout_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", + "source_location": "L52", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", + "target": "backend_src_payment_dto_ebank_checkout_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", + "source_location": "L53", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", + "target": "backend_src_payment_dto_ebank_checkout_dto_ts_isoptional" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L439", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", + "target": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", + "target": "backend_src_payment_dto_ebank_checkout_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L5", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_controller_seocontroller", + "target": "backend_src_seo_seo_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_controller_seocontroller", + "target": "backend_src_seo_seo_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_controller_seocontroller", + "target": "backend_src_seo_seo_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_controller_seocontroller", + "target": "backend_src_seo_seo_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_controller_seocontroller", + "target": "backend_src_seo_seo_controller_seocontroller_getsitemap" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_controller_seocontroller", + "target": "backend_src_seo_seo_controller_seocontroller_getproductschema" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_controller_seocontroller", + "target": "backend_src_seo_seo_controller_seocontroller_constructor" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.module.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_module_seomodule", + "target": "backend_src_seo_seo_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_module_seomodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.module.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_module_seomodule", + "target": "backend_src_seo_seo_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L4", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_service_seoservice", + "target": "backend_src_seo_seo_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_service_seoservice", + "target": "backend_src_seo_seo_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_service_seoservice", + "target": "backend_src_seo_seo_module" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_service_seoservice", + "target": "backend_src_seo_seo_controller_seocontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_service_seoservice", + "target": "backend_src_seo_seo_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_service_seoservice", + "target": "backend_src_seo_seo_service_seoservice_getproductschema" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_service_seoservice", + "target": "backend_src_seo_seo_service_seoservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_service_seoservice", + "target": "backend_src_seo_seo_service_seoservice_getsitemapurls" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L21", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_module_adminmodule", + "target": "backend_src_admin_admin_module_ts_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_module_adminmodule", + "target": "backend_src_app_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_module_adminmodule", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L6", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_service_mediaservice", + "target": "backend_src_admin_media_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_service_mediaservice", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_service_mediaservice", + "target": "backend_src_admin_media_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_service_mediaservice", + "target": "backend_src_admin_media_controller_mediacontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_service_mediaservice", + "target": "backend_src_admin_media_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_service_mediaservice", + "target": "backend_src_admin_media_service_mediaservice_getallmedia" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_service_mediaservice", + "target": "backend_src_admin_media_service_mediaservice_uploadfile" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_service_mediaservice", + "target": "backend_src_admin_media_service_mediaservice_deletemedia" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_service_mediaservice", + "target": "backend_src_admin_media_service_mediaservice_deletemanymedia" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_service_mediaservice", + "target": "backend_src_admin_media_service_mediaservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_service_mediaservice", + "target": "backend_src_admin_media_service_mediaservice_updatemedia" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L11", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_controller_reportscontroller", + "target": "backend_src_admin_reports_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L12", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_controller_reportscontroller", + "target": "backend_src_admin_reports_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L13", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_controller_reportscontroller", + "target": "backend_src_admin_reports_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_controller_reportscontroller", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_controller_reportscontroller", + "target": "backend_src_admin_reports_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_controller_reportscontroller", + "target": "backend_src_admin_reports_controller_reportscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_controller_reportscontroller", + "target": "backend_src_admin_reports_controller_reportscontroller_getreports" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L4", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_service_reportsservice", + "target": "backend_src_admin_reports_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_service_reportsservice", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_service_reportsservice", + "target": "backend_src_admin_reports_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_service_reportsservice", + "target": "backend_src_admin_reports_controller_reportscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_service_reportsservice", + "target": "backend_src_admin_reports_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_service_reportsservice", + "target": "backend_src_admin_reports_service_reportsservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_service_reportsservice", + "target": "backend_src_admin_reports_service_reportsservice_getdashboardreports" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslcertinfo", + "target": "backend_src_admin_ssl_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_service_wikiquery", + "target": "backend_src_admin_wiki_service" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L11", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_service_wikiservice", + "target": "backend_src_admin_wiki_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_service_wikiservice", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_service_wikiservice", + "target": "backend_src_admin_wiki_controller" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_service_wikiservice", + "target": "backend_src_admin_wiki_controller_wikicontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_service_wikiservice", + "target": "backend_src_admin_wiki_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_service_wikiservice", + "target": "backend_src_admin_wiki_service_wikiservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_service_wikiservice", + "target": "backend_src_admin_wiki_service_wikiservice_getterms" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_service_wikiservice", + "target": "backend_src_admin_wiki_service_wikiservice_createterm" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_service_wikiservice", + "target": "backend_src_admin_wiki_service_wikiservice_updateterm" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_service_wikiservice", + "target": "backend_src_admin_wiki_service_wikiservice_deleteterm" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", + "target": "backend_src_payment_zibal_service_zibalservice_checkhealth" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", + "target": "backend_src_payment_zibal_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", + "target": "backend_src_payment_interfaces_payment_gateway_interface" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", + "target": "backend_src_payment_zibal_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", + "target": "backend_src_payment_interfaces_payment_gateway_interface" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", + "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", + "target": "backend_src_payment_zibal_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", + "target": "backend_src_payment_interfaces_payment_gateway_interface" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", + "target": "backend_src_payment_zibal_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", + "target": "backend_src_payment_zibal_service_zibalservice_requestlazypayment" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", + "target": "backend_src_payment_zibal_service_zibalservice_requestpayment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", + "target": "backend_src_payment_interfaces_payment_gateway_interface" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", + "target": "backend_src_payment_zibal_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", + "target": "backend_src_payment_interfaces_payment_gateway_interface" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", + "target": "backend_src_payment_zibal_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", + "target": "backend_src_payment_interfaces_payment_gateway_interface" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalinquiryresponse", + "target": "backend_src_payment_zibal_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalrequestresponse", + "target": "backend_src_payment_zibal_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalverifyresponse", + "target": "backend_src_payment_zibal_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_podcastinlineplayer_podcastinlineplayerprops", + "target": "frontend_application_components_podcastinlineplayer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_productpage_calculatorstate", + "target": "frontend_application_components_productpage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_productreviews_productreviewsprops", + "target": "frontend_application_components_productreviews" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_productreviews_reviewitem", + "target": "frontend_application_components_productreviews" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Tooltip.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tooltip_tooltipprops", + "target": "frontend_application_components_tooltip" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/data/scientificTerms.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_scientificterms_scientificterm", + "target": "frontend_application_lib_data_scientificterms" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_dosageconfig", + "target": "frontend_application_components_productpage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_dosageconfig", + "target": "frontend_application_lib_types" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_homeclient_homeclientprops", + "target": "frontend_application_lib_types_homeapiresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_homeclient_homeclientprops", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_bannerplacement_bannerplacementprops", + "target": "frontend_application_lib_types_banner" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_bannerplacement_bannerplacementprops", + "target": "frontend_application_components_bannerplacement" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FAQSection.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_faqsection_faqitem", + "target": "frontend_application_components_faqsection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_b2binquiry", + "target": "frontend_application_lib_types" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L372", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_banner", + "target": "frontend_application_lib_services_productservice_productservice_getbanners" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_banner", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_banner", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_banner", + "target": "frontend_application_components_bannerplacement" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_banner", + "target": "frontend_application_components_hero" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_banner", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_banner", + "target": "frontend_application_lib_types" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_homeapiresponse", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_homeapiresponse", + "target": "frontend_application_app_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_homeapiresponse", + "target": "frontend_application_lib_types" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_navigationhandler", + "target": "frontend_application_lib_types" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_partneraccount", + "target": "frontend_application_lib_types" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_prescription", + "target": "frontend_application_lib_types" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_smartadvisorrule", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_smartadvisorrule", + "target": "frontend_application_lib_types" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_testimonial", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/types.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_types_testimonial", + "target": "frontend_application_lib_types" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L60", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_createorderdto", + "target": "backend_src_orders_dto_create_order_dto_ts_isnumber" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L63", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_createorderdto", + "target": "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L64", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_createorderdto", + "target": "backend_src_orders_dto_create_order_dto_ts_isoptional" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L65", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_createorderdto", + "target": "backend_src_orders_dto_create_order_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L68", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_createorderdto", + "target": "backend_src_orders_dto_create_order_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L69", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_createorderdto", + "target": "backend_src_orders_dto_create_order_dto_ts_isarray" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L70", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_createorderdto", + "target": "validatenested" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L71", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_createorderdto", + "target": "backend_src_orders_dto_create_order_dto_ts_type" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_createorderdto", + "target": "backend_src_orders_orders_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_createorderdto", + "target": "backend_src_orders_orders_service" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_createorderdto", + "target": "backend_src_orders_orders_controller_orderscontroller_create" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_createorderdto", + "target": "backend_src_orders_orders_service_ordersservice_create" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_createorderdto", + "target": "backend_src_orders_dto_create_order_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L15", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_orderitemdto", + "target": "backend_src_orders_dto_create_order_dto_ts_isstring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L18", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_orderitemdto", + "target": "backend_src_orders_dto_create_order_dto_ts_apiproperty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L19", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_orderitemdto", + "target": "backend_src_orders_dto_create_order_dto_ts_isnotempty" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L20", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_orderitemdto", + "target": "backend_src_orders_dto_create_order_dto_ts_isnumber" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/dto/create-order.dto.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto_orderitemdto", + "target": "backend_src_orders_dto_create_order_dto" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L38", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller", + "target": "backend_src_orders_orders_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L39", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller", + "target": "backend_src_orders_orders_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller", + "target": "backend_src_orders_orders_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L41", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller", + "target": "backend_src_orders_orders_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller", + "target": "backend_src_orders_orders_controller_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller", + "target": "backend_src_orders_orders_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller", + "target": "backend_src_orders_orders_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller", + "target": "backend_src_orders_orders_controller_orderscontroller_validatecoupon" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller", + "target": "backend_src_orders_orders_controller_orderscontroller_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L196", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller", + "target": "backend_src_orders_orders_controller_orderscontroller_retrypayment" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller", + "target": "backend_src_orders_orders_controller_orderscontroller_findone" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller", + "target": "backend_src_orders_orders_controller_orderscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller", + "target": "backend_src_orders_orders_controller_orderscontroller_create" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L13", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_service_ts_injectable" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_controller_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_service_spec" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_controller_orderscontroller_constructor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_service" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_service_ordersservice_create" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_service_ordersservice_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_service_ordersservice_validatecoupon" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L322", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_service_ordersservice_updatestatus" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L353", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_service_ordersservice_findallbyuser" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L386", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_service_ordersservice_findone" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L400", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L430", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L452", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice", + "target": "backend_src_orders_orders_service_ordersservice_retrypayment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_b2bserviceschemaoptions", + "target": "frontend_application_lib_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_breadcrumbitem", + "target": "frontend_application_lib_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_medicalwebpageschemaoptions", + "target": "frontend_application_lib_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_organizationschemaoptions", + "target": "frontend_application_lib_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_videoobjectschemaoptions", + "target": "frontend_application_lib_schema" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L25", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller", + "target": "backend_src_blogs_blogs_controller_ts_apitags" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L26", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller", + "target": "backend_src_blogs_blogs_controller_ts_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller", + "target": "backend_src_blogs_blogs_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller", + "target": "backend_src_blogs_blogs_controller" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller", + "target": "backend_src_blogs_blogs_controller_blogscontroller_constructor" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller", + "target": "backend_src_blogs_blogs_controller_blogscontroller_findall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller", + "target": "backend_src_blogs_blogs_controller_blogscontroller_findcategories" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller", + "target": "backend_src_blogs_blogs_controller_blogscontroller_findtags" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller", + "target": "backend_src_blogs_blogs_controller_blogscontroller_findhomepage" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller", + "target": "backend_src_blogs_blogs_controller_blogscontroller_findone" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller", + "target": "backend_src_blogs_blogs_controller_blogscontroller_findcomments" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller", + "target": "backend_src_blogs_blogs_controller_blogscontroller_addcomment" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L43", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L85", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L52", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_banners_banners_controller_bannerscontroller_create" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_banners_banners_controller_bannerscontroller_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_banners_banners_controller_bannerscontroller_reorder" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L49", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_banners_banners_controller_bannerscontroller_update" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L43", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L72", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L38", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_faq_faq_controller_faqcontroller_create" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L29", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_faq_faq_controller_faqcontroller_findall" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L82", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_faq_faq_controller_faqcontroller_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L55", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_faq_faq_controller_faqcontroller_reorder" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L64", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_faq_faq_controller_faqcontroller_update" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L36", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L54", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L45", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L56", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_menu_menu_controller_menucontroller_create" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L46", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_menu_menu_controller_menucontroller_findalladmin" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L110", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_menu_menu_controller_menucontroller_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L78", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_menu_menu_controller_menucontroller_reorder" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L87", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_menu_menu_controller_menucontroller_update" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L467", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L504", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L435", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L242", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_createrefund" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L361", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L372", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L530", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_getadminstats" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L521", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L233", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L339", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L319", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L387", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L397", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L444", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L481", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L412", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L294", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L611", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_gethealth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L275", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L352", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L260", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L576", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L550", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L599", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_manualreject" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L585", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_manualverify" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L539", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L68", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_products_products_controller_productscontroller_updatedosageconfig" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L103", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L64", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L88", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L234", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_addpattern" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L279", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L119", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L270", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_deletesmslog" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L247", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_editpattern" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L145", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L223", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_getpatterns" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L192", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_getsmscredit" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L259", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_getsmslogs" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L183", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_getsmssettings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L164", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L59", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_patchuitext" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L76", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L42", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_putuitext" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L210", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_testsms" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L91", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_updatefinancial" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L154", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L135", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_updateseosettings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L201", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L173", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L107", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L30", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L51", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L39", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L36", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L54", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L45", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L85", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L94", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L49", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L38", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L60", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_admin_ssl_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_b2b_b2b_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_banners_banners_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_cms_cms_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_contact_contact_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_faq_faq_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_ingredients_ingredients_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_menu_menu_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_prescriptions_prescriptions_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_products_products_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_reviews_reviews_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_settings_settings_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_smart_advisor_smart_advisor_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_testimonials_testimonials_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_tickets_tickets_controller" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_wholesale_wholesale_controller" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/decorators/roles.decorator.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles", + "target": "backend_src_common_decorators_roles_decorator" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L466", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L468", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L469", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", + "target": "backend_src_payment_payment_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L470", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L472", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", + "target": "backend_src_payment_payment_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L474", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_cancelcheckout" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L503", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L505", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L506", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", + "target": "backend_src_payment_payment_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L507", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L509", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", + "target": "backend_src_payment_payment_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L511", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_changeidentifiedpaymentstatus" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L434", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L436", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L437", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", + "target": "backend_src_payment_payment_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L438", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L439", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", + "target": "backend_src_payment_payment_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L440", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_createcheckout" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L241", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_createrefund", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L243", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_createrefund", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L244", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_createrefund", + "target": "backend_src_payment_payment_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L245", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_createrefund", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L247", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_createrefund", + "target": "backend_src_payment_payment_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_createrefund", + "target": "backend_src_payment_zibal_service_zibalservice_requestrefund" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L360", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L362", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L363", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", + "target": "backend_src_payment_payment_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L364", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L366", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", + "target": "backend_src_payment_payment_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", + "target": "backend_src_payment_zibal_service_zibalservice_createsubmerchant" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L371", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L373", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L374", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", + "target": "backend_src_payment_payment_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L375", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L377", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", + "target": "backend_src_payment_payment_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L379", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", + "target": "backend_src_payment_zibal_service_zibalservice_editsubmerchant" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L529", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L531", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L532", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", + "target": "backend_src_payment_payment_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L533", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L535", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", + "target": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L520", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L522", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L523", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", + "target": "backend_src_payment_payment_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L524", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L525", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", + "target": "backend_src_payment_payment_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L526", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", + "target": "backend_src_payment_payment_service_paymentservice_getadmintransactions" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L232", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L234", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L235", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", + "target": "backend_src_payment_payment_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L236", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", + "target": "backend_src_payment_zibal_service_zibalservice_getwalletlist" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L338", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L340", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L341", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", + "target": "backend_src_payment_payment_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L342", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L344", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", + "target": "backend_src_payment_zibal_service_zibalservice_getcheckoutqueuereport" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L318", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L320", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L321", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", + "target": "backend_src_payment_payment_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L322", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L326", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", + "target": "backend_src_payment_payment_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L335", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", + "target": "backend_src_payment_zibal_service_zibalservice_getcheckoutreport" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L386", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L388", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L389", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", + "target": "backend_src_payment_payment_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L390", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L391", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", + "target": "backend_src_payment_payment_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L393", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountlist" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L396", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L398", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L399", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", + "target": "backend_src_payment_payment_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L400", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L403", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", + "target": "backend_src_payment_payment_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L405", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountbalance" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L443", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L445", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L446", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "target": "backend_src_payment_payment_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L447", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L454", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "target": "backend_src_payment_payment_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L456", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getcheckoutlist" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L480", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L482", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L483", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "target": "backend_src_payment_payment_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L484", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L491", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "target": "backend_src_payment_payment_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L493", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getidentifiedpaymentlist" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L411", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L413", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L414", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", + "target": "backend_src_payment_payment_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L415", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L422", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", + "target": "backend_src_payment_payment_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L424", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getstatementlist" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L293", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L295", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L296", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", + "target": "backend_src_payment_payment_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L297", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L301", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", + "target": "backend_src_payment_payment_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L315", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", + "target": "backend_src_payment_zibal_service_zibalservice_getgatewaytransactionsreport" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L610", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L612", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L613", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", + "target": "backend_src_payment_payment_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L614", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L619", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", + "target": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L274", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L276", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L277", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", + "target": "backend_src_payment_payment_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L278", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L280", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", + "target": "backend_src_payment_payment_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", + "target": "backend_src_payment_zibal_service_zibalservice_getrefundlist" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L351", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L353", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L354", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", + "target": "backend_src_payment_payment_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L355", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L356", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", + "target": "backend_src_payment_payment_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L357", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", + "target": "backend_src_payment_zibal_service_zibalservice_getsubmerchantlist" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L222", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", + "target": "backend_src_payment_payment_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L223", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L224", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", + "target": "backend_src_payment_payment_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L225", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", + "target": "backend_src_payment_payment_service_paymentservice_gettransaction" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L259", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L261", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L262", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", + "target": "backend_src_payment_payment_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L263", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L265", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", + "target": "backend_src_payment_payment_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", + "target": "backend_src_payment_zibal_service_zibalservice_inquirerefund" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L575", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L577", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L578", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", + "target": "backend_src_payment_payment_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L579", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L580", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", + "target": "backend_src_payment_payment_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L581", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", + "target": "backend_src_payment_payment_service_paymentservice_adminliveinquiry" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L549", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L551", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L552", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", + "target": "backend_src_payment_payment_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L553", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L557", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", + "target": "backend_src_payment_payment_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L560", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", + "target": "backend_src_payment_payment_service_paymentservice_adminliveinquiry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L563", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", + "target": "backend_src_payment_payment_service_paymentservice_gettransactionbytrackid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L570", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", + "target": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L598", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L600", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L601", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", + "target": "backend_src_payment_payment_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L602", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L604", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", + "target": "backend_src_payment_payment_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L605", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", + "target": "backend_src_payment_payment_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L607", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", + "target": "backend_src_payment_payment_service_paymentservice_adminmanualreject" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L584", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L586", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L587", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", + "target": "backend_src_payment_payment_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L588", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L592", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", + "target": "backend_src_payment_payment_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L593", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", + "target": "backend_src_payment_payment_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L595", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", + "target": "backend_src_payment_payment_service_paymentservice_adminmanualverify" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L538", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", + "target": "backend_src_payment_payment_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L540", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L541", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", + "target": "backend_src_payment_payment_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L542", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L546", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", + "target": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L101", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", + "target": "backend_src_reviews_reviews_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L102", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", + "target": "backend_src_reviews_reviews_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L104", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", + "target": "backend_src_reviews_reviews_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L105", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", + "target": "backend_src_reviews_reviews_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L106", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", + "target": "backend_src_reviews_reviews_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", + "target": "backend_src_reviews_reviews_service_reviewsservice_deletereview" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L62", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", + "target": "backend_src_reviews_reviews_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L63", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", + "target": "backend_src_reviews_reviews_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L65", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", + "target": "backend_src_reviews_reviews_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L66", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", + "target": "backend_src_reviews_reviews_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L72", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", + "target": "backend_src_reviews_reviews_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", + "target": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L45", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", + "target": "backend_src_reviews_reviews_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L46", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", + "target": "backend_src_reviews_reviews_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", + "target": "backend_src_reviews_reviews_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L50", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", + "target": "backend_src_reviews_reviews_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", + "target": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L86", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", + "target": "backend_src_reviews_reviews_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L87", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", + "target": "backend_src_reviews_reviews_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L89", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", + "target": "backend_src_reviews_reviews_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L90", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", + "target": "backend_src_reviews_reviews_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L92", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", + "target": "backend_src_reviews_reviews_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L93", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", + "target": "backend_src_reviews_reviews_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", + "target": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", + "target": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", + "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", + "target": "frontend_admin_panel_src_components_ui_priceinput" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "target": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "target": "frontend_admin_panel_src_pages_coupons" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "target": "frontend_admin_panel_src_pages_financialsettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "target": "frontend_admin_panel_src_pages_products" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "target": "frontend_admin_panel_src_pages_shippingsettingspage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_priceinput_priceinput", + "target": "frontend_admin_panel_src_components_ui_priceinput" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", + "target": "frontend_admin_panel_src_components_ui_priceinput" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L317", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_coupons_couponmodal", + "target": "frontend_admin_panel_src_pages_coupons" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_coupons_coupons", + "target": "frontend_admin_panel_src_pages_coupons" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", + "target": "frontend_admin_panel_src_pages_financialsettingspage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/page.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_page_blog", + "target": "frontend_application_app_blog_page_getblogs" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/page.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_page_blog", + "target": "frontend_application_app_blog_page_getcategories" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/page.tsx", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_page_blog", + "target": "frontend_application_app_blog_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/blog/page.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_blog_page_generatemetadata", + "target": "frontend_application_lib_seo_getpagemetadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_page_generatemetadata", + "target": "frontend_application_app_blog_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/page.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_page_getblogs", + "target": "frontend_application_app_blog_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/page.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_page_getcategories", + "target": "frontend_application_app_blog_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/page.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_blogpage_blogpage", + "target": "frontend_application_app_blog_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPage.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_blogpage_blogpage", + "target": "frontend_application_components_blogpage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_layout_generatemetadata", + "target": "frontend_application_lib_seo_getseoconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_layout_generatemetadata", + "target": "frontend_application_app_layout" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_layout_rootlayout", + "target": "frontend_application_lib_schema_generateorganizationschema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_layout_rootlayout", + "target": "frontend_application_app_layout" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_generateorganizationschema", + "target": "frontend_application_app_layout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_generateorganizationschema", + "target": "frontend_application_lib_schema" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/prisma/prisma.service.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist", + "target": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_components_ui_mediaselector" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_pages_bannersmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_pages_blogs" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_pages_categories" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_pages_cms" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_pages_coupons" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_pages_doctorsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_pages_faqmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_pages_ingredientsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_pages_menumanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_pages_pets" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_pages_products" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_pages_smartadvisormanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_pages_testimonialsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_pages_videos" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_pages_wholesaleapplications" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_pages_wiki" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", + "target": "frontend_admin_panel_src_components_ui_confirmmodal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector_getfiletype", + "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector_getfiletype", + "target": "frontend_admin_panel_src_components_ui_mediaselector" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "target": "frontend_admin_panel_src_components_ui_richtexteditor" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "target": "frontend_admin_panel_src_pages_bannersmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "target": "frontend_admin_panel_src_pages_blogs" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "target": "frontend_admin_panel_src_pages_categories" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "target": "frontend_admin_panel_src_pages_doctorsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "target": "frontend_admin_panel_src_pages_ingredientsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "target": "frontend_admin_panel_src_pages_products" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "target": "frontend_admin_panel_src_pages_seosettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "target": "frontend_admin_panel_src_pages_testimonialsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "target": "frontend_admin_panel_src_pages_videos" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", + "target": "frontend_admin_panel_src_components_ui_mediaselector" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination_pagination", + "target": "frontend_admin_panel_src_components_ui_mediaselector" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination_pagination", + "target": "frontend_admin_panel_src_pages_blogs" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination_pagination", + "target": "frontend_admin_panel_src_pages_categories" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination_pagination", + "target": "frontend_admin_panel_src_pages_coupons" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination_pagination", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination_pagination", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination_pagination", + "target": "frontend_admin_panel_src_pages_pets" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination_pagination", + "target": "frontend_admin_panel_src_pages_products" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination_pagination", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination_pagination", + "target": "frontend_admin_panel_src_pages_users" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination_pagination", + "target": "frontend_admin_panel_src_pages_wiki" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination_pagination", + "target": "frontend_admin_panel_src_components_ui_pagination" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_bannersmanager_bannersmanager", + "target": "frontend_admin_panel_src_pages_bannersmanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_blogs_blogs", + "target": "frontend_admin_panel_src_pages_blogs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_categories_categories", + "target": "frontend_admin_panel_src_pages_categories" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager", + "target": "frontend_admin_panel_src_pages_ingredientsmanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_pets_pets", + "target": "frontend_admin_panel_src_pages_pets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_products_products", + "target": "frontend_admin_panel_src_pages_products" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager", + "target": "frontend_admin_panel_src_pages_testimonialsmanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_videos_videos", + "target": "frontend_admin_panel_src_pages_videos" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications", + "target": "frontend_admin_panel_src_pages_wholesaleapplications" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.controller.ts", + "source_location": "L8", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_controller_appcontroller_gethello", + "target": "backend_src_app_controller_ts_get" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/app.controller.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_app_controller_appcontroller_gethello", + "target": "backend_src_app_service_appservice_gethello" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_videos_page_generatemetadata", + "target": "frontend_application_lib_seo_getpagemetadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_videos_page_generatemetadata", + "target": "frontend_application_app_videos_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_videos_page_getinitialvideos", + "target": "frontend_application_app_videos_page_videos" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_videos_page_getinitialvideos", + "target": "frontend_application_app_videos_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_videos_page_videos", + "target": "frontend_application_lib_schema_generatevideoobjectschema" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_videos_page_videos", + "target": "frontend_application_lib_schema_generatebreadcrumbschema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_videos_page_videos", + "target": "frontend_application_app_videos_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_videospage_videospage", + "target": "frontend_application_app_videos_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_videospage_videospage", + "target": "frontend_application_components_videospage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_generatevideoobjectschema", + "target": "frontend_application_app_videos_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L195", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_generatevideoobjectschema", + "target": "frontend_application_lib_schema" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_blogs_service_blogsservice_createblog", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L213", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_blogs_service_blogsservice_deleteblog", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L340", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_blogs_service_blogsservice_deletecomment", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L205", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_blogs_service_blogsservice_updateblog", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L327", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_blogs_service_blogsservice_updatecommentstatus", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatetag" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatepath" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L101", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_adjustwallet", + "target": "backend_src_admin_admin_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L95", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_adjustwallet", + "target": "backend_src_admin_admin_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L96", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_adjustwallet", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L98", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_adjustwallet", + "target": "backend_src_admin_admin_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_adjustwallet", + "target": "backend_src_admin_admin_service_adminservice_adjustuserwallet" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L207", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", + "target": "backend_src_admin_admin_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L208", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L209", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", + "target": "backend_src_admin_admin_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L210", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", + "target": "backend_src_admin_admin_service_adminservice_createcoupon" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L245", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_createdoctor", + "target": "backend_src_admin_admin_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L246", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_createdoctor", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L248", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_createdoctor", + "target": "backend_src_admin_admin_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_createdoctor", + "target": "backend_src_admin_admin_service_adminservice_createdoctor" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L126", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_createproduct", + "target": "backend_src_admin_admin_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L127", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_createproduct", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L128", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_createproduct", + "target": "backend_src_admin_admin_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_createproduct", + "target": "backend_src_admin_admin_service_adminservice_createproduct" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L49", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_createuser", + "target": "backend_src_admin_admin_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L50", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_createuser", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L51", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_createuser", + "target": "backend_src_admin_admin_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_createuser", + "target": "backend_src_admin_admin_service_adminservice_createuser" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L231", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_deletecoupon", + "target": "backend_src_admin_admin_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L232", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_deletecoupon", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L233", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_deletecoupon", + "target": "backend_src_admin_admin_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L234", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_deletecoupon", + "target": "backend_src_admin_admin_service_adminservice_deletecoupon" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L278", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_deletedoctor", + "target": "backend_src_admin_admin_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L279", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_deletedoctor", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L280", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_deletedoctor", + "target": "backend_src_admin_admin_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L281", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_deletedoctor", + "target": "backend_src_admin_admin_service_adminservice_deletedoctor" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L143", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_deleteproduct", + "target": "backend_src_admin_admin_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L144", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_deleteproduct", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L145", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_deleteproduct", + "target": "backend_src_admin_admin_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_deleteproduct", + "target": "backend_src_admin_admin_service_adminservice_deleteproduct" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L78", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_deleteuser", + "target": "backend_src_admin_admin_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L79", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_deleteuser", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L80", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_deleteuser", + "target": "backend_src_admin_admin_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_deleteuser", + "target": "backend_src_admin_admin_service_adminservice_deleteuser" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L197", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", + "target": "backend_src_admin_admin_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L198", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L201", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", + "target": "backend_src_admin_admin_controller_ts_apiquery" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L202", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", + "target": "backend_src_admin_admin_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L203", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", + "target": "backend_src_admin_admin_service_adminservice_getcoupons" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L32", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", + "target": "backend_src_admin_admin_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L33", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", + "target": "backend_src_admin_admin_service_adminservice_getdashboardstats" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L238", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getdoctors", + "target": "backend_src_admin_admin_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L239", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getdoctors", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_getdoctors", + "target": "backend_src_admin_admin_service_adminservice_getdoctors" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L160", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getorderbyid", + "target": "backend_src_admin_admin_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L161", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getorderbyid", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L162", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getorderbyid", + "target": "backend_src_admin_admin_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_getorderbyid", + "target": "backend_src_admin_admin_service_adminservice_getorderbyid" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L150", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getorders", + "target": "backend_src_admin_admin_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L151", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getorders", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L154", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getorders", + "target": "backend_src_admin_admin_controller_ts_apiquery" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L155", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getorders", + "target": "backend_src_admin_admin_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L156", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_getorders", + "target": "backend_src_admin_admin_service_adminservice_getorders" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L116", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getproducts", + "target": "backend_src_admin_admin_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L117", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getproducts", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L120", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getproducts", + "target": "backend_src_admin_admin_controller_ts_apiquery" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L121", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getproducts", + "target": "backend_src_admin_admin_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_getproducts", + "target": "backend_src_admin_admin_service_adminservice_getproducts" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L285", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getsettings", + "target": "backend_src_admin_admin_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L286", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getsettings", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_getsettings", + "target": "backend_src_admin_admin_service_adminservice_getsettings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L60", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getuserdetails", + "target": "backend_src_admin_admin_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L61", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getuserdetails", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L62", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getuserdetails", + "target": "backend_src_admin_admin_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_getuserdetails", + "target": "backend_src_admin_admin_service_adminservice_getuserdetails" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L39", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getusers", + "target": "backend_src_admin_admin_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getusers", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L43", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getusers", + "target": "backend_src_admin_admin_controller_ts_apiquery" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L44", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_getusers", + "target": "backend_src_admin_admin_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_getusers", + "target": "backend_src_admin_admin_service_adminservice_getusers" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L182", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", + "target": "backend_src_admin_admin_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L183", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L185", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", + "target": "backend_src_admin_admin_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L187", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", + "target": "backend_src_admin_admin_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L189", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", + "target": "backend_src_admin_admin_service_adminservice_refundordertowallet" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L221", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", + "target": "backend_src_admin_admin_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L222", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L224", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", + "target": "backend_src_admin_admin_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L225", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", + "target": "backend_src_admin_admin_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", + "target": "backend_src_admin_admin_service_adminservice_togglecoupon" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L214", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", + "target": "backend_src_admin_admin_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L215", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L216", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", + "target": "backend_src_admin_admin_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L216", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", + "target": "backend_src_admin_admin_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", + "target": "backend_src_admin_admin_service_adminservice_updatecoupon" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L261", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", + "target": "backend_src_admin_admin_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L262", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L264", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", + "target": "backend_src_admin_admin_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L265", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", + "target": "backend_src_admin_admin_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", + "target": "backend_src_admin_admin_service_adminservice_updatedoctor" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L167", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", + "target": "backend_src_admin_admin_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L168", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L170", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", + "target": "backend_src_admin_admin_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L172", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", + "target": "backend_src_admin_admin_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", + "target": "backend_src_admin_admin_service_adminservice_updateorderstatus" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L133", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updateproduct", + "target": "backend_src_admin_admin_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L134", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updateproduct", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L135", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updateproduct", + "target": "backend_src_admin_admin_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L135", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updateproduct", + "target": "backend_src_admin_admin_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L136", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_updateproduct", + "target": "backend_src_admin_admin_service_adminservice_updateproduct" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L292", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updatesettings", + "target": "backend_src_admin_admin_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L293", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updatesettings", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L294", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updatesettings", + "target": "backend_src_admin_admin_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L295", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_updatesettings", + "target": "backend_src_admin_admin_service_adminservice_updatesettings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L67", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updateuser", + "target": "backend_src_admin_admin_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L68", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updateuser", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L69", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updateuser", + "target": "backend_src_admin_admin_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L69", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updateuser", + "target": "backend_src_admin_admin_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_updateuser", + "target": "backend_src_admin_admin_service_adminservice_updateuser" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L88", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updateuserrole", + "target": "backend_src_admin_admin_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L89", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updateuserrole", + "target": "backend_src_admin_admin_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L90", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updateuserrole", + "target": "backend_src_admin_admin_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L90", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_admincontroller_updateuserrole", + "target": "backend_src_admin_admin_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_controller_admincontroller_updateuserrole", + "target": "backend_src_admin_admin_service_adminservice_updateuserrole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L461", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice_createproduct", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct" }, { "relation": "calls", @@ -46398,9 +79620,21 @@ "source_location": "L851", "weight": 1.0, "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice_updatesettings", - "target": "backend_src_admin_admin_service_adminservice_getsettings", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_adminservice_getsettings", + "target": "backend_src_admin_admin_service_adminservice_updatesettings" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L552", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice_updateproduct", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct" }, { "relation": "calls", @@ -46415,88 +79649,1227 @@ "target": "backend_src_common_utils_phone_utils_normalizemobile" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L63", + "source_file": "backend/scripts/generate-openapi.ts", + "source_location": "L8", "weight": 1.0, "_origin": "ast", - "source": "backend_src_admin_ssl_service_sslservice_getstatus", - "target": "backend_src_admin_ssl_service_sslservice_getcertpath", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi", + "target": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi" }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L99", + "source_file": "backend/src/main.ts", + "source_location": "L20", "weight": 1.0, "_origin": "ast", - "source": "backend_src_admin_ssl_service_sslservice_getstatus", - "target": "backend_src_admin_ssl_service_sslservice_toshamsi", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_src_common_env_validation_validateenv", + "target": "backend_src_main_bootstrap" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/main.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_env_validation_validateenv", + "target": "backend_src_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/env.validation.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_env_validation_validateenv", + "target": "backend_src_common_env_validation" }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L208", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L32", "weight": 1.0, "_origin": "ast", - "source": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", - "target": "backend_src_admin_ssl_service_sslservice_toshamsi", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage" }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L150", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L33", "weight": 1.0, "_origin": "ast", - "source": "backend_src_admin_ssl_service_sslservice_updatecertificates", - "target": "backend_src_admin_ssl_service_sslservice_getcertpath", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", + "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode" }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L151", + "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", + "source_location": "L14", "weight": 1.0, "_origin": "ast", - "source": "backend_src_admin_ssl_service_sslservice_updatecertificates", - "target": "backend_src_admin_ssl_service_sslservice_getkeypath", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept", + "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/main.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_main_bootstrap", + "target": "backend_src_main" }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L173", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L106", "weight": 1.0, "_origin": "ast", - "source": "backend_src_admin_ssl_service_sslservice_updatecertificates", - "target": "backend_src_admin_ssl_service_sslservice_getstatus", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "ai_agency_orchestrate_cmd_next_task", + "target": "ai_agency_orchestrate_load_json" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_orchestrate_cmd_next_task", + "target": "ai_agency_orchestrate" + }, + { + "relation": "indirect_call", + "context": "collection", + "confidence": "INFERRED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 0.85, + "source": "ai_agency_orchestrate_cmd_next_task", + "target": "ai_agency_orchestrate_main" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_orchestrate_cmd_progress", + "target": "ai_agency_orchestrate_load_json" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_orchestrate_cmd_progress", + "target": "ai_agency_orchestrate" + }, + { + "relation": "indirect_call", + "context": "collection", + "confidence": "INFERRED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 0.85, + "source": "ai_agency_orchestrate_cmd_progress", + "target": "ai_agency_orchestrate_main" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_orchestrate_cmd_reset", + "target": "ai_agency_orchestrate_save_json" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_orchestrate_cmd_reset", + "target": "ai_agency_orchestrate" + }, + { + "relation": "indirect_call", + "context": "collection", + "confidence": "INFERRED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 0.85, + "source": "ai_agency_orchestrate_cmd_reset", + "target": "ai_agency_orchestrate_main" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_orchestrate_cmd_status", + "target": "ai_agency_orchestrate_load_json" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_orchestrate_cmd_status", + "target": "ai_agency_orchestrate" + }, + { + "relation": "indirect_call", + "context": "collection", + "confidence": "INFERRED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 0.85, + "source": "ai_agency_orchestrate_cmd_status", + "target": "ai_agency_orchestrate_main" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_orchestrate_cmd_unblock", + "target": "ai_agency_orchestrate_load_json" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_orchestrate_cmd_unblock", + "target": "ai_agency_orchestrate_save_json" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_orchestrate_cmd_unblock", + "target": "ai_agency_orchestrate" + }, + { + "relation": "indirect_call", + "context": "collection", + "confidence": "INFERRED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 0.85, + "source": "ai_agency_orchestrate_cmd_unblock", + "target": "ai_agency_orchestrate_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_orchestrate_load_json", + "target": "ai_agency_orchestrate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L180", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_orchestrate_main", + "target": "ai_agency_orchestrate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/orchestrate.py", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_orchestrate_save_json", + "target": "ai_agency_orchestrate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/catalog/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_catalog_catalogclient_catalogclient", + "target": "frontend_application_app_catalog_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/catalog/CatalogClient.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_catalog_catalogclient_catalogclient", + "target": "frontend_application_app_catalog_catalogclient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/catalog/page.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_catalog_page_catalogpage", + "target": "frontend_application_app_catalog_page" }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "backend/src/app.module.ts", - "source_location": "L95", + "source_file": "frontend/application/app/catalog/page.tsx", + "source_location": "L6", "weight": 1.0, "_origin": "ast", - "source": "backend_src_app_module_appmodule_configure", - "target": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount" + "source": "frontend_application_app_catalog_page_generatemetadata", + "target": "frontend_application_lib_seo_getpagemetadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/catalog/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_catalog_page_generatemetadata", + "target": "frontend_application_app_catalog_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_clientlayout_clientlayout", + "target": "frontend_application_lib_store_uistore_useuistore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_clientlayout_clientlayout", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_clientlayout_clientlayout", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout_clientlayout", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout_clientlayout", + "target": "frontend_application_app_layout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout_clientlayout", + "target": "frontend_application_app_clientlayout" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/B2BLandingClient.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_b2blandingclient_b2blandingclient", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/b2b/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_b2blandingclient_b2blandingclient", + "target": "frontend_application_app_b2b_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BLandingClient.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_b2blandingclient_b2blandingclient", + "target": "frontend_application_components_b2blandingclient" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/BrandLogo.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_brandlogo_brandlogo", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Footer.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_brandlogo_brandlogo", + "target": "frontend_application_components_footer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_brandlogo_brandlogo", + "target": "frontend_application_components_header" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/MaintenancePage.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_brandlogo_brandlogo", + "target": "frontend_application_components_maintenancepage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BrandLogo.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_brandlogo_brandlogo", + "target": "frontend_application_components_brandlogo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/EnamadBadge.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_enamadbadge_enamadbadge", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_enamadbadge_enamadbadge", + "target": "frontend_application_app_trust_seals_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/EnamadBadge.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_enamadbadge_enamadbadge", + "target": "frontend_application_components_enamadbadge" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/Footer.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_footer_footer", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_footer_footer", + "target": "frontend_application_app_clientlayout" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Footer.test.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_footer_footer", + "target": "frontend_application_components_tests_footer_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Footer.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_footer_footer", + "target": "frontend_application_components_footer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/MaintenancePage.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_maintenancepage_maintenancepage", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_maintenancepage_maintenancepage", + "target": "frontend_application_app_clientlayout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/MaintenancePage.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_maintenancepage_maintenancepage", + "target": "frontend_application_components_maintenancepage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/NetworkBanner.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_networkbanner_networkbanner", + "target": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_networkbanner_networkbanner", + "target": "frontend_application_app_clientlayout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/NetworkBanner.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_networkbanner_networkbanner", + "target": "frontend_application_components_networkbanner" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_smartadvisor_smartadvisor", + "target": "frontend_application_lib_utils_cn" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_smartadvisor_smartadvisor", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_smartadvisor_smartadvisor", + "target": "frontend_application_lib_store_uistore_useuistore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_smartadvisor_smartadvisor", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_smartadvisor_smartadvisor", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor_smartadvisor", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor_smartadvisor", + "target": "frontend_application_components_petprofile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor_smartadvisor", + "target": "frontend_application_components_smartadvisor" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/TickerBanner.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_tickerbanner_tickerbanner", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tickerbanner_tickerbanner", + "target": "frontend_application_components_header" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TickerBanner.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tickerbanner_tickerbanner", + "target": "frontend_application_components_tickerbanner" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/NetworkBanner.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", + "target": "frontend_application_components_networkbanner" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", + "target": "frontend_application_lib_hooks_usenetworkstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/start-dev.js", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "scripts_start_dev_waitforbackend", + "target": "scripts_start_dev" + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "scripts/start-dev.js", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "context": "argument", + "confidence_score": 0.85, + "source": "scripts_start_dev_waitforbackend", + "target": "scripts_start_dev_waitforbackend_check" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi_generateopenapi", + "target": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L565", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice_deleteproduct", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatepath", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatepath", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatesettings" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatetag" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/products/products.service.ts", + "source_location": "L283", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", + "target": "backend_src_products_products_service_productsservice_updatedosageconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L256", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", + "target": "backend_src_reviews_reviews_service_reviewsservice_deletereview" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", + "target": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.service.ts", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatesettings", + "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatetag" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L818", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", + "target": "frontend_admin_panel_src_pages_smssettingspage_topersiandigits" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", + "target": "frontend_admin_panel_src_pages_smssettingspage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smssettingspage_topersiandigits", + "target": "frontend_admin_panel_src_pages_smssettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_layout_layout", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Layout.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_layout_layout", + "target": "frontend_admin_panel_src_components_layout" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_protectedroute_protectedroute", + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_protectedroute_protectedroute", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_protectedroute_protectedroute", + "target": "frontend_admin_panel_src_components_protectedroute" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Layout.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_sidebar_sidebar", + "target": "frontend_admin_panel_src_components_layout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_sidebar_sidebar", + "target": "frontend_admin_panel_src_components_sidebar" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_components_topbar_topbar", + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Layout.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_topbar_topbar", + "target": "frontend_admin_panel_src_components_layout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_topbar_topbar", + "target": "frontend_admin_panel_src_components_topbar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_b2bmanager_b2bmanager", + "target": "frontend_admin_panel_src_pages_b2bmanager" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/admin-panel/src/pages/Login.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_login_login", + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_login_login", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Login.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_login_login", + "target": "frontend_admin_panel_src_pages_login" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", + "target": "frontend_admin_panel_src_pages_seosettingspage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager", + "target": "frontend_admin_panel_src_pages_smartadvisormanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage", + "target": "frontend_admin_panel_src_pages_systemsettingspage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_processqueue", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_admin_service_adminservice_getdashboardstats", + "target": "backend_src_redis_redis_service_redisservice_get" }, { "relation": "calls", @@ -46534,6 +80907,66 @@ "source": "backend_src_auth_auth_service_authservice_sendotp", "target": "backend_src_common_utils_phone_utils_normalizemobile" }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_auth_auth_service_authservice_sendotp", + "target": "backend_src_common_services_sms_service_smsservice_sendotp" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_auth_auth_service_authservice_sendotp", + "target": "backend_src_redis_redis_service_redisservice_del" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_auth_auth_service_authservice_sendotp", + "target": "backend_src_redis_redis_service_redisservice_get" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_auth_auth_service_authservice_sendotp", + "target": "backend_src_redis_redis_service_redisservice_ttl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_auth_auth_service_authservice_sendotp", + "target": "backend_src_redis_redis_service_redisservice_incr" + }, { "relation": "calls", "context": "call", @@ -46549,1466 +80982,26 @@ { "relation": "calls", "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L20", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L130", "weight": 1.0, "_origin": "ast", - "source": "backend_src_auth_jwt_strategy_jwtstrategy_constructor", - "target": "backend_src_auth_auth_constants_getjwtsecret" + "source": "backend_src_auth_auth_service_authservice_verifyotp", + "target": "backend_src_redis_redis_service_redisservice_get" }, { "relation": "calls", "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L42", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L139", "weight": 1.0, "_origin": "ast", - "source": "backend_src_banners_banners_service_bannersservice_reorder", - "target": "backend_src_banners_banners_service_bannersservice_update", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L101", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatetag", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L103", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatepath", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L81", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatetag", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L83", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatepath", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L117", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatesettings", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatetag", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L120", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatesettings", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatepath", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L482", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_addpattern", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L492", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_addpattern", - "target": "backend_src_common_services_sms_service_smsservice_postasmx", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L505", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_addpattern", - "target": "backend_src_common_services_sms_service_smsservice_savelocalpattern", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L560", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_editpattern", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L570", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_editpattern", - "target": "backend_src_common_services_sms_service_smsservice_postasmx", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L582", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_editpattern", - "target": "backend_src_common_services_sms_service_smsservice_updatelocalpattern", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L305", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_getcredit", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L371", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_getpatterns", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L376", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_getpatterns", - "target": "backend_src_common_services_sms_service_smsservice_postasmx", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L380", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_getpatterns", - "target": "backend_src_common_services_sms_service_smsservice_parsepatternsxml", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L985", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L986", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L951", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L953", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L933", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_sendotp", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L934", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_sendotp", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L680", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L685", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "target": "backend_src_common_services_sms_service_smsservice_recordlog", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L1002", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L1004", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L969", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L970", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L1016", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_sendsms", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L1018", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_sendsms", - "target": "backend_src_common_services_sms_service_smsservice_recordlog", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L816", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_testsms", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L820", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_testsms", - "target": "backend_src_common_services_sms_service_smsservice_recordlog", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L178", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems", - "target": "backend_src_contact_contact_service_contactservice_getcontactinfo", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L92", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_service_doctorsservice_remove", - "target": "backend_src_doctors_doctors_service_doctorsservice_findone", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L83", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_service_doctorsservice_update", - "target": "backend_src_doctors_doctors_service_doctorsservice_findone", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_service_faqservice_reorder", - "target": "backend_src_faq_faq_service_faqservice_update", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_service_menuservice_onmoduleinit", - "target": "backend_src_menu_menu_service_menuservice_seedifempty", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L251", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_service_menuservice_reorder", - "target": "backend_src_menu_menu_service_menuservice_update", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L137", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_service_menuservice_seedifempty", - "target": "backend_src_menu_menu_service_menuservice_create", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L172", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice_create", - "target": "backend_src_orders_orders_service_ordersservice_validatecoupon", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L191", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice_create", - "target": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L486", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice_retrypayment", - "target": "backend_src_orders_orders_service_ordersservice_create", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L123", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L81", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L103", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L873", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", - "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L581", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", - "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L223", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_cancelcheckout", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L224", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_cancelcheckout", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L323", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_changeidentifiedpaymentstatus", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L324", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_changeidentifiedpaymentstatus", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L153", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_createcheckout", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L170", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_createcheckout", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L253", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountbalance", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L254", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountbalance", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L241", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountlist", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L199", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getcheckoutlist", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L206", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getcheckoutlist", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L295", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getidentifiedpaymentlist", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L302", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getidentifiedpaymentlist", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L267", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getstatementlist", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L274", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getstatementlist", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L184", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquirecheckout", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L185", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquirecheckout", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L341", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquireidentifiedpayment", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L342", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquireidentifiedpayment", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L94", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccesstoken", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L521", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_apirequest", - "target": "backend_src_payment_zibal_service_zibalservice_getaccesstoken", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L522", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_apirequest", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L305", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_checkhealth", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L751", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_createsubmerchant", - "target": "backend_src_payment_zibal_service_zibalservice_apirequest", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L773", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_editsubmerchant", - "target": "backend_src_payment_zibal_service_zibalservice_apirequest", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L145", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_getbackendurl", - "target": "backend_src_payment_zibal_service_zibalservice_getfrontendurl", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L723", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_getcheckoutqueuereport", - "target": "backend_src_payment_zibal_service_zibalservice_apirequest", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L709", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_getcheckoutreport", - "target": "backend_src_payment_zibal_service_zibalservice_apirequest", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L681", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_getgatewaytransactionsreport", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L682", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_getgatewaytransactionsreport", - "target": "backend_src_payment_zibal_service_zibalservice_apirequest", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L651", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_getrefundlist", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L652", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_getrefundlist", - "target": "backend_src_payment_zibal_service_zibalservice_apirequest", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L762", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_getsubmerchantlist", - "target": "backend_src_payment_zibal_service_zibalservice_apirequest", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L583", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_getwalletbalance", - "target": "backend_src_payment_zibal_service_zibalservice_apirequest", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L576", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_getwalletlist", - "target": "backend_src_payment_zibal_service_zibalservice_apirequest", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L736", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_inquirecheckoutreport", - "target": "backend_src_payment_zibal_service_zibalservice_apirequest", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L629", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_inquirerefund", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L630", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_inquirerefund", - "target": "backend_src_payment_zibal_service_zibalservice_apirequest", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L263", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_inquirypayment", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L270", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_inquirypayment", - "target": "backend_src_payment_zibal_service_zibalservice_callwithretry", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L375", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_requestlazypayment", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L388", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_requestlazypayment", - "target": "backend_src_payment_zibal_service_zibalservice_callwithretry", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L162", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_requestpayment", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L175", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_requestpayment", - "target": "backend_src_payment_zibal_service_zibalservice_callwithretry", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L597", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_requestrefund", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L619", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_requestrefund", - "target": "backend_src_payment_zibal_service_zibalservice_apirequest", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L425", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_verifylazypayment", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L431", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_verifylazypayment", - "target": "backend_src_payment_zibal_service_zibalservice_callwithretry", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L219", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_verifypayment", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L226", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_verifypayment", - "target": "backend_src_payment_zibal_service_zibalservice_callwithretry", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L261", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice_addhealthlog", - "target": "backend_src_pets_pets_service_petsservice_findone", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L262", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice_addhealthlog", - "target": "backend_src_pets_pets_service_petsservice_create", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L199", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice_addreminder", - "target": "backend_src_pets_pets_service_petsservice_findone", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L200", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice_addreminder", - "target": "backend_src_pets_pets_service_petsservice_create", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L192", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice_remove", - "target": "backend_src_pets_pets_service_petsservice_findone", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L217", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice_togglereminder", - "target": "backend_src_pets_pets_service_petsservice_findone", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L250", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice_togglereminder", - "target": "backend_src_pets_pets_service_petsservice_create", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L162", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice_update", - "target": "backend_src_pets_pets_service_petsservice_findone", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit", - "target": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L405", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_getcategorysetting", - "target": "backend_src_settings_settings_service_settingsservice_getuitexts", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L271", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", - "target": "backend_src_settings_settings_service_settingsservice_getuitexts", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L186", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_getuitexts", - "target": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L154", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_onmoduleinit", - "target": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L265", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", - "target": "backend_src_settings_settings_service_settingsservice_updateuitext", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L532", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", - "target": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L368", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", - "target": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L369", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", - "target": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service_ticketsservice_createticket", - "target": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L269", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_usersservice_setdefaultaddress", - "target": "backend_src_users_users_service_usersservice_update", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L290", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_usersservice_topupwallet", - "target": "backend_src_users_users_service_usersservice_update", - "confidence_score": 1.0 + "source": "backend_src_auth_auth_service_authservice_verifyotp", + "target": "backend_src_redis_redis_service_redisservice_del" }, { "relation": "calls", @@ -48019,884 +81012,619 @@ "source_location": "L138", "weight": 1.0, "_origin": "ast", - "source": "backend_src_users_users_service_usersservice_update", - "target": "backend_src_common_utils_phone_utils_normalizemobile" + "source": "backend_src_common_utils_phone_utils_normalizemobile", + "target": "backend_src_users_users_service_usersservice_update" }, { - "relation": "calls", - "context": "call", + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_utils_phone_utils_normalizemobile", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_utils_phone_utils_normalizemobile", + "target": "backend_src_auth_auth_service" + }, + { + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", "source_file": "backend/src/users/users.service.ts", - "source_location": "L243", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_usersservice_updateaddress", - "target": "backend_src_users_users_service_usersservice_update", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L106", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_service_videosservice_remove", - "target": "backend_src_videos_videos_service_videosservice_findone", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L94", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_service_videosservice_update", - "target": "backend_src_videos_videos_service_videosservice_findone", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_protectedroute_protectedroute", - "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_topbar_topbar", - "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L238", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "target": "frontend_admin_panel_src_components_ui_mediaselector_getfiletype", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", - "target": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_priceinput_priceinput", - "target": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_priceinput_priceinput", - "target": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/admin-panel/src/pages/Login.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_login_login", - "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L259", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media_mediamanager", - "target": "frontend_admin_panel_src_pages_media_getfiletype", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L427", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders_orders", - "target": "frontend_admin_panel_src_pages_orders_topersiandigits", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L727", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders_orders", - "target": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L292", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reviews_reviews", - "target": "frontend_admin_panel_src_pages_reviews_topersiandigits", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L818", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_topersiandigits", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L106", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions_transactions", - "target": "frontend_admin_panel_src_utils_usetableparams_usetableparams" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/about/page.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_about_page_generatemetadata", - "target": "frontend_application_lib_seo_getpagemetadata" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/api/revalidate/route.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_api_revalidate_route_get", - "target": "frontend_application_app_api_revalidate_route_handlerevalidate", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/api/revalidate/route.ts", "source_location": "L9", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_app_api_revalidate_route_post", - "target": "frontend_application_app_api_revalidate_route_handlerevalidate", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "frontend/application/app/b2b/page.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_b2b_page_b2bpage", - "target": "frontend_application_lib_schema_generateb2bserviceschema" + "source": "backend_src_common_utils_phone_utils_normalizemobile", + "target": "backend_src_users_users_service" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", + "source_file": "backend/src/common/utils/phone.utils.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", "confidence_score": 1.0, - "source_file": "frontend/application/app/b2b/page.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_b2b_page_b2bpage", - "target": "frontend_application_lib_schema_generatebreadcrumbschema" + "source": "backend_src_common_utils_phone_utils_normalizemobile", + "target": "backend_src_common_utils_phone_utils" }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", + "source_file": "backend/scripts/seo-backfill.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", "confidence_score": 1.0, - "source_file": "frontend/application/app/b2b/page.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_b2b_page_generatemetadata", - "target": "frontend_application_lib_seo_getpagemetadata" + "source": "backend_scripts_seo_backfill_runseobackfill", + "target": "backend_scripts_seo_backfill_striphtml" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L76", + "source_file": "backend/scripts/seo-backfill.ts", + "source_location": "L9", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_app_blog_page_blog", - "target": "frontend_application_app_blog_page_getblogs", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L76", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_page_blog", - "target": "frontend_application_app_blog_page_getcategories", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_page_generatemetadata", - "target": "frontend_application_lib_seo_getpagemetadata" + "source": "backend_scripts_seo_backfill_runseobackfill", + "target": "backend_scripts_seo_backfill" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/rss.xml/route.ts", - "source_location": "L23", + "source_file": "backend/scripts/seo-backfill.ts", + "source_location": "L5", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_app_blog_rss_xml_route_get", - "target": "frontend_application_app_blog_rss_xml_route_escapexml", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L140", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_slug_page_blogpostpage", - "target": "frontend_application_app_blog_slug_page_getblog", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L141", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_slug_page_blogpostpage", - "target": "frontend_application_lib_seo_getseoconfig" + "source": "backend_scripts_seo_backfill_striphtml", + "target": "backend_scripts_seo_backfill" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L153", + "source_file": "frontend/application/app/b2b/error.tsx", + "source_location": "L5", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_app_blog_slug_page_blogpostpage", - "target": "frontend_application_app_blog_slug_page_safelocaldate", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L159", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_slug_page_blogpostpage", - "target": "frontend_application_app_blog_slug_page_safeiso", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_slug_page_generatemetadata", - "target": "frontend_application_app_blog_slug_page_getblog", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L56", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_slug_page_generatemetadata", - "target": "frontend_application_lib_seo_getseoconfig" + "source": "frontend_application_app_b2b_error_b2berrorboundary", + "target": "frontend_application_app_b2b_error" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/error.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", "confidence_score": 1.0, - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L60", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_slug_page_generatemetadata", - "target": "frontend_application_lib_seo_formatpagetitle" + "source": "frontend_application_app_blog_error_blogerrorboundary", + "target": "frontend_application_app_blog_error" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L83", + "source_file": "frontend/application/app/error.tsx", + "source_location": "L5", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_app_blog_slug_page_generatemetadata", - "target": "frontend_application_app_blog_slug_page_safeiso", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "frontend/application/app/catalog/page.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_catalog_page_generatemetadata", - "target": "frontend_application_lib_seo_getpagemetadata" + "source": "frontend_application_app_error_errorboundary", + "target": "frontend_application_app_error" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L6", + "source_file": "frontend/application/app/not-found.tsx", + "source_location": "L3", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_app_checkout_page_generatemetadata", - "target": "frontend_application_lib_seo_getpagemetadata" + "confidence_score": 1.0, + "source": "frontend_application_app_not_found_notfound", + "target": "frontend_application_app_not_found" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L24", + "source_file": "frontend/application/app/shop/error.tsx", + "source_location": "L5", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_app_clientlayout_clientlayout", - "target": "frontend_application_lib_store_uistore_useuistore" + "confidence_score": 1.0, + "source": "frontend_application_app_shop_error_shoperrorboundary", + "target": "frontend_application_app_shop_error" }, { - "relation": "calls", - "context": "call", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", + "source_file": "frontend/application/app/not-found.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", "confidence_score": 1.0, - "source_file": "frontend/application/app/ClientLayout.tsx", + "source": "frontend_application_components_errorpages_notfoundpage", + "target": "frontend_application_app_not_found" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ErrorPages.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_errorpages_notfoundpage", + "target": "frontend_application_components_errorpages" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/b2b/error.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_errorpages_servererrorpage", + "target": "frontend_application_app_b2b_error" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/error.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_errorpages_servererrorpage", + "target": "frontend_application_app_blog_error" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/error.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_errorpages_servererrorpage", + "target": "frontend_application_app_error" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/error.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_errorpages_servererrorpage", + "target": "frontend_application_app_shop_error" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ErrorPages.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_errorpages_servererrorpage", + "target": "frontend_application_components_errorpages" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L35", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller_create", + "target": "backend_src_doctors_doctors_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", "source_location": "L36", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "frontend_application_app_clientlayout_clientlayout", - "target": "frontend_application_lib_store_userstore_useuserstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout_clientlayout", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "source": "backend_src_doctors_doctors_controller_doctorscontroller_create", + "target": "backend_src_doctors_doctors_controller_ts_useguards" }, { - "relation": "calls", - "context": "call", + "relation": "references", "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L37", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", "confidence_score": 1.0, - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_contact_page_contactpage", - "target": "frontend_application_lib_schema_generatelocalbusinessschema" + "source": "backend_src_doctors_doctors_controller_doctorscontroller_create", + "target": "backend_src_doctors_doctors_controller_ts_apibearerauth" }, { - "relation": "calls", - "context": "call", + "relation": "references", "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L38", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", "confidence_score": 1.0, - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_contact_page_contactpage", - "target": "frontend_application_lib_schema_generatebreadcrumbschema" + "source": "backend_src_doctors_doctors_controller_doctorscontroller_create", + "target": "backend_src_doctors_doctors_controller_ts_apioperation" }, { - "relation": "calls", - "context": "call", + "relation": "references", "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L39", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", "confidence_score": 1.0, - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_contact_page_generatemetadata", - "target": "frontend_application_lib_seo_getpagemetadata" + "source": "backend_src_doctors_doctors_controller_doctorscontroller_create", + "target": "backend_src_doctors_doctors_controller_ts_body" }, { "relation": "calls", "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/dashboard/page.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_dashboard_page_generatemetadata", - "target": "frontend_application_lib_seo_getpagemetadata" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L147", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient_homeclient", - "target": "frontend_application_lib_utils_topersian" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient_homeclient", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_layout_generatemetadata", - "target": "frontend_application_lib_seo_getseoconfig" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L105", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_layout_rootlayout", - "target": "frontend_application_lib_schema_generateorganizationschema" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/page.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_page_generatemetadata", - "target": "frontend_application_lib_seo_getpagemetadata" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_page_home", - "target": "frontend_application_app_page_gethomedata", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L121", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_payment_verify_page_verifycontent", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L189", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_payment_verify_page_verifycontent", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_payment_verify_page_verifycontent", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_payment_verify_page_verifycontent", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/privacy/page.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_privacy_page_generatemetadata", - "target": "frontend_application_lib_seo_getpagemetadata" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/profile/page.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_profile_page_generatemetadata", - "target": "frontend_application_lib_seo_getpagemetadata" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/search/page.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_search_page_generatemetadata", - "target": "frontend_application_lib_seo_getpagemetadata" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_page_generatemetadata", - "target": "frontend_application_lib_seo_getpagemetadata" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_slug_page_generatemetadata", - "target": "frontend_application_lib_seo_getseoconfig" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_slug_page_generatemetadata", - "target": "frontend_application_lib_seo_formatpagetitle" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/track/page.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_track_page_generatemetadata", - "target": "frontend_application_lib_seo_getpagemetadata" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_trust_seals_page_generatemetadata", - "target": "frontend_application_lib_seo_getpagemetadata" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_videos_page_generatemetadata", - "target": "frontend_application_lib_seo_getpagemetadata" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_videos_page_videos", - "target": "frontend_application_app_videos_page_getinitialvideos", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_videos_page_videos", - "target": "frontend_application_lib_schema_generatevideoobjectschema" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_videos_page_videos", - "target": "frontend_application_lib_schema_generatebreadcrumbschema" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/wiki/page.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_page_generatemetadata", - "target": "frontend_application_lib_seo_getpagemetadata" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/doctors/doctors.controller.ts", "source_location": "L40", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page_generatemetadata", - "target": "frontend_application_app_wiki_slug_page_getwikiterm", - "confidence_score": 1.0 + "source": "backend_src_doctors_doctors_controller_doctorscontroller_create", + "target": "backend_src_doctors_doctors_service_doctorsservice_create" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller_findall", + "target": "backend_src_doctors_doctors_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L24", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller_findall", + "target": "backend_src_doctors_doctors_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L25", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller_findall", + "target": "backend_src_doctors_doctors_controller_ts_query" }, { "relation": "calls", "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L41", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L26", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page_generatemetadata", - "target": "frontend_application_lib_seo_getseoconfig" + "source": "backend_src_doctors_doctors_controller_doctorscontroller_findall", + "target": "backend_src_doctors_doctors_service_doctorsservice_findall" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L29", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller_findone", + "target": "backend_src_doctors_doctors_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L30", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller_findone", + "target": "backend_src_doctors_doctors_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller_findone", + "target": "backend_src_doctors_doctors_controller_ts_param" }, { "relation": "calls", "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_doctors_doctors_controller_doctorscontroller_findone", + "target": "backend_src_doctors_doctors_service_doctorsservice_findone" + }, + { + "relation": "references", "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L54", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", "confidence_score": 1.0, - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source": "backend_src_doctors_doctors_controller_doctorscontroller_remove", + "target": "backend_src_doctors_doctors_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L55", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller_remove", + "target": "backend_src_doctors_doctors_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L56", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller_remove", + "target": "backend_src_doctors_doctors_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L57", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller_remove", + "target": "backend_src_doctors_doctors_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller_remove", + "target": "backend_src_doctors_doctors_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_doctors_doctors_controller_doctorscontroller_remove", + "target": "backend_src_doctors_doctors_service_doctorsservice_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L43", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller_update", + "target": "backend_src_doctors_doctors_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L44", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller_update", + "target": "backend_src_doctors_doctors_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", "source_location": "L45", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page_generatemetadata", - "target": "frontend_application_lib_seo_formatpagetitle" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L103", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page_wikitermpage", - "target": "frontend_application_lib_schema_generatebreadcrumbschema" + "source": "backend_src_doctors_doctors_controller_doctorscontroller_update", + "target": "backend_src_doctors_doctors_controller_ts_apibearerauth" }, { - "relation": "calls", - "context": "call", + "relation": "references", "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L80", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L46", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page_wikitermpage", - "target": "frontend_application_app_wiki_slug_page_getwikiterm", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L94", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page_wikitermpage", - "target": "frontend_application_app_wiki_slug_page_getrelatedproducts", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L96", + "source": "backend_src_doctors_doctors_controller_doctorscontroller_update", + "target": "backend_src_doctors_doctors_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller_update", + "target": "backend_src_doctors_doctors_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L49", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller_doctorscontroller_update", + "target": "backend_src_doctors_doctors_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L51", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page_wikitermpage", - "target": "frontend_application_lib_schema_generatemedicalwebpageschema" + "source": "backend_src_doctors_doctors_controller_doctorscontroller_update", + "target": "backend_src_doctors_doctors_service_doctorsservice_update" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_service_doctorsservice_findone", + "target": "backend_src_doctors_doctors_service_doctorsservice_remove" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_service_doctorsservice_findone", + "target": "backend_src_doctors_doctors_service_doctorsservice_update" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "scripts/open-browsers.js", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "scripts_open_browsers_checkandopen", + "target": "scripts_open_browsers_openurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/open-browsers.js", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "scripts_open_browsers_checkandopen", + "target": "scripts_open_browsers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/open-browsers.js", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "scripts_open_browsers_openurl", + "target": "scripts_open_browsers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/schemas/paginated-response.schema.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_schemas_paginated_response_schema_createpaginatedschema", + "target": "backend_src_common_schemas_paginated_response_schema" }, { "relation": "calls", @@ -48911,40 +81639,39 @@ "target": "frontend_application_lib_utils_cn" }, { - "relation": "calls", - "context": "call", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L202", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L26", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_components_archivepage_archiveproductcard", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_components_addressmodal_addressmodal", + "target": "frontend_application_components_checkoutpage" }, { - "relation": "calls", - "context": "call", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L75", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L12", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_components_archivepage_archiveproductcard", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_components_addressmodal_addressmodal", + "target": "frontend_application_components_userdashboard" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L77", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L18", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_components_archivepage_archiveproductcard", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_components_addressmodal_addressmodal", + "target": "frontend_application_components_addressmodal" }, { "relation": "calls", @@ -48954,9 +81681,9 @@ "source_location": "L116", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_authmodal_authmodal", - "target": "frontend_application_components_authmodal_extractotpfromtext", - "confidence_score": 1.0 + "target": "frontend_application_components_authmodal_extractotpfromtext" }, { "relation": "calls", @@ -49000,12 +81727,47 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L837", + "source_location": "L842", "weight": 1.0, "_origin": "ast", "source": "frontend_application_components_authmodal_authmodal", "target": "frontend_application_lib_utils_topersian" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_authmodal_authmodal", + "target": "frontend_application_components_cartdrawer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_authmodal_authmodal", + "target": "frontend_application_components_header" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_authmodal_authmodal", + "target": "frontend_application_components_authmodal" + }, { "relation": "calls", "context": "call", @@ -49014,57 +81776,20 @@ "source_location": "L32", "weight": 1.0, "_origin": "ast", + "confidence_score": 1.0, "source": "frontend_application_components_authmodal_extractotpfromtext", - "target": "frontend_application_lib_utils_toenglishdigits", - "confidence_score": 1.0 + "target": "frontend_application_lib_utils_toenglishdigits" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/B2BLandingClient.tsx", + "source_file": "frontend/application/components/AuthModal.tsx", "source_location": "L30", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_components_b2blandingclient_b2blandingclient", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L214", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal_b2bportal", - "target": "frontend_application_lib_utils_topersian" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal_b2bportal", - "target": "frontend_application_lib_store_cartstore_usecartstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal_b2bportal", - "target": "frontend_application_lib_store_userstore_useuserstore" + "source": "frontend_application_components_authmodal_extractotpfromtext", + "target": "frontend_application_components_authmodal" }, { "relation": "calls", @@ -49079,124 +81804,27 @@ "target": "frontend_application_lib_utils_cn" }, { - "relation": "calls", - "context": "call", + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BackButton.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_backbutton_backbutton", + "target": "frontend_application_components_backbutton" + }, + { + "relation": "imports", + "_origin": "ast", "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L142", + "context": "import", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L6", "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpreviewsection_blogpreviewsection", - "target": "frontend_application_lib_utils_topersian" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpreviewsection_blogpreviewsection", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/BrandLogo.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_brandlogo_brandlogo", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L139", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer_cartdrawer", - "target": "frontend_application_lib_utils_topersian" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer_cartdrawer", - "target": "frontend_application_lib_store_cartstore_usecartstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer_cartdrawer", - "target": "frontend_application_lib_store_userstore_useuserstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer_cartdrawer", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L325", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_getformbadge", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L326", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", - "source_location": "L206", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", - "target": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext", - "confidence_score": 1.0 + "source": "frontend_application_components_backbutton_backbutton", + "target": "frontend_application_components_videospage" }, { "relation": "calls", @@ -49271,148 +81899,50 @@ "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { - "relation": "calls", - "context": "call", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", + "source_file": "frontend/application/app/checkout/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", "confidence_score": 1.0, - "source_file": "frontend/application/components/EnamadBadge.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_enamadbadge_enamadbadge", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "source": "frontend_application_components_checkoutpage_checkoutpage", + "target": "frontend_application_app_checkout_page" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", "confidence_score": 1.0, - "source_file": "frontend/application/components/FAQSection.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_faqsection_faqsection", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "source": "frontend_application_components_checkoutpage_checkoutpage", + "target": "frontend_application_components_checkoutpage" }, { - "relation": "calls", - "context": "call", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", "confidence_score": 1.0, - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L146", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts_featuredproducts", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "source": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", + "target": "frontend_application_components_userdashboard" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L18", + "source_file": "frontend/application/components/DeleteConfirmModal.tsx", + "source_location": "L14", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_components_featuredproducts_productcard", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts_productcard", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts_productcard", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "frontend/application/components/Footer.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_footer_footer", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L141", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header_header", - "target": "frontend_application_lib_store_cartstore_usecartstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L142", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header_header", - "target": "frontend_application_lib_store_usepetstore_usepetstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L143", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header_header", - "target": "frontend_application_lib_store_userstore_useuserstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L258", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header_header", - "target": "frontend_application_lib_utils_cn" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header_header", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "source": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", + "target": "frontend_application_components_deleteconfirmmodal" }, { "relation": "calls", @@ -49439,88 +81969,15 @@ "target": "frontend_application_lib_utils_topersian" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", + "source_file": "frontend/application/components/HeaderButton.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", "confidence_score": 1.0, - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_hero_hero", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_hero_statcounter", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L90", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ingredientwiki_ingredientwiki", - "target": "frontend_application_components_ingredientwiki_formatingredientdisplayname", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_loginmodal_loginmodal", - "target": "frontend_application_lib_store_userstore_useuserstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L297", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_loginmodal_loginmodal", - "target": "frontend_application_lib_utils_topersian" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/MaintenancePage.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_maintenancepage_maintenancepage", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/NetworkBanner.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_networkbanner_networkbanner", - "target": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus" + "source": "frontend_application_components_headerbutton_headerbutton", + "target": "frontend_application_components_headerbutton" }, { "relation": "calls", @@ -49547,196 +82004,63 @@ "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, { - "relation": "calls", + "relation": "contains", "context": "call", "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/OrderSuccess.tsx", - "source_location": "L19", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L282", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_components_ordersuccess_ordersuccess", - "target": "frontend_application_lib_store_cartstore_usecartstore" + "confidence_score": 1.0, + "source": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", + "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon" }, { - "relation": "calls", + "relation": "contains", "context": "call", "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/OrderSuccess.tsx", - "source_location": "L20", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L302", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_components_ordersuccess_ordersuccess", - "target": "frontend_application_lib_store_usepetstore_usepetstore" + "confidence_score": 1.0, + "source": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", + "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel" }, { - "relation": "calls", - "context": "call", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/OrderTracking.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ordertracking_ordertracking", - "target": "frontend_application_lib_store_cartstore_usecartstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L331", + "source_location": "L33", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_components_petprofile_petprofile", - "target": "frontend_application_lib_utils_cn" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L378", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile_petprofile", - "target": "frontend_application_lib_utils_topersian" + "source": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", + "target": "frontend_application_components_petprofile" }, { - "relation": "calls", - "context": "call", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", "confidence_score": 1.0, - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile_petprofile", - "target": "frontend_application_lib_store_usepetstore_usepetstore" + "source": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", + "target": "frontend_application_components_userdashboard" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", "confidence_score": 1.0, - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile_petprofile", - "target": "frontend_application_lib_store_cartstore_usecartstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", - "target": "frontend_application_lib_store_userstore_useuserstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", - "target": "frontend_application_lib_store_usepetstore_usepetstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L122", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage_productpage", - "target": "frontend_application_lib_store_usepetstore_usepetstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L124", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage_productpage", - "target": "frontend_application_components_productpage_usecalculatorstore", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L125", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage_productpage", - "target": "frontend_application_lib_store_cartstore_usecartstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L127", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage_productpage", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L492", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage_productpage", - "target": "frontend_application_lib_utils_topersian" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L138", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productreviews_productreviews", - "target": "frontend_application_lib_utils_topersian" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/SafeImage.tsx", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_safeimage_safeimage", - "target": "frontend_application_lib_utils_cn" + "source": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", + "target": "frontend_application_components_orderdetailsmodal" }, { "relation": "calls", @@ -49751,112 +82075,39 @@ "target": "frontend_application_lib_utils_cn" }, { - "relation": "calls", - "context": "call", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/SearchResultsPage.tsx", - "source_location": "L15", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L8", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_components_searchresultspage_searchresultspage", - "target": "frontend_application_lib_store_usepetstore_usepetstore" + "confidence_score": 1.0, + "source": "frontend_application_components_searchableselect_searchableselect", + "target": "frontend_application_components_addressmodal" }, { - "relation": "calls", - "context": "call", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L357", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L27", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_components_smartadvisor_smartadvisor", - "target": "frontend_application_lib_utils_cn" + "confidence_score": 1.0, + "source": "frontend_application_components_searchableselect_searchableselect", + "target": "frontend_application_components_checkoutpage" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L56", + "source_file": "frontend/application/components/SearchableSelect.tsx", + "source_location": "L17", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_components_smartadvisor_smartadvisor", - "target": "frontend_application_lib_store_userstore_useuserstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L57", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor_smartadvisor", - "target": "frontend_application_lib_store_uistore_useuistore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor_smartadvisor", - "target": "frontend_application_lib_store_usepetstore_usepetstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L59", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor_smartadvisor", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_testimonialssection_testimonialssection", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/TickerBanner.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tickerbanner_tickerbanner", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tooltip_tooltip", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + "source": "frontend_application_components_searchableselect_searchableselect", + "target": "frontend_application_components_searchableselect" }, { "relation": "calls", @@ -49882,6 +82133,41 @@ "source": "frontend_application_components_topupmodal_topupmodal", "target": "frontend_application_lib_store_settingsstore_usesettingsstore" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_topupmodal_topupmodal", + "target": "frontend_application_components_checkoutpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_topupmodal_topupmodal", + "target": "frontend_application_components_userdashboard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_topupmodal_topupmodal", + "target": "frontend_application_components_topupmodal" + }, { "relation": "calls", "context": "call", @@ -49966,78237 +82252,625 @@ "source": "frontend_application_components_userdashboard_userdashboard", "target": "frontend_application_lib_utils_cn" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/dashboard/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard_userdashboard", + "target": "frontend_application_app_dashboard_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard_userdashboard", + "target": "frontend_application_components_userdashboard" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_cn", + "target": "frontend_application_app_payment_verify_page_verifycontent" + }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L72", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_vetgallery_vetgallery", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/seo.ts", - "source_location": "L177", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_seo_getpagemetadata", - "target": "frontend_application_lib_seo_getseoconfig", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/seo.ts", - "source_location": "L187", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_seo_getpagemetadata", - "target": "frontend_application_lib_seo_formatpagetitle", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L316", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", - "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L288", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice_getproductbyid", - "target": "frontend_application_lib_services_productservice_productservice_serverfetch", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L289", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice_getproductbyid", - "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L302", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice_getproductbyslug", - "target": "frontend_application_lib_services_productservice_productservice_serverfetch", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L303", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice_getproductbyslug", - "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L268", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice_getproducts", - "target": "frontend_application_lib_services_productservice_productservice_serverfetch", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L270", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice_getproducts", - "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L67", - "weight": 1.0, - "context": "call", - "_origin": "ast", - "source": "gitea_scripts_with_vpn_cleanup", - "target": "gitea_scripts_with_vpn_log", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L68", - "weight": 1.0, - "context": "call", - "_origin": "ast", - "source": "gitea_scripts_with_vpn_cleanup", - "target": "gitea_scripts_with_vpn_stop_vpn", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L74", - "weight": 1.0, - "context": "call", - "_origin": "ast", - "source": "gitea_scripts_with_vpn_sh__entry", - "target": "gitea_scripts_with_vpn_start_vpn", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L76", - "weight": 1.0, - "context": "call", - "_origin": "ast", - "source": "gitea_scripts_with_vpn_sh__entry", - "target": "gitea_scripts_with_vpn_log", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L21", - "weight": 1.0, - "context": "call", - "_origin": "ast", - "source": "gitea_scripts_with_vpn_start_vpn", - "target": "gitea_scripts_with_vpn_vpn_is_up", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L22", - "weight": 1.0, - "context": "call", - "_origin": "ast", - "source": "gitea_scripts_with_vpn_start_vpn", - "target": "gitea_scripts_with_vpn_log", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L52", - "weight": 1.0, - "context": "call", - "_origin": "ast", - "source": "gitea_scripts_with_vpn_stop_vpn", - "target": "gitea_scripts_with_vpn_log", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "scripts/open-browsers.js", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "scripts_open_browsers_checkandopen", - "target": "scripts_open_browsers_openurl", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpreviewsection_blogpreviewsection", - "target": "frontend_application_components_blogpreviewsection_blogpreviewsection_loadblogs", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ContactFormClient.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_contactformclient_contactformclient", - "target": "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FAQSection.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_faqsection_faqsection", - "target": "frontend_application_components_faqsection_faqsection_loadfaqs", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L282", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", - "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatusicon", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L302", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", - "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal_getstatuslabel", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_testimonialssection_testimonialssection", - "target": "frontend_application_components_testimonialssection_testimonialssection_loadtestimonials", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L25", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L26", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L27", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L28", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L101", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_adjustwallet", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L95", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_adjustwallet", - "target": "backend_src_admin_admin_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L96", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_adjustwallet", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L98", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_adjustwallet", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L207", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", - "target": "backend_src_admin_admin_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L208", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L209", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L245", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createdoctor", - "target": "backend_src_admin_admin_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L246", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createdoctor", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L248", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createdoctor", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L126", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createproduct", - "target": "backend_src_admin_admin_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L127", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createproduct", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L128", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createproduct", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L49", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createuser", - "target": "backend_src_admin_admin_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L50", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createuser", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L51", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createuser", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L231", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_deletecoupon", - "target": "backend_src_admin_admin_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L232", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_deletecoupon", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L233", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_deletecoupon", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L278", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_deletedoctor", - "target": "backend_src_admin_admin_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L279", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_deletedoctor", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L280", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_deletedoctor", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L143", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_deleteproduct", - "target": "backend_src_admin_admin_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L144", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_deleteproduct", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L145", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_deleteproduct", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L78", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_deleteuser", - "target": "backend_src_admin_admin_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L79", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_deleteuser", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L80", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_deleteuser", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L197", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", - "target": "backend_src_admin_admin_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L198", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L201", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", - "target": "backend_src_admin_admin_controller_ts_apiquery", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L202", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", - "target": "backend_src_admin_admin_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L32", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", - "target": "backend_src_admin_admin_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L33", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L238", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getdoctors", - "target": "backend_src_admin_admin_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L239", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getdoctors", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L160", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getorderbyid", - "target": "backend_src_admin_admin_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L161", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getorderbyid", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L162", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getorderbyid", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L150", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getorders", - "target": "backend_src_admin_admin_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L151", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getorders", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L154", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getorders", - "target": "backend_src_admin_admin_controller_ts_apiquery", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L155", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getorders", - "target": "backend_src_admin_admin_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L116", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getproducts", - "target": "backend_src_admin_admin_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L117", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getproducts", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L120", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getproducts", - "target": "backend_src_admin_admin_controller_ts_apiquery", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L121", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getproducts", - "target": "backend_src_admin_admin_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L285", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getsettings", - "target": "backend_src_admin_admin_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L286", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getsettings", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L60", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getuserdetails", - "target": "backend_src_admin_admin_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L61", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getuserdetails", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L62", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getuserdetails", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getusers", - "target": "backend_src_admin_admin_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getusers", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L43", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getusers", - "target": "backend_src_admin_admin_controller_ts_apiquery", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L44", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getusers", - "target": "backend_src_admin_admin_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L182", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", - "target": "backend_src_admin_admin_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L183", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L185", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L187", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L221", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L222", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L224", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L225", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L214", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L215", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L216", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L216", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L261", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L262", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L264", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L265", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L167", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L168", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L170", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L172", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L133", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateproduct", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L134", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateproduct", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L135", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateproduct", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L135", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateproduct", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L292", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatesettings", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L293", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatesettings", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L294", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatesettings", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L67", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateuser", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L68", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateuser", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L69", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateuser", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L69", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateuser", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L88", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateuserrole", - "target": "backend_src_admin_admin_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L89", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateuserrole", - "target": "backend_src_admin_admin_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L90", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateuserrole", - "target": "backend_src_admin_admin_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L90", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateuserrole", - "target": "backend_src_admin_admin_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L21", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_module_adminmodule", - "target": "backend_src_admin_admin_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L50", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L25", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L26", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L27", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L28", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L116", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_createblog", - "target": "backend_src_admin_blogs_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L117", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_createblog", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L119", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_createblog", - "target": "backend_src_admin_blogs_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L120", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_createblog", - "target": "backend_src_admin_blogs_controller_ts_request", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L64", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_createblogcategory", - "target": "backend_src_admin_blogs_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L65", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_createblogcategory", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L66", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_createblogcategory", - "target": "backend_src_admin_blogs_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L95", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_createblogtag", - "target": "backend_src_admin_blogs_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L96", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_createblogtag", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L97", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_createblogtag", - "target": "backend_src_admin_blogs_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L133", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", - "target": "backend_src_admin_blogs_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L134", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L135", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", - "target": "backend_src_admin_blogs_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L81", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblogcategory", - "target": "backend_src_admin_blogs_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L82", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblogcategory", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L83", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblogcategory", - "target": "backend_src_admin_blogs_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L102", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblogtag", - "target": "backend_src_admin_blogs_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L103", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblogtag", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L104", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblogtag", - "target": "backend_src_admin_blogs_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L172", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_deletecomment", - "target": "backend_src_admin_blogs_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L173", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_deletecomment", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L174", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_deletecomment", - "target": "backend_src_admin_blogs_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L50", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getauthors", - "target": "backend_src_admin_blogs_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L51", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getauthors", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L109", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getblogbyid", - "target": "backend_src_admin_blogs_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L110", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getblogbyid", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L111", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getblogbyid", - "target": "backend_src_admin_blogs_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L57", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getblogcategories", - "target": "backend_src_admin_blogs_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getblogcategories", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L32", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getblogs", - "target": "backend_src_admin_blogs_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L33", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getblogs", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L38", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getblogs", - "target": "backend_src_admin_blogs_controller_ts_apiquery", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getblogs", - "target": "backend_src_admin_blogs_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L88", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getblogtags", - "target": "backend_src_admin_blogs_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L89", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getblogtags", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L141", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getcomments", - "target": "backend_src_admin_blogs_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L142", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getcomments", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L150", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getcomments", - "target": "backend_src_admin_blogs_controller_ts_apiquery", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L152", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getcomments", - "target": "backend_src_admin_blogs_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L126", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_updateblog", - "target": "backend_src_admin_blogs_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L127", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_updateblog", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L128", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_updateblog", - "target": "backend_src_admin_blogs_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L128", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_updateblog", - "target": "backend_src_admin_blogs_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L71", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory", - "target": "backend_src_admin_blogs_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L72", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L74", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory", - "target": "backend_src_admin_blogs_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L75", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory", - "target": "backend_src_admin_blogs_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L163", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus", - "target": "backend_src_admin_blogs_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L164", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus", - "target": "backend_src_admin_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L166", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus", - "target": "backend_src_admin_blogs_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L167", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus", - "target": "backend_src_admin_blogs_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L7", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L24", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L25", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L26", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L27", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L47", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_createcategory", - "target": "backend_src_admin_categories_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L48", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_createcategory", - "target": "backend_src_admin_categories_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L49", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_createcategory", - "target": "backend_src_admin_categories_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L64", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", - "target": "backend_src_admin_categories_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L65", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", - "target": "backend_src_admin_categories_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L66", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", - "target": "backend_src_admin_categories_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", - "target": "backend_src_admin_categories_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", - "target": "backend_src_admin_categories_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_getcategories", - "target": "backend_src_admin_categories_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L32", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_getcategories", - "target": "backend_src_admin_categories_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L35", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_getcategories", - "target": "backend_src_admin_categories_controller_ts_apiquery", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L36", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_getcategories", - "target": "backend_src_admin_categories_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L54", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", - "target": "backend_src_admin_categories_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L55", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", - "target": "backend_src_admin_categories_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L57", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", - "target": "backend_src_admin_categories_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", - "target": "backend_src_admin_categories_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L11", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_categories_service_categoriesservice", - "target": "backend_src_admin_categories_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/admin-query.dto.ts", - "source_location": "L16", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "target": "backend_src_admin_dto_admin_query_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/admin-query.dto.ts", - "source_location": "L17", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "target": "backend_src_admin_dto_admin_query_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/admin-query.dto.ts", - "source_location": "L18", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "target": "backend_src_admin_dto_admin_query_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/product.dto.ts", - "source_location": "L198", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_product_dto_productdto", - "target": "backend_src_admin_dto_product_dto_ts_isarray", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/product.dto.ts", - "source_location": "L235", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_product_dto_productdto", - "target": "backend_src_admin_dto_product_dto_ts_isboolean", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/product.dto.ts", - "source_location": "L238", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_product_dto_productdto", - "target": "backend_src_admin_dto_product_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/product.dto.ts", - "source_location": "L239", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_product_dto_productdto", - "target": "backend_src_admin_dto_product_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/product.dto.ts", - "source_location": "L240", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_product_dto_productdto", - "target": "backend_src_admin_dto_product_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/product.dto.ts", - "source_location": "L88", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_product_dto_productdto", - "target": "backend_src_admin_dto_product_dto_ts_isnumber", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L22", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_user_dto_createuserdto", - "target": "backend_src_admin_dto_user_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L23", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_user_dto_createuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L32", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_user_dto_createuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isemail", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L38", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_user_dto_createuserdto", - "target": "backend_src_admin_dto_user_dto_ts_minlength", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L43", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_user_dto_createuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L46", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_user_dto_createuserdto", - "target": "backend_src_admin_dto_user_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L47", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_user_dto_createuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L48", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_user_dto_createuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isnumber", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L73", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_user_dto_updateuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isemail", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L82", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_user_dto_updateuserdto", - "target": "backend_src_admin_dto_user_dto_ts_minlength", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L87", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_user_dto_updateuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L90", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_user_dto_updateuserdto", - "target": "backend_src_admin_dto_user_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L91", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_user_dto_updateuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L92", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_dto_user_dto_updateuserdto", - "target": "backend_src_admin_dto_user_dto_ts_isnumber", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L19", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L20", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L21", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L42", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", - "target": "backend_src_admin_media_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L43", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", - "target": "backend_src_admin_media_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L44", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", - "target": "backend_src_admin_media_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L45", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", - "target": "backend_src_admin_media_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L53", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_deletemedia", - "target": "backend_src_admin_media_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L54", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_deletemedia", - "target": "backend_src_admin_media_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L55", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_deletemedia", - "target": "backend_src_admin_media_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L56", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_deletemedia", - "target": "backend_src_admin_media_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L25", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_getallmedia", - "target": "backend_src_admin_media_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L26", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_getallmedia", - "target": "backend_src_admin_media_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L27", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_getallmedia", - "target": "backend_src_admin_media_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L61", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_updatemedia", - "target": "backend_src_admin_media_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L62", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_updatemedia", - "target": "backend_src_admin_media_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L63", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_updatemedia", - "target": "backend_src_admin_media_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L67", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_updatemedia", - "target": "backend_src_admin_media_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L68", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_updatemedia", - "target": "backend_src_admin_media_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L33", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_uploadfile", - "target": "backend_src_admin_media_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L34", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_uploadfile", - "target": "backend_src_admin_media_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L35", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_uploadfile", - "target": "backend_src_admin_media_controller_ts_useinterceptors", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L36", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_uploadfile", - "target": "backend_src_admin_media_controller_ts_uploadedfile", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_media_service_mediaservice", - "target": "backend_src_admin_media_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L20", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_pets_controller_petscontroller", - "target": "backend_src_admin_pets_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L21", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_pets_controller_petscontroller", - "target": "backend_src_admin_pets_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L22", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_pets_controller_petscontroller", - "target": "backend_src_admin_pets_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L23", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_pets_controller_petscontroller", - "target": "backend_src_admin_pets_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L36", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_pets_controller_petscontroller_deletepet", - "target": "backend_src_admin_pets_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L37", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_pets_controller_petscontroller_deletepet", - "target": "backend_src_admin_pets_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L38", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_pets_controller_petscontroller_deletepet", - "target": "backend_src_admin_pets_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L27", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_pets_controller_petscontroller_getpets", - "target": "backend_src_admin_pets_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L28", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_pets_controller_petscontroller_getpets", - "target": "backend_src_admin_pets_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_pets_controller_petscontroller_getpets", - "target": "backend_src_admin_pets_controller_ts_apiquery", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L32", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_pets_controller_petscontroller_getpets", - "target": "backend_src_admin_pets_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L11", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_pets_service_petsservice", - "target": "backend_src_admin_pets_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_reports_controller_reportscontroller", - "target": "backend_src_admin_reports_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L7", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_reports_controller_reportscontroller", - "target": "backend_src_admin_reports_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L8", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_reports_controller_reportscontroller", - "target": "backend_src_admin_reports_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L12", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_reports_controller_reportscontroller_getreports", - "target": "backend_src_admin_reports_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L13", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_reports_controller_reportscontroller_getreports", - "target": "backend_src_admin_reports_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L14", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_reports_controller_reportscontroller_getreports", - "target": "backend_src_admin_reports_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L4", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_reports_service_reportsservice", - "target": "backend_src_admin_reports_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L19", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L20", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L21", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L22", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L23", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L27", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_getstatus", - "target": "backend_src_admin_ssl_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L28", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_getstatus", - "target": "backend_src_admin_ssl_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L94", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_testdomain", - "target": "backend_src_admin_ssl_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L95", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_testdomain", - "target": "backend_src_admin_ssl_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L98", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_testdomain", - "target": "backend_src_admin_ssl_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L34", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", - "target": "backend_src_admin_ssl_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L35", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", - "target": "backend_src_admin_ssl_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L38", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", - "target": "backend_src_admin_ssl_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L43", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "target": "backend_src_admin_ssl_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L44", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "target": "backend_src_admin_ssl_controller_ts_useinterceptors", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L45", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "target": "backend_src_admin_ssl_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L49", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "target": "uploadedfiles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L51", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "target": "backend_src_admin_ssl_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L22", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L24", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L25", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L26", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L27", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller_createterm", - "target": "backend_src_admin_wiki_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller_createterm", - "target": "backend_src_admin_wiki_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L42", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller_createterm", - "target": "backend_src_admin_wiki_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L57", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", - "target": "backend_src_admin_wiki_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", - "target": "backend_src_admin_wiki_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L59", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", - "target": "backend_src_admin_wiki_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller_getterms", - "target": "backend_src_admin_wiki_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L32", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller_getterms", - "target": "backend_src_admin_wiki_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L35", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller_getterms", - "target": "backend_src_admin_wiki_controller_ts_apiquery", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L36", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller_getterms", - "target": "backend_src_admin_wiki_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L47", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller_updateterm", - "target": "backend_src_admin_wiki_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L48", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller_updateterm", - "target": "backend_src_admin_wiki_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L50", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller_updateterm", - "target": "backend_src_admin_wiki_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L51", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller_updateterm", - "target": "backend_src_admin_wiki_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L11", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_admin_wiki_service_wikiservice", - "target": "backend_src_admin_wiki_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.controller.ts", - "source_location": "L4", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_app_controller_appcontroller", - "target": "backend_src_app_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.controller.ts", - "source_location": "L8", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_app_controller_appcontroller_gethello", - "target": "backend_src_app_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_app_module_appmodule", - "target": "backend_src_app_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.service.ts", - "source_location": "L3", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_app_service_appservice", - "target": "backend_src_app_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L27", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L28", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L29", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L92", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "target": "backend_src_auth_auth_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L93", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "target": "httpcode", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L94", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "target": "backend_src_auth_auth_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L95", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "target": "backend_src_auth_auth_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L96", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L97", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "target": "backend_src_auth_auth_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L83", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_login", - "target": "backend_src_auth_auth_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L84", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_login", - "target": "httpcode", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L85", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_login", - "target": "backend_src_auth_auth_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L86", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_login", - "target": "backend_src_auth_auth_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L87", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_login", - "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L88", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_login", - "target": "backend_src_auth_auth_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L116", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_logout", - "target": "backend_src_auth_auth_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L117", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_logout", - "target": "httpcode", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L118", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_logout", - "target": "backend_src_auth_auth_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L119", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_logout", - "target": "backend_src_auth_auth_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L101", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_refresh", - "target": "backend_src_auth_auth_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L102", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_refresh", - "target": "backend_src_auth_auth_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L103", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_refresh", - "target": "backend_src_auth_auth_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L104", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_refresh", - "target": "httpcode", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L105", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_refresh", - "target": "backend_src_auth_auth_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L106", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_refresh", - "target": "backend_src_auth_auth_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L108", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_refresh", - "target": "backend_src_auth_auth_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L72", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_register", - "target": "backend_src_auth_auth_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L73", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_register", - "target": "httpcode", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L74", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_register", - "target": "backend_src_auth_auth_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L75", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_register", - "target": "backend_src_auth_auth_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L76", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_register", - "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L79", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_register", - "target": "backend_src_auth_auth_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L44", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_sendotp", - "target": "backend_src_auth_auth_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L45", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_sendotp", - "target": "httpcode", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L46", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_sendotp", - "target": "backend_src_auth_auth_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L47", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_sendotp", - "target": "backend_src_auth_auth_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L56", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_sendotp", - "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L57", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_sendotp", - "target": "backend_src_auth_auth_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L61", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "target": "backend_src_auth_auth_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L62", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "target": "httpcode", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L63", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "target": "backend_src_auth_auth_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L64", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "target": "backend_src_auth_auth_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L65", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L68", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "target": "backend_src_auth_auth_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.module.ts", - "source_location": "L10", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_module_authmodule", - "target": "backend_src_auth_auth_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L36", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/admin-login.dto.ts", - "source_location": "L10", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "target": "backend_src_auth_dto_admin_login_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/admin-login.dto.ts", - "source_location": "L11", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "target": "backend_src_auth_dto_admin_login_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/admin-login.dto.ts", - "source_location": "L12", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "target": "backend_src_auth_dto_admin_login_dto_ts_minlength", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/admin-login.dto.ts", - "source_location": "L13", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "target": "backend_src_auth_dto_admin_login_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/admin-login.dto.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "target": "backend_src_auth_dto_admin_login_dto_ts_isemail", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/login.dto.ts", - "source_location": "L10", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_login_dto_logindto", - "target": "backend_src_auth_dto_login_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/login.dto.ts", - "source_location": "L11", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_login_dto_logindto", - "target": "backend_src_auth_dto_login_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/login.dto.ts", - "source_location": "L12", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_login_dto_logindto", - "target": "backend_src_auth_dto_login_dto_ts_minlength", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/login.dto.ts", - "source_location": "L7", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_login_dto_logindto", - "target": "backend_src_auth_dto_login_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/register.dto.ts", - "source_location": "L21", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_register_dto_registerdto", - "target": "backend_src_auth_dto_register_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/register.dto.ts", - "source_location": "L25", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_register_dto_registerdto", - "target": "backend_src_auth_dto_register_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/register.dto.ts", - "source_location": "L26", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_register_dto_registerdto", - "target": "backend_src_auth_dto_register_dto_ts_isemail", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/register.dto.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_register_dto_registerdto", - "target": "backend_src_auth_dto_register_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/register.dto.ts", - "source_location": "L34", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_register_dto_registerdto", - "target": "backend_src_auth_dto_register_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/register.dto.ts", - "source_location": "L35", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_register_dto_registerdto", - "target": "backend_src_auth_dto_register_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/register.dto.ts", - "source_location": "L36", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_register_dto_registerdto", - "target": "backend_src_auth_dto_register_dto_ts_minlength", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/send-otp.dto.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "target": "backend_src_auth_dto_send_otp_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/send-otp.dto.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "target": "backend_src_auth_dto_send_otp_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/send-otp.dto.ts", - "source_location": "L7", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "target": "backend_src_auth_dto_send_otp_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/send-otp.dto.ts", - "source_location": "L8", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "target": "backend_src_auth_dto_send_otp_dto_ts_matches", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/verify-otp.dto.ts", - "source_location": "L11", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "target": "backend_src_auth_dto_verify_otp_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/verify-otp.dto.ts", - "source_location": "L12", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "target": "backend_src_auth_dto_verify_otp_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/verify-otp.dto.ts", - "source_location": "L13", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "target": "backend_src_auth_dto_verify_otp_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/verify-otp.dto.ts", - "source_location": "L14", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "target": "length", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/verify-otp.dto.ts", - "source_location": "L8", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "target": "backend_src_auth_dto_verify_otp_dto_ts_matches", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/jwt-auth.guard.ts", - "source_location": "L4", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "target": "backend_src_auth_jwt_auth_guard_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L14", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_auth_jwt_strategy_jwtstrategy", - "target": "backend_src_auth_jwt_strategy_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L17", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L18", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L22", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", - "target": "backend_src_b2b_b2b_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L23", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", - "target": "backend_src_b2b_b2b_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L25", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", - "target": "backend_src_b2b_b2b_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L69", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "target": "backend_src_b2b_b2b_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L70", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "target": "backend_src_b2b_b2b_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L71", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "target": "backend_src_b2b_b2b_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L72", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "target": "backend_src_b2b_b2b_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L74", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "target": "backend_src_b2b_b2b_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L75", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "target": "backend_src_b2b_b2b_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "target": "backend_src_b2b_b2b_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "target": "backend_src_b2b_b2b_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L42", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "target": "backend_src_b2b_b2b_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L43", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "target": "backend_src_b2b_b2b_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L81", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "target": "backend_src_b2b_b2b_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L82", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L83", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "target": "backend_src_b2b_b2b_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L84", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "target": "backend_src_b2b_b2b_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L85", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "target": "backend_src_b2b_b2b_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L60", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", - "target": "backend_src_b2b_b2b_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L61", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", - "target": "backend_src_b2b_b2b_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L62", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", - "target": "backend_src_b2b_b2b_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L63", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", - "target": "backend_src_b2b_b2b_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L64", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", - "target": "backend_src_b2b_b2b_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L48", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "target": "backend_src_b2b_b2b_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L49", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L50", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "target": "backend_src_b2b_b2b_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L51", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "target": "backend_src_b2b_b2b_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L52", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "target": "backend_src_b2b_b2b_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L54", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "target": "backend_src_b2b_b2b_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L55", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "target": "backend_src_b2b_b2b_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.module.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_module_b2bmodule", - "target": "backend_src_b2b_b2b_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L13", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_b2b_b2b_service_b2bservice", - "target": "backend_src_b2b_b2b_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L19", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller", - "target": "backend_src_banners_banners_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L20", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller", - "target": "backend_src_banners_banners_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L30", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_create", - "target": "backend_src_banners_banners_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_create", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L32", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_create", - "target": "backend_src_banners_banners_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L33", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_create", - "target": "backend_src_banners_banners_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L34", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_create", - "target": "backend_src_banners_banners_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L35", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_create", - "target": "backend_src_banners_banners_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L24", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_findall", - "target": "backend_src_banners_banners_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L25", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_findall", - "target": "backend_src_banners_banners_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L57", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_remove", - "target": "backend_src_banners_banners_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_remove", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L59", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_remove", - "target": "backend_src_banners_banners_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L60", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_remove", - "target": "backend_src_banners_banners_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L61", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_remove", - "target": "backend_src_banners_banners_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L62", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_remove", - "target": "backend_src_banners_banners_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "target": "backend_src_banners_banners_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "target": "backend_src_banners_banners_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L42", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "target": "backend_src_banners_banners_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L43", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "target": "backend_src_banners_banners_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L44", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "target": "backend_src_banners_banners_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L48", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_update", - "target": "backend_src_banners_banners_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L49", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_update", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L50", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_update", - "target": "backend_src_banners_banners_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L51", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_update", - "target": "backend_src_banners_banners_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L52", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_update", - "target": "backend_src_banners_banners_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L53", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_update", - "target": "backend_src_banners_banners_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L53", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_update", - "target": "backend_src_banners_banners_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.module.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_module_bannersmodule", - "target": "backend_src_banners_banners_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_banners_banners_service_bannersservice", - "target": "backend_src_banners_banners_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L24", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "backend_src_blogs_blogs_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L25", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "backend_src_blogs_blogs_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L26", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L73", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", - "target": "backend_src_blogs_blogs_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L74", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", - "target": "backend_src_blogs_blogs_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L75", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", - "target": "backend_src_blogs_blogs_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L76", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", - "target": "backend_src_blogs_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L78", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", - "target": "backend_src_blogs_blogs_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L79", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", - "target": "backend_src_blogs_blogs_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L80", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", - "target": "backend_src_blogs_blogs_controller_ts_request", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L33", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findall", - "target": "backend_src_blogs_blogs_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L34", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findall", - "target": "backend_src_blogs_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L35", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findall", - "target": "backend_src_blogs_blogs_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L36", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findall", - "target": "backend_src_blogs_blogs_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findcategories", - "target": "backend_src_blogs_blogs_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findcategories", - "target": "backend_src_blogs_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L67", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findcomments", - "target": "backend_src_blogs_blogs_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L68", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findcomments", - "target": "backend_src_blogs_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L69", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findcomments", - "target": "backend_src_blogs_blogs_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L52", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findhomepage", - "target": "backend_src_blogs_blogs_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L53", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findhomepage", - "target": "backend_src_blogs_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L54", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findhomepage", - "target": "backend_src_blogs_blogs_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L59", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findone", - "target": "backend_src_blogs_blogs_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L60", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findone", - "target": "backend_src_blogs_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L61", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findone", - "target": "backend_src_blogs_blogs_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L62", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findone", - "target": "backend_src_blogs_blogs_controller_ts_apinotfoundresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L63", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findone", - "target": "backend_src_blogs_blogs_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L46", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findtags", - "target": "backend_src_blogs_blogs_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L47", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findtags", - "target": "backend_src_blogs_blogs_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.module.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_module_blogsmodule", - "target": "backend_src_blogs_blogs_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L12", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_blogs_blogs_service_blogsservice", - "target": "backend_src_blogs_blogs_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L22", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L23", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L24", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L25", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L26", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L37", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_createherobanner", - "target": "backend_src_cms_cms_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L38", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_createherobanner", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_createherobanner", - "target": "backend_src_cms_cms_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L93", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L94", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L95", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L65", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", - "target": "backend_src_cms_cms_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L66", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L67", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", - "target": "backend_src_cms_cms_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L52", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", - "target": "backend_src_cms_cms_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L53", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L54", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", - "target": "backend_src_cms_cms_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L108", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L109", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L110", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L80", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", - "target": "backend_src_cms_cms_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L81", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L82", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", - "target": "backend_src_cms_cms_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_getherobanners", - "target": "backend_src_cms_cms_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L32", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_getherobanners", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L87", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", - "target": "backend_src_cms_cms_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L88", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L59", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", - "target": "backend_src_cms_cms_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L60", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L43", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", - "target": "backend_src_cms_cms_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L44", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L46", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", - "target": "backend_src_cms_cms_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L47", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", - "target": "backend_src_cms_cms_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L100", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L102", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L103", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L99", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", - "target": "backend_src_cms_cms_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L71", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", - "target": "backend_src_cms_cms_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L72", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", - "target": "backend_src_cms_cms_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L74", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", - "target": "backend_src_cms_cms_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L75", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", - "target": "backend_src_cms_cms_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.module.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_module_cmsmodule", - "target": "backend_src_cms_cms_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L9", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L20", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto_createherobannerdto", - "target": "backend_src_cms_dto_cms_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto_createherobannerdto", - "target": "backend_src_cms_dto_cms_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L36", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto_createherobannerdto", - "target": "backend_src_cms_dto_cms_dto_ts_isnumber", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto_createherobannerdto", - "target": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto_createherobannerdto", - "target": "backend_src_cms_dto_cms_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto_createherobannerdto", - "target": "backend_src_cms_dto_cms_dto_ts_isboolean", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L85", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "target": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L86", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "target": "backend_src_cms_dto_cms_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L91", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "target": "isuuid", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L94", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "target": "backend_src_cms_dto_cms_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L95", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "target": "backend_src_cms_dto_cms_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L60", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "target": "backend_src_cms_dto_cms_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L61", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "target": "backend_src_cms_dto_cms_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L71", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "target": "backend_src_cms_dto_cms_dto_ts_isnumber", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L74", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "target": "backend_src_cms_dto_cms_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L75", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "target": "backend_src_cms_dto_cms_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L76", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "target": "backend_src_cms_dto_cms_dto_ts_isboolean", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L28", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_dto_pagination_dto_paginationdto", - "target": "backend_src_common_dto_pagination_dto_ts_type", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L29", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_dto_pagination_dto_paginationdto", - "target": "backend_src_common_dto_pagination_dto_ts_isint", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L30", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_dto_pagination_dto_paginationdto", - "target": "backend_src_common_dto_pagination_dto_ts_min", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L47", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_dto_pagination_dto_paginationdto", - "target": "backend_src_common_dto_pagination_dto_ts_isenum", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L50", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_dto_pagination_dto_paginationdto", - "target": "backend_src_common_dto_pagination_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L51", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_dto_pagination_dto_paginationdto", - "target": "backend_src_common_dto_pagination_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L52", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_dto_pagination_dto_paginationdto", - "target": "backend_src_common_dto_pagination_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L12", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "target": "backend_src_common_filters_http_exception_filter_ts_catch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/filters/prisma-exception.filter.ts", - "source_location": "L11", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", - "target": "backend_src_common_filters_prisma_exception_filter_ts_catch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L16", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_guards_roles_guard_rolesguard", - "target": "backend_src_common_guards_roles_guard_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L11", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "target": "backend_src_common_interceptors_decimal_interceptor_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_metrics_controller_metricscontroller", - "target": "apiexcludecontroller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L7", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_metrics_controller_metricscontroller", - "target": "backend_src_common_metrics_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L17", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_metrics_controller_metricscontroller_getmetrics", - "target": "backend_src_common_metrics_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L18", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_metrics_controller_metricscontroller_getmetrics", - "target": "backend_src_common_metrics_controller_ts_res", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.module.ts", - "source_location": "L4", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_module_revalidationmodule", - "target": "backend_src_common_revalidation_revalidation_module_ts_global", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.module.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_module_revalidationmodule", - "target": "backend_src_common_revalidation_revalidation_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L3", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "target": "backend_src_common_revalidation_revalidation_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/schemas/error-response.schema.ts", - "source_location": "L50", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_schemas_error_response_schema_apierrorresponse", - "target": "backend_src_common_schemas_error_response_schema_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/schemas/error-response.schema.ts", - "source_location": "L7", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_schemas_error_response_schema_errordetailfield", - "target": "backend_src_common_schemas_error_response_schema_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/schemas/paginated-response.schema.ts", - "source_location": "L21", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_schemas_paginated_response_schema_paginatedresponse", - "target": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/schemas/paginated-response.schema.ts", - "source_location": "L13", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_schemas_paginated_response_schema_paginationmeta", - "target": "backend_src_common_schemas_paginated_response_schema_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L50", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/sms.module.ts", - "source_location": "L4", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_sms_module_smsmodule", - "target": "backend_src_common_sms_module_ts_global", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/sms.module.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_common_sms_module_smsmodule", - "target": "backend_src_common_sms_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L16", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", - "target": "backend_src_contact_contact_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", - "target": "backend_src_contact_contact_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L45", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", - "target": "backend_src_contact_contact_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L34", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo", - "target": "backend_src_contact_contact_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L20", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_submitcontact", - "target": "backend_src_contact_contact_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L22", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_submitcontact", - "target": "backend_src_contact_contact_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L68", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", - "target": "backend_src_contact_contact_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L69", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L70", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", - "target": "backend_src_contact_contact_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L72", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", - "target": "backend_src_contact_contact_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L54", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", - "target": "backend_src_contact_contact_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L55", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L56", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", - "target": "backend_src_contact_contact_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", - "target": "backend_src_contact_contact_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L59", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", - "target": "backend_src_contact_contact_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.module.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_module_contactmodule", - "target": "backend_src_contact_contact_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L21", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_contact_contact_service_contactservice", - "target": "backend_src_contact_contact_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L18", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller", - "target": "backend_src_doctors_doctors_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L19", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller", - "target": "backend_src_doctors_doctors_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L35", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_create", - "target": "backend_src_doctors_doctors_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L36", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_create", - "target": "backend_src_doctors_doctors_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L37", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_create", - "target": "backend_src_doctors_doctors_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L38", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_create", - "target": "backend_src_doctors_doctors_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_create", - "target": "backend_src_doctors_doctors_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L23", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_findall", - "target": "backend_src_doctors_doctors_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L24", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_findall", - "target": "backend_src_doctors_doctors_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L25", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_findall", - "target": "backend_src_doctors_doctors_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L29", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_findone", - "target": "backend_src_doctors_doctors_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L30", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_findone", - "target": "backend_src_doctors_doctors_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_findone", - "target": "backend_src_doctors_doctors_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L54", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_remove", - "target": "backend_src_doctors_doctors_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L55", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_remove", - "target": "backend_src_doctors_doctors_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L56", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_remove", - "target": "backend_src_doctors_doctors_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L57", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_remove", - "target": "backend_src_doctors_doctors_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_remove", - "target": "backend_src_doctors_doctors_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L43", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_update", - "target": "backend_src_doctors_doctors_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L44", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_update", - "target": "backend_src_doctors_doctors_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L45", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_update", - "target": "backend_src_doctors_doctors_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L46", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_update", - "target": "backend_src_doctors_doctors_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L48", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_update", - "target": "backend_src_doctors_doctors_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L49", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_update", - "target": "backend_src_doctors_doctors_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.module.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_module_doctorsmodule", - "target": "backend_src_doctors_doctors_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L8", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_doctors_service_doctorsservice", - "target": "backend_src_doctors_doctors_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", - "source_location": "L19", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", - "target": "backend_src_doctors_dto_doctor_query_dto_ts_type", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", - "source_location": "L20", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", - "target": "backend_src_doctors_dto_doctor_query_dto_ts_isint", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", - "source_location": "L21", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", - "target": "backend_src_doctors_dto_doctor_query_dto_ts_min", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", - "source_location": "L26", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", - "target": "backend_src_doctors_dto_doctor_query_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", - "source_location": "L29", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", - "target": "backend_src_doctors_dto_doctor_query_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", - "source_location": "L30", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", - "target": "backend_src_doctors_dto_doctor_query_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", - "target": "backend_src_doctors_dto_doctor_query_dto_ts_transform", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", - "source_location": "L36", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", - "target": "backend_src_doctors_dto_doctor_query_dto_ts_isboolean", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L17", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller", - "target": "backend_src_faq_faq_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L18", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller", - "target": "backend_src_faq_faq_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L37", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_create", - "target": "backend_src_faq_faq_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L38", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_create", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_create", - "target": "backend_src_faq_faq_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_create", - "target": "backend_src_faq_faq_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_create", - "target": "backend_src_faq_faq_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L43", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_create", - "target": "backend_src_faq_faq_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L22", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_findactive", - "target": "backend_src_faq_faq_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L23", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_findactive", - "target": "backend_src_faq_faq_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L28", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_findall", - "target": "backend_src_faq_faq_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L29", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_findall", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L30", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_findall", - "target": "backend_src_faq_faq_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_findall", - "target": "backend_src_faq_faq_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L32", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_findall", - "target": "backend_src_faq_faq_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L81", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_remove", - "target": "backend_src_faq_faq_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L82", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_remove", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L83", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_remove", - "target": "backend_src_faq_faq_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L84", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_remove", - "target": "backend_src_faq_faq_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L85", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_remove", - "target": "backend_src_faq_faq_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L86", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_remove", - "target": "backend_src_faq_faq_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L54", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_reorder", - "target": "backend_src_faq_faq_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L55", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_reorder", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L56", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_reorder", - "target": "backend_src_faq_faq_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L57", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_reorder", - "target": "backend_src_faq_faq_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_reorder", - "target": "backend_src_faq_faq_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L59", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_reorder", - "target": "backend_src_faq_faq_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L63", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_update", - "target": "backend_src_faq_faq_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L64", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_update", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L65", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_update", - "target": "backend_src_faq_faq_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L66", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_update", - "target": "backend_src_faq_faq_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L67", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_update", - "target": "backend_src_faq_faq_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L69", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_update", - "target": "backend_src_faq_faq_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L70", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_update", - "target": "backend_src_faq_faq_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.module.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_module_faqmodule", - "target": "backend_src_faq_faq_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L4", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_faq_faq_service_faqservice", - "target": "backend_src_faq_faq_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L10", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_home_home_controller_homecontroller", - "target": "backend_src_home_home_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L11", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_home_home_controller_homecontroller", - "target": "backend_src_home_home_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L12", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_home_home_controller_homecontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L19", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_home_home_controller_homecontroller_gethomedata", - "target": "backend_src_home_home_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L20", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_home_home_controller_homecontroller_gethomedata", - "target": "backend_src_home_home_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L21", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_home_home_controller_homecontroller_gethomedata", - "target": "backend_src_home_home_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.module.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_home_home_module_homemodule", - "target": "backend_src_home_home_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L4", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_home_home_service_homeservice", - "target": "backend_src_home_home_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L18", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "target": "backend_src_ingredients_ingredients_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L19", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "target": "backend_src_ingredients_ingredients_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L35", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "target": "backend_src_ingredients_ingredients_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L36", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L37", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "target": "backend_src_ingredients_ingredients_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L38", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "target": "backend_src_ingredients_ingredients_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "target": "backend_src_ingredients_ingredients_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "target": "backend_src_ingredients_ingredients_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L23", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", - "target": "backend_src_ingredients_ingredients_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L24", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", - "target": "backend_src_ingredients_ingredients_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L29", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", - "target": "backend_src_ingredients_ingredients_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L30", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", - "target": "backend_src_ingredients_ingredients_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", - "target": "backend_src_ingredients_ingredients_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L53", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "target": "backend_src_ingredients_ingredients_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L54", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L55", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "target": "backend_src_ingredients_ingredients_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L56", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "target": "backend_src_ingredients_ingredients_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L57", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "target": "backend_src_ingredients_ingredients_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "target": "backend_src_ingredients_ingredients_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L44", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "target": "backend_src_ingredients_ingredients_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L45", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L46", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "target": "backend_src_ingredients_ingredients_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L47", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "target": "backend_src_ingredients_ingredients_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L48", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "target": "backend_src_ingredients_ingredients_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L49", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "target": "backend_src_ingredients_ingredients_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L49", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "target": "backend_src_ingredients_ingredients_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.module.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_module_ingredientsmodule", - "target": "backend_src_ingredients_ingredients_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_service_ingredientsservice", - "target": "backend_src_ingredients_ingredients_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L23", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller", - "target": "backend_src_menu_menu_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L24", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller", - "target": "backend_src_menu_menu_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L55", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_create", - "target": "backend_src_menu_menu_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L56", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_create", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L57", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_create", - "target": "backend_src_menu_menu_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_create", - "target": "backend_src_menu_menu_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L59", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_create", - "target": "backend_src_menu_menu_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L61", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_create", - "target": "backend_src_menu_menu_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L45", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_findalladmin", - "target": "backend_src_menu_menu_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L46", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_findalladmin", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L47", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_findalladmin", - "target": "backend_src_menu_menu_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L48", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_findalladmin", - "target": "backend_src_menu_menu_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L49", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_findalladmin", - "target": "backend_src_menu_menu_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L50", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_findalladmin", - "target": "backend_src_menu_menu_controller_ts_apiquery", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L51", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_findalladmin", - "target": "backend_src_menu_menu_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L28", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_findbytype", - "target": "backend_src_menu_menu_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L29", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_findbytype", - "target": "backend_src_menu_menu_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L30", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_findbytype", - "target": "backend_src_menu_menu_controller_ts_apiquery", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L35", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_findbytype", - "target": "backend_src_menu_menu_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_findbytypeparam", - "target": "backend_src_menu_menu_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_findbytypeparam", - "target": "backend_src_menu_menu_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_findbytypeparam", - "target": "backend_src_menu_menu_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L109", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_remove", - "target": "backend_src_menu_menu_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L110", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_remove", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L111", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_remove", - "target": "backend_src_menu_menu_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L112", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_remove", - "target": "backend_src_menu_menu_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L113", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_remove", - "target": "backend_src_menu_menu_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L114", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_remove", - "target": "backend_src_menu_menu_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L77", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_reorder", - "target": "backend_src_menu_menu_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L78", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_reorder", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L79", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_reorder", - "target": "backend_src_menu_menu_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L80", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_reorder", - "target": "backend_src_menu_menu_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L81", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_reorder", - "target": "backend_src_menu_menu_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L82", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_reorder", - "target": "backend_src_menu_menu_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L86", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_update", - "target": "backend_src_menu_menu_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L87", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_update", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L88", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_update", - "target": "backend_src_menu_menu_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L89", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_update", - "target": "backend_src_menu_menu_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L90", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_update", - "target": "backend_src_menu_menu_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L92", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_update", - "target": "backend_src_menu_menu_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L93", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_update", - "target": "backend_src_menu_menu_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.module.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_module_menumodule", - "target": "backend_src_menu_menu_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_menu_menu_service_menuservice", - "target": "backend_src_menu_menu_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L60", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_dto_create_order_dto_createorderdto", - "target": "backend_src_orders_dto_create_order_dto_ts_isnumber", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L63", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_dto_create_order_dto_createorderdto", - "target": "backend_src_orders_dto_create_order_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L64", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_dto_create_order_dto_createorderdto", - "target": "backend_src_orders_dto_create_order_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L65", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_dto_create_order_dto_createorderdto", - "target": "backend_src_orders_dto_create_order_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L68", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_dto_create_order_dto_createorderdto", - "target": "backend_src_orders_dto_create_order_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L69", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_dto_create_order_dto_createorderdto", - "target": "backend_src_orders_dto_create_order_dto_ts_isarray", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L70", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_dto_create_order_dto_createorderdto", - "target": "validatenested", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L71", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_dto_create_order_dto_createorderdto", - "target": "backend_src_orders_dto_create_order_dto_ts_type", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L15", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_dto_create_order_dto_orderitemdto", - "target": "backend_src_orders_dto_create_order_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L18", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_dto_create_order_dto_orderitemdto", - "target": "backend_src_orders_dto_create_order_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L19", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_dto_create_order_dto_orderitemdto", - "target": "backend_src_orders_dto_create_order_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L20", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_dto_create_order_dto_orderitemdto", - "target": "backend_src_orders_dto_create_order_dto_ts_isnumber", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L38", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L42", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L57", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_create", - "target": "backend_src_orders_orders_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_create", - "target": "backend_src_orders_orders_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L59", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_create", - "target": "backend_src_orders_orders_controller_ts_apicreatedresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L74", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_create", - "target": "backend_src_orders_orders_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L86", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_create", - "target": "backend_src_orders_orders_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L87", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_create", - "target": "backend_src_orders_orders_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L121", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_findall", - "target": "backend_src_orders_orders_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L122", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_findall", - "target": "backend_src_orders_orders_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L123", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_findall", - "target": "backend_src_orders_orders_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L146", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_findall", - "target": "backend_src_orders_orders_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L146", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_findall", - "target": "backend_src_orders_orders_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L208", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_findone", - "target": "backend_src_orders_orders_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L208", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_findone", - "target": "backend_src_orders_orders_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L150", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "target": "backend_src_orders_orders_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L178", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "target": "backend_src_orders_orders_controller_ts_apinotfoundresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L189", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "target": "backend_src_orders_orders_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L190", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "target": "backend_src_orders_orders_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L193", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "target": "backend_src_orders_orders_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L197", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "target": "backend_src_orders_orders_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L198", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "target": "backend_src_orders_orders_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L199", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "target": "backend_src_orders_orders_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L107", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "target": "backend_src_orders_orders_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L111", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "target": "backend_src_orders_orders_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L112", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "target": "backend_src_orders_orders_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L92", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "target": "backend_src_orders_orders_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L93", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "target": "backend_src_orders_orders_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L94", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "target": "backend_src_orders_orders_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L30", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_validatecoupondto", - "target": "backend_src_orders_orders_controller_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_validatecoupondto", - "target": "backend_src_orders_orders_controller_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L34", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_controller_validatecoupondto", - "target": "backend_src_orders_orders_controller_ts_isnumber", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.module.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_module_ordersmodule", - "target": "backend_src_orders_orders_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L13", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", - "source_location": "L62", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_type", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", - "source_location": "L63", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isnumber", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", - "source_location": "L68", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", - "source_location": "L71", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", - "source_location": "L75", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", - "source_location": "L76", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_ts_isin", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", - "source_location": "L13", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", - "target": "backend_src_payment_dto_ebank_checkout_dto_ts_min", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", - "source_location": "L16", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", - "target": "backend_src_payment_dto_ebank_checkout_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", - "source_location": "L18", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", - "target": "backend_src_payment_dto_ebank_checkout_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", - "source_location": "L32", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", - "target": "backend_src_payment_dto_ebank_checkout_dto_ts_isnumber", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", - "source_location": "L51", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", - "target": "backend_src_payment_dto_ebank_checkout_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", - "source_location": "L52", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", - "target": "backend_src_payment_dto_ebank_checkout_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", - "source_location": "L53", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", - "target": "backend_src_payment_dto_ebank_checkout_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L10", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L11", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L12", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L17", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L18", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L21", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L22", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L23", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "target": "backend_src_payment_dto_initiate_payment_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/verify-payment.dto.ts", - "source_location": "L45", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", - "target": "backend_src_payment_dto_verify_payment_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/verify-payment.dto.ts", - "source_location": "L46", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", - "target": "backend_src_payment_dto_verify_payment_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/verify-payment.dto.ts", - "source_location": "L47", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", - "target": "backend_src_payment_dto_verify_payment_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L466", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L467", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L468", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L469", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L470", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L472", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L503", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L504", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L505", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L506", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L507", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L509", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L434", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L435", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L436", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L437", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L438", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L439", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L241", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createrefund", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L242", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createrefund", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L243", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createrefund", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L244", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createrefund", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L245", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createrefund", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L247", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createrefund", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L360", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L361", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L362", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L363", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L364", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L366", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L371", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L372", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L373", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L374", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", - "target": "backend_src_payment_payment_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L375", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L377", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L529", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L530", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L531", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L532", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L533", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L520", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L521", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L522", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L523", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L524", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L525", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L232", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L233", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L234", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L235", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L236", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L338", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L339", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L340", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L341", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L342", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L318", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L319", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L320", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L321", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L322", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L326", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L386", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L387", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L388", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L389", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L390", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L391", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_payment_payment_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L396", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L397", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L398", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L399", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L400", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L403", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "target": "backend_src_payment_payment_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L443", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L444", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L445", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L446", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L447", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L454", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", - "target": "backend_src_payment_payment_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L480", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L481", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L482", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L483", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L484", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L491", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", - "target": "backend_src_payment_payment_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L411", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L412", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L413", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L414", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L415", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L422", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", - "target": "backend_src_payment_payment_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L293", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L294", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L295", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L296", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L297", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L301", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L610", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L611", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L612", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L613", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L614", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L274", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L275", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L276", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L277", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L278", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L280", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L351", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L352", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L353", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L354", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L355", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L356", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", - "target": "backend_src_payment_payment_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L222", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L223", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L224", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", - "target": "backend_src_payment_payment_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L112", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L113", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L117", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "backend_src_payment_payment_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L118", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "backend_src_payment_payment_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L119", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "backend_src_payment_payment_controller_ts_res", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L120", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "ip", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L121", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "headers", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L192", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L193", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L195", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L196", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "backend_src_payment_payment_controller_ts_res", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L197", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "ip", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L198", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "headers", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L65", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L66", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L67", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L68", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L69", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L72", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L76", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L77", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L78", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "ip", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L79", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "headers", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L100", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "ip", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L101", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "headers", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L90", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L91", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L92", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L93", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L94", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L98", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L99", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L259", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L260", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L261", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L262", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L263", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L265", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L575", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L576", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L577", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L578", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L579", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L580", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L549", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L550", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L551", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L552", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L553", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L557", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L598", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L599", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L600", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L601", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L602", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L604", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L605", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L584", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L585", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L586", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L587", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L588", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L592", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L593", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L538", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "target": "backend_src_payment_payment_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L539", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L540", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "target": "backend_src_payment_payment_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L541", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "target": "backend_src_payment_payment_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L542", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L167", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "target": "backend_src_payment_payment_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L168", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "target": "backend_src_payment_payment_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L173", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "target": "backend_src_payment_payment_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L174", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "target": "ip", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L175", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "target": "headers", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L9", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_module_paymentmodule", - "target": "backend_src_payment_payment_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L18", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L43", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "target": "backend_src_payment_zibal_ebank_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L42", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-health-log.dto.ts", - "source_location": "L15", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "target": "backend_src_pets_dto_create_health_log_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-health-log.dto.ts", - "source_location": "L16", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "target": "backend_src_pets_dto_create_health_log_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-health-log.dto.ts", - "source_location": "L20", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "target": "backend_src_pets_dto_create_health_log_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-health-log.dto.ts", - "source_location": "L24", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "target": "backend_src_pets_dto_create_health_log_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-health-log.dto.ts", - "source_location": "L25", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "target": "backend_src_pets_dto_create_health_log_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-pet.dto.ts", - "source_location": "L16", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_dto_create_pet_dto_createpetdto", - "target": "backend_src_pets_dto_create_pet_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-pet.dto.ts", - "source_location": "L17", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_dto_create_pet_dto_createpetdto", - "target": "backend_src_pets_dto_create_pet_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-pet.dto.ts", - "source_location": "L33", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_dto_create_pet_dto_createpetdto", - "target": "backend_src_pets_dto_create_pet_dto_ts_isnumber", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-pet.dto.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_dto_create_pet_dto_createpetdto", - "target": "backend_src_pets_dto_create_pet_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-pet.dto.ts", - "source_location": "L42", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_dto_create_pet_dto_createpetdto", - "target": "backend_src_pets_dto_create_pet_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-pet.dto.ts", - "source_location": "L43", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_dto_create_pet_dto_createpetdto", - "target": "backend_src_pets_dto_create_pet_dto_ts_isarray", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-pet.dto.ts", - "source_location": "L44", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_dto_create_pet_dto_createpetdto", - "target": "backend_src_pets_dto_create_pet_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-reminder.dto.ts", - "source_location": "L15", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "target": "backend_src_pets_dto_create_reminder_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-reminder.dto.ts", - "source_location": "L19", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "target": "backend_src_pets_dto_create_reminder_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-reminder.dto.ts", - "source_location": "L23", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "target": "backend_src_pets_dto_create_reminder_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-reminder.dto.ts", - "source_location": "L27", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "target": "backend_src_pets_dto_create_reminder_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-reminder.dto.ts", - "source_location": "L28", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "target": "backend_src_pets_dto_create_reminder_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L42", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L43", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L283", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "target": "backend_src_pets_pets_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L284", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "target": "backend_src_pets_pets_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L286", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "target": "backend_src_pets_pets_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L287", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "target": "backend_src_pets_pets_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L288", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "target": "backend_src_pets_pets_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L257", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_addreminder", - "target": "backend_src_pets_pets_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", + "source_file": "frontend/application/components/Header.tsx", "source_location": "L258", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_addreminder", - "target": "backend_src_pets_pets_controller_ts_apioperation", - "confidence_score": 1.0 + "source": "frontend_application_lib_utils_cn", + "target": "frontend_application_components_header_header" }, { - "relation": "references", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L260", + "confidence_score": 1.0, + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L331", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_addreminder", - "target": "backend_src_pets_pets_controller_ts_req", - "confidence_score": 1.0 + "source": "frontend_application_lib_utils_cn", + "target": "frontend_application_components_petprofile_petprofile" }, { - "relation": "references", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L261", + "confidence_score": 1.0, + "source_file": "frontend/application/components/SafeImage.tsx", + "source_location": "L55", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_addreminder", - "target": "backend_src_pets_pets_controller_ts_param", - "confidence_score": 1.0 + "source": "frontend_application_lib_utils_cn", + "target": "frontend_application_components_safeimage_safeimage" }, { - "relation": "references", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L262", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L17", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_addreminder", - "target": "backend_src_pets_pets_controller_ts_body", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_cn", + "target": "frontend_application_app_payment_verify_page" }, { - "relation": "references", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L108", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_create", - "target": "backend_src_pets_pets_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L120", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_create", - "target": "backend_src_pets_pets_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L121", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_create", - "target": "backend_src_pets_pets_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L89", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_create", - "target": "backend_src_pets_pets_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L90", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_create", - "target": "backend_src_pets_pets_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L91", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_create", - "target": "backend_src_pets_pets_controller_ts_apicreatedresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L126", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_findall", - "target": "backend_src_pets_pets_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L127", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_findall", - "target": "backend_src_pets_pets_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L128", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_findall", - "target": "backend_src_pets_pets_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L155", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_findall", - "target": "backend_src_pets_pets_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L155", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_findall", - "target": "backend_src_pets_pets_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L159", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_findone", - "target": "backend_src_pets_pets_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L160", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_findone", - "target": "backend_src_pets_pets_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L161", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_findone", - "target": "backend_src_pets_pets_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L181", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_findone", - "target": "backend_src_pets_pets_controller_ts_apinotfoundresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L192", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_findone", - "target": "backend_src_pets_pets_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L192", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_findone", - "target": "backend_src_pets_pets_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L231", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_remove", - "target": "backend_src_pets_pets_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L232", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_remove", - "target": "backend_src_pets_pets_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L233", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_remove", - "target": "backend_src_pets_pets_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L242", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_remove", - "target": "backend_src_pets_pets_controller_ts_apinotfoundresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L253", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_remove", - "target": "backend_src_pets_pets_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L253", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_remove", - "target": "backend_src_pets_pets_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L267", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_togglereminder", - "target": "backend_src_pets_pets_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L268", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_togglereminder", - "target": "backend_src_pets_pets_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L270", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_togglereminder", - "target": "backend_src_pets_pets_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L272", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_togglereminder", - "target": "backend_src_pets_pets_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L273", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_togglereminder", - "target": "backend_src_pets_pets_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L196", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_update", - "target": "backend_src_pets_pets_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L197", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_update", - "target": "backend_src_pets_pets_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L198", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_update", - "target": "backend_src_pets_pets_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L212", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_update", - "target": "backend_src_pets_pets_controller_ts_apinotfoundresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L224", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_update", - "target": "backend_src_pets_pets_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L225", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_update", - "target": "backend_src_pets_pets_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L226", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_update", - "target": "backend_src_pets_pets_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", - "target": "backend_src_pets_pets_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L59", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", - "target": "backend_src_pets_pets_controller_ts_useinterceptors", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L80", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", - "target": "backend_src_pets_pets_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L81", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", - "target": "backend_src_pets_pets_controller_ts_uploadedfile", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.module.ts", + "source_file": "frontend/application/components/AddressModal.tsx", "source_location": "L5", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_pets_pets_module_petsmodule", - "target": "backend_src_pets_pets_module_ts_module", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_cn", + "target": "frontend_application_components_addressmodal" }, { - "relation": "references", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L22", + "source_file": "frontend/application/components/BackButton.tsx", + "source_location": "L6", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_ts_injectable", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_cn", + "target": "frontend_application_components_backbutton" }, { - "relation": "references", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L25", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L19", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "target": "backend_src_prescriptions_prescriptions_controller_ts_apitags", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_cn", + "target": "frontend_application_components_checkoutpage" }, { - "relation": "references", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L26", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L16", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "target": "backend_src_prescriptions_prescriptions_controller_ts_controller", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_cn", + "target": "frontend_application_components_header" }, { - "relation": "references", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L30", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", - "target": "backend_src_prescriptions_prescriptions_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", - "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L33", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", - "target": "backend_src_prescriptions_prescriptions_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L34", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", - "target": "backend_src_prescriptions_prescriptions_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L47", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", - "target": "backend_src_prescriptions_prescriptions_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L48", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", - "target": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L49", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", - "target": "backend_src_prescriptions_prescriptions_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L50", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", - "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L51", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", - "target": "backend_src_prescriptions_prescriptions_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L57", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", - "target": "backend_src_prescriptions_prescriptions_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", - "target": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L59", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", - "target": "backend_src_prescriptions_prescriptions_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L60", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", - "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L61", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", - "target": "backend_src_prescriptions_prescriptions_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L61", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", - "target": "backend_src_prescriptions_prescriptions_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L67", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "target": "backend_src_prescriptions_prescriptions_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L68", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L69", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "target": "backend_src_prescriptions_prescriptions_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L70", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L72", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "target": "backend_src_prescriptions_prescriptions_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L73", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "target": "backend_src_prescriptions_prescriptions_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.module.ts", - "source_location": "L7", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", - "target": "backend_src_prescriptions_prescriptions_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L10", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "target": "backend_src_prescriptions_prescriptions_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prisma/prisma.module.ts", + "source_file": "frontend/application/components/HeaderButton.tsx", "source_location": "L4", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_prisma_prisma_module_prismamodule", - "target": "backend_src_prisma_prisma_module_ts_global", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_cn", + "target": "frontend_application_components_headerbutton" }, { - "relation": "references", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "backend/src/prisma/prisma.module.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prisma_prisma_module_prismamodule", - "target": "backend_src_prisma_prisma_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L4", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_prisma_prisma_service_prismaservice", - "target": "backend_src_prisma_prisma_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/dto/get-products.dto.ts", - "source_location": "L21", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_dto_get_products_dto_getproductsdto", - "target": "backend_src_products_dto_get_products_dto_ts_isenum", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/dto/get-products.dto.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_dto_get_products_dto_getproductsdto", - "target": "backend_src_products_dto_get_products_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/dto/get-products.dto.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_dto_get_products_dto_getproductsdto", - "target": "backend_src_products_dto_get_products_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/dto/get-products.dto.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_dto_get_products_dto_getproductsdto", - "target": "backend_src_products_dto_get_products_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L20", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L21", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L22", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L29", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_findall", - "target": "backend_src_products_products_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L30", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_findall", - "target": "backend_src_products_products_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_findall", - "target": "backend_src_products_products_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L70", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_findone", - "target": "backend_src_products_products_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L71", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_findone", - "target": "backend_src_products_products_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L72", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_findone", - "target": "backend_src_products_products_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", + "source_file": "frontend/application/components/PetProfile.tsx", "source_location": "L35", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_getactivefilters", - "target": "backend_src_products_products_controller_ts_get", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_cn", + "target": "frontend_application_components_petprofile" }, { - "relation": "references", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L36", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_getactivefilters", - "target": "backend_src_products_products_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L51", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_getdosageconfig", - "target": "backend_src_products_products_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L52", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_getdosageconfig", - "target": "backend_src_products_products_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L53", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_getdosageconfig", - "target": "backend_src_products_products_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L43", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_getnavigationfilters", - "target": "backend_src_products_products_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L44", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_getnavigationfilters", - "target": "backend_src_products_products_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L57", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "target": "backend_src_products_products_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L59", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "target": "backend_src_products_products_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L60", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "target": "backend_src_products_products_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L64", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "target": "backend_src_products_products_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L65", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "target": "backend_src_products_products_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.module.ts", + "source_file": "frontend/application/components/SafeImage.tsx", "source_location": "L5", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_products_products_module_productsmodule", - "target": "backend_src_products_products_module_ts_module", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_cn", + "target": "frontend_application_components_safeimage" }, { - "relation": "references", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L7", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/redis/redis.module.ts", + "source_file": "frontend/application/components/SearchableSelect.tsx", "source_location": "L4", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_redis_redis_module_redismodule", - "target": "backend_src_redis_redis_module_ts_global", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_cn", + "target": "frontend_application_components_searchableselect" }, { - "relation": "references", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "backend/src/redis/redis.module.ts", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_cn", + "target": "frontend_application_components_smartadvisor" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TopUpModal.tsx", "source_location": "L5", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_redis_redis_module_redismodule", - "target": "backend_src_redis_redis_module_ts_module", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_cn", + "target": "frontend_application_components_topupmodal" }, { - "relation": "references", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L4", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L9", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_redis_redis_service_redisservice", - "target": "backend_src_redis_redis_service_ts_injectable", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_cn", + "target": "frontend_application_components_userdashboard" }, { - "relation": "references", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/dto/create-review.dto.ts", - "source_location": "L13", + "source_file": "frontend/application/lib/utils.ts", + "source_location": "L11", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "target": "backend_src_reviews_dto_create_review_dto_ts_isint", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_cn", + "target": "frontend_application_lib_utils" }, { - "relation": "references", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/dto/create-review.dto.ts", - "source_location": "L14", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "target": "backend_src_reviews_dto_create_review_dto_ts_min", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/dto/create-review.dto.ts", - "source_location": "L15", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "target": "max", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/dto/create-review.dto.ts", + "source_file": "frontend/application/components/AuthModal.tsx", "source_location": "L23", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "target": "backend_src_reviews_dto_create_review_dto_ts_isnotempty", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_toenglishdigits", + "target": "frontend_application_components_authmodal" }, { - "relation": "references", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/dto/create-review.dto.ts", - "source_location": "L35", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L9", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "target": "backend_src_reviews_dto_create_review_dto_ts_apiproperty", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_toenglishdigits", + "target": "frontend_application_components_userdashboard" }, { - "relation": "references", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/dto/create-review.dto.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "target": "backend_src_reviews_dto_create_review_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/dto/create-review.dto.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "target": "backend_src_reviews_dto_create_review_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/dto/update-review.dto.ts", - "source_location": "L11", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "target": "backend_src_reviews_dto_update_review_dto_ts_isin", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/dto/update-review.dto.ts", - "source_location": "L15", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "target": "backend_src_reviews_dto_update_review_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/dto/update-review.dto.ts", - "source_location": "L16", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "target": "backend_src_reviews_dto_update_review_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/dto/update-review.dto.ts", - "source_location": "L17", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "target": "backend_src_reviews_dto_update_review_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L21", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L22", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L29", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_reviews_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L30", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_reviews_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L32", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_reviews_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L33", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_reviews_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L34", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_reviews_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L100", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "target": "backend_src_reviews_reviews_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L101", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L102", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "target": "backend_src_reviews_reviews_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L103", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "target": "backend_src_reviews_reviews_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L104", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "target": "backend_src_reviews_reviews_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L99", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "target": "backend_src_reviews_reviews_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L60", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "target": "backend_src_reviews_reviews_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L61", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "target": "backend_src_reviews_reviews_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L62", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L63", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "target": "backend_src_reviews_reviews_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L64", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "target": "backend_src_reviews_reviews_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L70", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "target": "backend_src_reviews_reviews_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L43", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", - "target": "backend_src_reviews_reviews_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L44", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", - "target": "backend_src_reviews_reviews_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L46", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", - "target": "backend_src_reviews_reviews_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L48", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", - "target": "backend_src_reviews_reviews_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L84", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_reviews_reviews_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L85", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_reviews_reviews_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L86", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L87", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_reviews_reviews_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L88", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_reviews_reviews_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L90", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_reviews_reviews_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L91", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_reviews_reviews_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.module.ts", + "source_file": "frontend/application/lib/utils.ts", "source_location": "L6", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_reviews_reviews_module_reviewsmodule", - "target": "backend_src_reviews_reviews_module_ts_module", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_toenglishdigits", + "target": "frontend_application_lib_utils" }, { - "relation": "references", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L12", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_seo_seo_controller_seocontroller", - "target": "backend_src_seo_seo_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_seo_seo_controller_seocontroller", - "target": "backend_src_seo_seo_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L16", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_seo_seo_controller_seocontroller_getproductschema", - "target": "backend_src_seo_seo_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L17", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_seo_seo_controller_seocontroller_getproductschema", - "target": "backend_src_seo_seo_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L20", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_seo_seo_controller_seocontroller_getproductschema", - "target": "backend_src_seo_seo_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L10", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_seo_seo_controller_seocontroller_getsitemap", - "target": "backend_src_seo_seo_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L11", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_seo_seo_controller_seocontroller_getsitemap", - "target": "backend_src_seo_seo_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.module.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_seo_seo_module_seomodule", - "target": "backend_src_seo_seo_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L4", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_seo_seo_service_seoservice", - "target": "backend_src_seo_seo_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", - "source_location": "L14", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "target": "backend_src_settings_dto_sms_log_query_dto_ts_type", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", - "source_location": "L15", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "target": "backend_src_settings_dto_sms_log_query_dto_ts_isnumber", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "target": "backend_src_settings_dto_sms_log_query_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", - "source_location": "L44", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "target": "backend_src_settings_dto_sms_log_query_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", - "source_location": "L49", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "target": "backend_src_settings_dto_sms_log_query_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", - "source_location": "L50", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "target": "backend_src_settings_dto_sms_log_query_dto_ts_isin", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L26", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L27", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L233", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L234", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L235", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L236", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "target": "backend_src_settings_settings_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L237", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L241", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "target": "backend_src_settings_settings_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L278", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L279", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L280", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L281", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "target": "backend_src_settings_settings_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L282", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L118", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L119", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L120", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L121", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "target": "backend_src_settings_settings_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L122", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L123", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "target": "backend_src_settings_settings_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L269", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L270", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L271", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L272", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "target": "backend_src_settings_settings_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L273", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L274", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "target": "backend_src_settings_settings_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L246", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L247", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L248", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L249", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_settings_settings_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L250", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L253", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_settings_settings_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L253", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_settings_settings_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L84", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getfinancial", - "target": "backend_src_settings_settings_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L85", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getfinancial", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L144", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L145", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L146", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", + "confidence_score": 1.0, + "source_file": "frontend/application/app/HomeClient.tsx", "source_location": "L147", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "target": "backend_src_settings_settings_controller_ts_get", - "confidence_score": 1.0 + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_app_homeclient_homeclient" }, { - "relation": "references", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L148", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L222", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L223", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L224", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L225", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", - "target": "backend_src_settings_settings_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L226", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L100", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", - "target": "backend_src_settings_settings_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L101", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L128", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getseosettings", - "target": "backend_src_settings_settings_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L129", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getseosettings", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L191", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L192", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L193", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L194", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", - "target": "backend_src_settings_settings_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L195", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L258", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L259", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L260", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L261", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_settings_settings_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L262", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L265", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_settings_settings_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L182", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L183", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L184", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L185", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "target": "backend_src_settings_settings_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L186", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L163", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L164", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L165", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L166", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "target": "backend_src_settings_settings_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L167", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getuitexts", - "target": "backend_src_settings_settings_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L32", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getuitexts", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L33", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getuitexts", - "target": "backend_src_settings_settings_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L59", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L60", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L61", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "target": "backend_src_settings_settings_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L62", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L65", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "target": "backend_src_settings_settings_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L65", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "target": "backend_src_settings_settings_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L75", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L76", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L77", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L78", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "target": "backend_src_settings_settings_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L79", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L80", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "target": "backend_src_settings_settings_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L42", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L43", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L44", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "target": "backend_src_settings_settings_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L45", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L48", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "target": "backend_src_settings_settings_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L48", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "target": "backend_src_settings_settings_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L209", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_testsms", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L210", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_testsms", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L211", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_testsms", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L212", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_testsms", - "target": "backend_src_settings_settings_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L213", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_testsms", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L217", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_testsms", - "target": "backend_src_settings_settings_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L90", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L91", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L92", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L93", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", - "target": "backend_src_settings_settings_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L94", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", - "target": "backend_src_settings_settings_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L95", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L96", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", - "target": "backend_src_settings_settings_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L153", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L154", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L155", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L156", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "target": "backend_src_settings_settings_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L157", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L158", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "target": "backend_src_settings_settings_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L134", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L135", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L136", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L137", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "target": "backend_src_settings_settings_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L138", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L139", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "target": "backend_src_settings_settings_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L200", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L201", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L202", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L203", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "target": "backend_src_settings_settings_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L204", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L205", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "target": "backend_src_settings_settings_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L172", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L173", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L174", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L175", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "target": "backend_src_settings_settings_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L176", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L177", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "target": "backend_src_settings_settings_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L106", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_settings_settings_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L107", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L108", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_settings_settings_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L109", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_settings_settings_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L110", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_settings_settings_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L112", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_settings_settings_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L113", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_settings_settings_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.module.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_module_settingsmodule", - "target": "backend_src_settings_settings_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L144", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L18", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L19", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L29", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L30", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L32", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L33", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L34", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L23", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L24", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L50", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L51", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L52", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L53", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L54", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L55", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L38", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L42", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L44", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L45", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "target": "backend_src_smart_advisor_smart_advisor_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", - "target": "backend_src_smart_advisor_smart_advisor_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "target": "backend_src_smart_advisor_smart_advisor_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L18", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L19", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L35", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "target": "backend_src_testimonials_testimonials_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L36", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L37", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "target": "backend_src_testimonials_testimonials_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L38", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "target": "backend_src_testimonials_testimonials_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "target": "backend_src_testimonials_testimonials_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "target": "backend_src_testimonials_testimonials_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L23", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", - "target": "backend_src_testimonials_testimonials_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L24", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", - "target": "backend_src_testimonials_testimonials_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L29", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findhomepage", - "target": "backend_src_testimonials_testimonials_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L30", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findhomepage", - "target": "backend_src_testimonials_testimonials_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L53", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "target": "backend_src_testimonials_testimonials_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L54", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L55", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "target": "backend_src_testimonials_testimonials_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L56", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "target": "backend_src_testimonials_testimonials_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L57", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "target": "backend_src_testimonials_testimonials_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "target": "backend_src_testimonials_testimonials_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L44", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "target": "backend_src_testimonials_testimonials_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L45", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L46", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "target": "backend_src_testimonials_testimonials_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L47", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "target": "backend_src_testimonials_testimonials_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L48", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "target": "backend_src_testimonials_testimonials_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L49", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "target": "backend_src_testimonials_testimonials_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L49", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "target": "backend_src_testimonials_testimonials_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.module.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_module_testimonialsmodule", - "target": "backend_src_testimonials_testimonials_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_service_testimonialsservice", - "target": "backend_src_testimonials_testimonials_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L91", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L95", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L96", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L19", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L24", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L53", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L54", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L55", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L60", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L65", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L73", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L77", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L78", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "target": "backend_src_tickets_dto_create_ticket_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", - "source_location": "L14", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "target": "backend_src_tickets_dto_ticket_query_dto_ts_type", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", - "source_location": "L15", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "target": "backend_src_tickets_dto_ticket_query_dto_ts_isnumber", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", - "source_location": "L34", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "target": "backend_src_tickets_dto_ticket_query_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", - "source_location": "L37", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "target": "backend_src_tickets_dto_ticket_query_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", - "source_location": "L38", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "target": "backend_src_tickets_dto_ticket_query_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L29", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L32", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L36", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "target": "backend_src_tickets_tickets_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L37", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L38", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "target": "backend_src_tickets_tickets_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "target": "backend_src_tickets_tickets_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L43", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "target": "backend_src_tickets_tickets_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L44", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "target": "backend_src_tickets_tickets_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L84", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_tickets_tickets_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L85", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L86", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L87", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_tickets_tickets_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L88", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_tickets_tickets_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L89", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_tickets_tickets_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L49", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", - "target": "backend_src_tickets_tickets_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L50", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", - "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L51", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", - "target": "backend_src_tickets_tickets_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L52", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", - "target": "backend_src_tickets_tickets_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L53", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", - "target": "backend_src_tickets_tickets_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L57", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "target": "backend_src_tickets_tickets_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L59", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "target": "backend_src_tickets_tickets_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L60", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "target": "backend_src_tickets_tickets_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L62", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "target": "backend_src_tickets_tickets_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L63", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "target": "backend_src_tickets_tickets_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L69", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_tickets_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L70", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L71", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_tickets_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L72", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_tickets_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L74", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_tickets_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L75", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_tickets_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L76", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_tickets_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L100", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_tickets_tickets_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L93", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_tickets_tickets_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L94", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L95", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_tickets_tickets_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L96", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_tickets_tickets_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L97", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_tickets_tickets_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L99", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_tickets_tickets_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.module.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_module_ticketsmodule", - "target": "backend_src_tickets_tickets_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L17", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/dto/address.dto.ts", - "source_location": "L35", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_dto_address_dto_addressdto", - "target": "backend_src_users_dto_address_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/dto/address.dto.ts", - "source_location": "L36", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_dto_address_dto_addressdto", - "target": "backend_src_users_dto_address_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/dto/address.dto.ts", - "source_location": "L37", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_dto_address_dto_addressdto", - "target": "backend_src_users_dto_address_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/dto/address.dto.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_dto_address_dto_addressdto", - "target": "backend_src_users_dto_address_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/dto/address.dto.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_dto_address_dto_addressdto", - "target": "backend_src_users_dto_address_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/dto/address.dto.ts", - "source_location": "L42", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_dto_address_dto_addressdto", - "target": "backend_src_users_dto_address_dto_ts_isboolean", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/dto/update-profile.dto.ts", - "source_location": "L17", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "target": "backend_src_users_dto_update_profile_dto_ts_isemail", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/dto/update-profile.dto.ts", - "source_location": "L28", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "target": "backend_src_users_dto_update_profile_dto_ts_minlength", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/dto/update-profile.dto.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "target": "backend_src_users_dto_update_profile_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/dto/update-profile.dto.ts", - "source_location": "L32", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "target": "backend_src_users_dto_update_profile_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/dto/update-profile.dto.ts", - "source_location": "L33", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "target": "backend_src_users_dto_update_profile_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L28", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L29", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L30", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L110", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_addaddress", - "target": "backend_src_users_users_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L111", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_addaddress", - "target": "backend_src_users_users_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L112", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_addaddress", - "target": "backend_src_users_users_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L113", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_addaddress", - "target": "backend_src_users_users_controller_ts_apicreatedresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L132", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_addaddress", - "target": "backend_src_users_users_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L133", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_addaddress", - "target": "backend_src_users_users_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L167", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_deleteaddress", - "target": "backend_src_users_users_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L168", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_deleteaddress", - "target": "backend_src_users_users_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L169", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_deleteaddress", - "target": "backend_src_users_users_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L170", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_deleteaddress", - "target": "backend_src_users_users_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L180", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_deleteaddress", - "target": "backend_src_users_users_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L181", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_deleteaddress", - "target": "backend_src_users_users_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L46", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_getprofile", - "target": "backend_src_users_users_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L47", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_getprofile", - "target": "backend_src_users_users_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L48", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_getprofile", - "target": "backend_src_users_users_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L49", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_getprofile", - "target": "backend_src_users_users_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L68", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_getprofile", - "target": "backend_src_users_users_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L186", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "target": "backend_src_users_users_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L187", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "target": "backend_src_users_users_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L188", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "target": "backend_src_users_users_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", + "source_file": "frontend/application/app/payment/verify/page.tsx", "source_location": "L189", "weight": 1.0, - "context": "decorator", "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "target": "backend_src_users_users_controller_ts_apiokresponse", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_app_payment_verify_page_verifycontent" }, { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L199", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "target": "backend_src_users_users_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L200", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "target": "backend_src_users_users_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L205", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_topupwallet", - "target": "backend_src_users_users_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L206", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_topupwallet", - "target": "backend_src_users_users_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L207", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_topupwallet", - "target": "backend_src_users_users_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L208", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_topupwallet", - "target": "backend_src_users_users_controller_ts_apicreatedresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L222", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_topupwallet", - "target": "backend_src_users_users_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L224", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_topupwallet", - "target": "backend_src_users_users_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L225", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_topupwallet", - "target": "backend_src_users_users_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L138", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_users_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L139", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_users_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L140", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_users_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L141", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_users_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L160", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_users_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L161", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_users_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L162", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_users_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L104", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_users_controller_ts_req", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L105", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_users_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L72", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_users_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L73", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_users_controller_ts_patch", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L74", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_users_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L75", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_users_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L90", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_users_controller_ts_apibadrequestresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.module.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_module_usersmodule", - "target": "backend_src_users_users_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L23", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/dto/create-video.dto.ts", - "source_location": "L41", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_dto_create_video_dto_createvideodto", - "target": "backend_src_videos_dto_create_video_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/dto/create-video.dto.ts", - "source_location": "L46", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_dto_create_video_dto_createvideodto", - "target": "backend_src_videos_dto_create_video_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/dto/create-video.dto.ts", - "source_location": "L50", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_dto_create_video_dto_createvideodto", - "target": "backend_src_videos_dto_create_video_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/dto/create-video.dto.ts", - "source_location": "L54", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_dto_create_video_dto_createvideodto", - "target": "backend_src_videos_dto_create_video_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/dto/create-video.dto.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_dto_create_video_dto_createvideodto", - "target": "backend_src_videos_dto_create_video_dto_ts_isboolean", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/dto/create-video.dto.ts", - "source_location": "L59", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_dto_create_video_dto_createvideodto", - "target": "backend_src_videos_dto_create_video_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", - "source_location": "L10", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "target": "backend_src_videos_dto_get_videos_query_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", - "source_location": "L11", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "target": "backend_src_videos_dto_get_videos_query_dto_ts_transform", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", - "source_location": "L16", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "target": "backend_src_videos_dto_get_videos_query_dto_ts_isboolean", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", - "source_location": "L7", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "target": "backend_src_videos_dto_get_videos_query_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L23", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller", - "target": "backend_src_videos_videos_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L24", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller", - "target": "backend_src_videos_videos_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L44", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_create", - "target": "backend_src_videos_videos_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L45", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_create", - "target": "backend_src_videos_videos_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L46", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_create", - "target": "backend_src_videos_videos_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L47", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_create", - "target": "backend_src_videos_videos_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L48", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_create", - "target": "backend_src_videos_videos_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L28", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_findall", - "target": "backend_src_videos_videos_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L29", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_findall", - "target": "backend_src_videos_videos_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L33", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_findall", - "target": "backend_src_videos_videos_controller_ts_apiquery", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L34", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_findall", - "target": "backend_src_videos_videos_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L38", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_findone", - "target": "backend_src_videos_videos_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_findone", - "target": "backend_src_videos_videos_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_findone", - "target": "backend_src_videos_videos_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L63", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_remove", - "target": "backend_src_videos_videos_controller_ts_delete", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L64", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_remove", - "target": "backend_src_videos_videos_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L65", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_remove", - "target": "backend_src_videos_videos_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L66", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_remove", - "target": "backend_src_videos_videos_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L67", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_remove", - "target": "backend_src_videos_videos_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L52", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_update", - "target": "backend_src_videos_videos_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L53", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_update", - "target": "backend_src_videos_videos_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L54", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_update", - "target": "backend_src_videos_videos_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L55", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_update", - "target": "backend_src_videos_videos_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L57", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_update", - "target": "backend_src_videos_videos_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_update", - "target": "backend_src_videos_videos_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.module.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_module_videosmodule", - "target": "backend_src_videos_videos_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L13", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_videos_videos_service_videosservice", - "target": "backend_src_videos_videos_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", - "source_location": "L10", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apiproperty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", - "source_location": "L12", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isnotempty", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", - "source_location": "L20", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_apipropertyoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", - "source_location": "L21", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isoptional", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", - "source_location": "L22", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_ts_isstring", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L18", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "target": "backend_src_wholesale_wholesale_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L19", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "target": "backend_src_wholesale_wholesale_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L23", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "target": "backend_src_wholesale_wholesale_controller_ts_post", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L24", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "target": "backend_src_wholesale_wholesale_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L25", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L26", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "target": "backend_src_wholesale_wholesale_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L30", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "target": "backend_src_wholesale_wholesale_controller_ts_request", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "target": "backend_src_wholesale_wholesale_controller_ts_body", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L47", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L48", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L49", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L50", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L51", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L54", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L36", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", - "target": "backend_src_wholesale_wholesale_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L37", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", - "target": "backend_src_wholesale_wholesale_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L38", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L39", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", - "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L40", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", - "target": "backend_src_wholesale_wholesale_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L58", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_put", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L59", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_useguards", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L60", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L61", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L62", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L63", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "target": "backend_src_wholesale_wholesale_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.module.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_module_wholesalemodule", - "target": "backend_src_wholesale_wholesale_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L7", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_service_wholesaleservice", - "target": "backend_src_wholesale_wholesale_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L12", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller_wikicontroller", - "target": "backend_src_wiki_wiki_controller_ts_apitags", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L13", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller_wikicontroller", - "target": "backend_src_wiki_wiki_controller_ts_controller", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L14", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller_wikicontroller", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L21", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller_wikicontroller_findall", - "target": "backend_src_wiki_wiki_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L22", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller_wikicontroller_findall", - "target": "backend_src_wiki_wiki_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L23", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller_wikicontroller_findall", - "target": "backend_src_wiki_wiki_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L24", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller_wikicontroller_findall", - "target": "backend_src_wiki_wiki_controller_ts_query", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L28", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller_wikicontroller_findone", - "target": "backend_src_wiki_wiki_controller_ts_get", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L29", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller_wikicontroller_findone", - "target": "backend_src_wiki_wiki_controller_ts_apioperation", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L30", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller_wikicontroller_findone", - "target": "backend_src_wiki_wiki_controller_ts_apiokresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L31", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller_wikicontroller_findone", - "target": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L32", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller_wikicontroller_findone", - "target": "backend_src_wiki_wiki_controller_ts_param", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.module.ts", - "source_location": "L5", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wiki_wiki_module_wikimodule", - "target": "backend_src_wiki_wiki_module_ts_module", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L6", - "weight": 1.0, - "context": "decorator", - "_origin": "ast", - "source": "backend_src_wiki_wiki_service_wikiservice", - "target": "backend_src_wiki_wiki_service_ts_injectable", - "confidence_score": 1.0 - }, - { - "relation": "re_exports", - "context": "export", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/roles.decorator.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_roles_decorator", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "re_exports", - "context": "export", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/roles.guard.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_roles_guard", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "re_exports", - "context": "export", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_service", - "target": "backend_src_doctors_dto_doctor_query_dto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "field", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users_userrecord", - "target": "frontend_admin_panel_src_types_admin_useraddress", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "field", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users_userrecord", - "target": "frontend_admin_panel_src_types_admin_petsummary", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "field", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient_homeclientprops", - "target": "frontend_application_lib_types_homeapiresponse", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "field", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_addressmodal_addressmodalprops", - "target": "frontend_application_lib_store_userstore_address", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "field", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BannerPlacement.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_bannerplacement_bannerplacementprops", - "target": "frontend_application_lib_types_banner", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "field", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "field", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "field", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "field", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_cartstore_cartitem", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "field", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_cartstore_cartstore", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L101", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L73", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice_updateherobanner", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L71", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice_updatevettestimonial", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L304", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_checkhealth", - "target": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L56", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_update", - "target": "backend_src_videos_dto_create_video_dto_createvideodto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L93", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_service_videosservice_update", - "target": "backend_src_videos_dto_create_video_dto_createvideodto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L372", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice_getbanners", - "target": "frontend_application_lib_types_banner", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L313", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L285", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice_getproductbyid", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L299", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice_getproductbyslug", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L246", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice_getproducts", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_b2bmanager", - "target": "frontend_admin_panel_src_pages_b2bmanager", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_bannersmanager", - "target": "frontend_admin_panel_src_pages_bannersmanager", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_blogs", - "target": "frontend_admin_panel_src_pages_blogs", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_categories", - "target": "frontend_admin_panel_src_pages_categories", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_cms", - "target": "frontend_admin_panel_src_pages_cms", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions", - "target": "frontend_admin_panel_src_pages_contactsubmissions", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_coupons", - "target": "frontend_admin_panel_src_pages_coupons", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_dashboard", - "target": "frontend_admin_panel_src_pages_dashboard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_doctorsmanager", - "target": "frontend_admin_panel_src_pages_doctorsmanager", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_faqmanager", - "target": "frontend_admin_panel_src_pages_faqmanager", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", - "target": "frontend_admin_panel_src_pages_financialsettingspage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager", - "target": "frontend_admin_panel_src_pages_ingredientsmanager", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_media", - "target": "frontend_admin_panel_src_pages_media", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_menumanager", - "target": "frontend_admin_panel_src_pages_menumanager", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_monitoringpage", - "target": "frontend_admin_panel_src_pages_monitoringpage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_orders", - "target": "frontend_admin_panel_src_pages_orders", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_paymentgatewayspage", - "target": "frontend_admin_panel_src_pages_paymentgatewayspage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_pets", - "target": "frontend_admin_panel_src_pages_pets", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", - "target": "frontend_admin_panel_src_pages_prescriptionsmanager", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_products", - "target": "frontend_admin_panel_src_pages_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_reports", - "target": "frontend_admin_panel_src_pages_reports", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_reviews", - "target": "frontend_admin_panel_src_pages_reviews", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_seosettingspage", - "target": "frontend_admin_panel_src_pages_seosettingspage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_settings", - "target": "frontend_admin_panel_src_pages_settings", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_shippingsettingspage", - "target": "frontend_admin_panel_src_pages_shippingsettingspage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager", - "target": "frontend_admin_panel_src_pages_smartadvisormanager", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", - "target": "frontend_admin_panel_src_pages_sslsettingspage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", - "target": "frontend_admin_panel_src_pages_systemsettingspage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager", - "target": "frontend_admin_panel_src_pages_testimonialsmanager", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_tickets", - "target": "frontend_admin_panel_src_pages_tickets", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_transactions", - "target": "frontend_admin_panel_src_pages_transactions", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_users", - "target": "frontend_admin_panel_src_pages_users", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_videos", - "target": "frontend_admin_panel_src_pages_videos", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications", - "target": "frontend_admin_panel_src_pages_wholesaleapplications", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_wiki", - "target": "frontend_admin_panel_src_pages_wiki", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes_zibalportalpage", - "target": "frontend_admin_panel_src_pages_zibalportalpage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout_authmodal", - "target": "frontend_application_components_authmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout_b2bportal", - "target": "frontend_application_components_b2bportal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout_cartdrawer", - "target": "frontend_application_components_cartdrawer", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L130", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout_clientlayout", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout_loginmodal", - "target": "frontend_application_components_loginmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L125", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal_b2bportal", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L98", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L74", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage_productreviews", - "target": "frontend_application_components_productreviews", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "deferred": true, - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L73", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage_videomodalplayer", - "target": "frontend_application_components_videomodalplayer", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L90", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_jest_collectcoveragefrom", - "target": "ref_t_j_s", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L80", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_jest_modulefileextensions", - "target": "backend_package_json_ref_ts", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L80", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_jest_modulefileextensions", - "target": "ref_js", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L80", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_jest_modulefileextensions", - "target": "ref_json", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L7", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_prisma_tsconfig_compileroptions_types", - "target": "backend_prisma_tsconfig_json_ref_node", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L9", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_prisma_tsconfig_include", - "target": "backend_prisma_tsconfig_json_ref_ts", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L7", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_prisma_tsconfig_seed_compileroptions_types", - "target": "backend_prisma_tsconfig_seed_json_ref_node", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L9", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_prisma_tsconfig_seed_include", - "target": "backend_prisma_tsconfig_seed_json_ref_ts", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.build.json", - "source_location": "L2", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_tsconfig_build", - "target": "ref_tsconfig_json", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.build.json", - "source_location": "L3", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_tsconfig_build_exclude", - "target": "backend_tsconfig_build_json_ref_dist", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.build.json", - "source_location": "L3", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_tsconfig_build_exclude", - "target": "backend_tsconfig_build_json_ref_node_modules", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.build.json", - "source_location": "L3", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_tsconfig_build_exclude", - "target": "backend_tsconfig_build_json_ref_prisma", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.build.json", - "source_location": "L3", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_tsconfig_build_exclude", - "target": "ref_spec_ts", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.build.json", - "source_location": "L3", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_tsconfig_build_exclude", - "target": "ref_test", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_tsconfig_exclude", - "target": "backend_tsconfig_json_ref_dist", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_tsconfig_exclude", - "target": "backend_tsconfig_json_ref_node_modules", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_tsconfig_exclude", - "target": "backend_tsconfig_json_ref_prisma", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_tsconfig_exclude", - "target": "ref_scripts", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L26", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_tsconfig_include", - "target": "backend_tsconfig_json_ref_src", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L5", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions_lib", - "target": "frontend_admin_panel_tsconfig_app_json_ref_dom", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L5", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions_lib", - "target": "frontend_admin_panel_tsconfig_app_json_ref_dom_iterable", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L5", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions_lib", - "target": "frontend_admin_panel_tsconfig_app_json_ref_es2023", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L7", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions_types", - "target": "ref_vite_client", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L24", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_include", - "target": "frontend_admin_panel_tsconfig_app_json_ref_src", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L5", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_compileroptions_lib", - "target": "frontend_admin_panel_tsconfig_node_json_ref_es2023", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L7", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_compileroptions_types", - "target": "frontend_admin_panel_tsconfig_node_json_ref_node", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L23", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_include", - "target": "ref_vite_config_ts", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L4", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions_lib", - "target": "frontend_application_tsconfig_json_ref_dom", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L4", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions_lib", - "target": "frontend_application_tsconfig_json_ref_dom_iterable", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L4", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions_lib", - "target": "ref_esnext", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_tsconfig_exclude", - "target": "frontend_application_tsconfig_json_ref_node_modules", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_tsconfig_exclude", - "target": "frontend_application_tsconfig_json_ref_prisma", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_tsconfig_exclude", - "target": "ref_tests", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_tsconfig_exclude", - "target": "ref_vitest_config_ts", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_tsconfig_exclude", - "target": "ref_vitest_setup_ts", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_tsconfig_include", - "target": "frontend_application_tsconfig_json_ref_ts", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_tsconfig_include", - "target": "ref_mts", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_tsconfig_include", - "target": "ref_next_dev_types_ts", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_tsconfig_include", - "target": "ref_next_env_d_ts", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_tsconfig_include", - "target": "ref_next_types_ts", - "confidence_score": 1.0 - }, - { - "relation": "extends", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_tsconfig_include", - "target": "ref_tsx", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L33", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_bcrypt", - "target": "bcrypt", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L34", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_bcryptjs", - "target": "bcryptjs", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L35", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_class_transformer", - "target": "class_transformer", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L36", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_class_validator", - "target": "class_validator", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L37", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_compression", - "target": "compression", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L38", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_helmet", - "target": "helmet", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L39", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_ioredis", - "target": "ioredis", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L40", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_js_yaml", - "target": "js_yaml", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L25", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_nestjs_common", - "target": "nestjs_common", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L26", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_nestjs_core", - "target": "nestjs_core", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L27", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_nestjs_jwt", - "target": "nestjs_jwt", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L28", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_nestjs_passport", - "target": "nestjs_passport", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L29", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_nestjs_platform_express", - "target": "nestjs_platform_express", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L30", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_nestjs_swagger", - "target": "nestjs_swagger", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L31", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_nestjs_throttler", - "target": "nestjs_throttler", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L41", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_passport", - "target": "passport", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L42", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_passport_jwt", - "target": "passport_jwt", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L32", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_prisma_client", - "target": "prisma_client", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L43", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_reflect_metadata", - "target": "reflect_metadata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L44", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_rxjs", - "target": "rxjs", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L45", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_dependencies_swagger_ui_express", - "target": "swagger_ui_express", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L63", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_eslint", - "target": "backend_package_json_eslint", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L64", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_eslint_config_prettier", - "target": "eslint_config_prettier", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L48", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_eslint_eslintrc", - "target": "eslint_eslintrc", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L49", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_eslint_js", - "target": "backend_package_json_eslint_js", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L65", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_eslint_plugin_prettier", - "target": "eslint_plugin_prettier", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L66", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_globals", - "target": "backend_package_json_globals", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L67", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_jest", - "target": "jest", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L50", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_nestjs_cli", - "target": "nestjs_cli", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L51", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_nestjs_schematics", - "target": "nestjs_schematics", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L52", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_nestjs_testing", - "target": "nestjs_testing", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L68", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_prettier", - "target": "prettier", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L69", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_prisma", - "target": "prisma", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L70", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_source_map_support", - "target": "source_map_support", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L71", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_supertest", - "target": "supertest", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L72", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_ts_jest", - "target": "ts_jest", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L73", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_ts_loader", - "target": "ts_loader", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L74", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_ts_node", - "target": "ts_node", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L75", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_tsconfig_paths", - "target": "tsconfig_paths", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L53", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_types_bcrypt", - "target": "types_bcrypt", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L54", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_types_bcryptjs", - "target": "types_bcryptjs", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L55", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_types_compression", - "target": "types_compression", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L56", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_types_express", - "target": "types_express", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L57", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_types_jest", - "target": "types_jest", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L58", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_types_js_yaml", - "target": "types_js_yaml", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L59", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_types_multer", - "target": "types_multer", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L60", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_types_node", - "target": "backend_package_json_types_node", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L61", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_types_passport_jwt", - "target": "types_passport_jwt", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L62", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_types_supertest", - "target": "types_supertest", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L76", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_typescript", - "target": "backend_package_json_typescript", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L77", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "backend_package_devdependencies_typescript_eslint", - "target": "backend_package_json_typescript_eslint", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-openapi.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", - "target": "backend_src_app_module_appmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_admin_service_adminservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_admin_service_couponinput", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_dto_product_dto_productdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_dto_user_dto_createuserdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_dto_user_dto_updateuserdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_spec", - "target": "backend_src_admin_admin_controller_admincontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_spec", - "target": "backend_src_admin_admin_service_adminservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_blogs_controller_blogscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_blogs_service_blogsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_wiki_controller_wikicontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_wiki_service_wikiservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_pets_controller_petscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_pets_service_petsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_ssl_controller_sslcontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_ssl_service_sslservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_redis_redis_module_redismodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_admin_controller_admincontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_admin_service_adminservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_reports_controller_reportscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_reports_service_reportsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_media_controller_mediacontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_media_service_mediaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_categories_controller_categoriescontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_categories_service_categoriesservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_dto_user_dto_createuserdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_dto_user_dto_updateuserdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_dto_product_dto_productdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_common_utils_phone_utils_normalizemobile", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_settings_settings_service_canonical_aliases", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_spec", - "target": "backend_src_admin_admin_service_adminservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.spec.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_spec", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller", - "target": "backend_src_admin_blogs_service_blogsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller", - "target": "backend_src_admin_categories_service_categoriesservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/admin-query.dto.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_dto_admin_query_dto", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_controller", - "target": "backend_src_admin_media_service_mediaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_controller", - "target": "backend_src_admin_pets_service_petsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_reports_controller", - "target": "backend_src_admin_reports_service_reportsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_reports_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_reports_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller", - "target": "backend_src_admin_ssl_service_sslservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_controller", - "target": "backend_src_admin_wiki_service_wikiservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.controller.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_controller", - "target": "backend_src_app_service_appservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.controller.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_controller_spec", - "target": "backend_src_app_controller_appcontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.controller.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_controller_spec", - "target": "backend_src_app_service_appservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_settings_settings_module_settingsmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_common_metrics_controller_metricscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_admin_admin_module_adminmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_home_home_module_homemodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_blogs_blogs_module_blogsmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_wiki_wiki_module_wikimodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_seo_seo_module_seomodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_cms_cms_module_cmsmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_wholesale_wholesale_module_wholesalemodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_videos_videos_module_videosmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_common_sms_module_smsmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_contact_contact_module_contactmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_banners_banners_module_bannersmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_testimonials_testimonials_module_testimonialsmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_ingredients_ingredients_module_ingredientsmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_b2b_b2b_module_b2bmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_products_products_module_productsmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_payment_payment_module_paymentmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_tickets_tickets_module_ticketsmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_reviews_reviews_module_reviewsmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_doctors_doctors_module_doctorsmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_faq_faq_module_faqmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_menu_menu_module_menumodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_common_revalidation_revalidation_module_revalidationmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_users_users_module_usersmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_redis_redis_module_redismodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_auth_auth_module_authmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_pets_pets_module_petsmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_orders_orders_module_ordersmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_auth_service_authservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_register_dto_registerdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_login_dto_logindto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_spec", - "target": "backend_src_auth_auth_controller_authcontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_spec", - "target": "backend_src_auth_auth_service_authservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_service_authservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.module.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_controller_authcontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.module.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_jwt_strategy_jwtstrategy", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.module.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_module", - "target": "backend_src_users_users_module_usersmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.module.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_constants_getjwtsecret", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service", - "target": "backend_src_common_utils_phone_utils_normalizemobile", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_spec", - "target": "backend_src_auth_auth_service_authservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.spec.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_spec", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.spec.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_spec", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_users_users_service_usersservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_auth_auth_constants_getjwtsecret", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_b2b_b2b_service_b2bservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_module", - "target": "backend_src_b2b_b2b_controller_b2bcontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_module", - "target": "backend_src_b2b_b2b_service_b2bservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller", - "target": "backend_src_banners_banners_service_bannersservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_module", - "target": "backend_src_banners_banners_controller_bannerscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_module", - "target": "backend_src_banners_banners_service_bannersservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller", - "target": "backend_src_blogs_blogs_service_blogsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_module", - "target": "backend_src_blogs_blogs_service_blogsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_module", - "target": "backend_src_blogs_blogs_controller_blogscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_service", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/dto/update-blog.dto.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_dto_update_blog_dto", - "target": "backend_src_blogs_dto_create_blog_dto_createblogdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller", - "target": "backend_src_cms_cms_service_cmsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_module", - "target": "backend_src_cms_cms_controller_cmscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_module", - "target": "backend_src_cms_cms_service_cmsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_filters_http_exception_filter", - "target": "backend_src_common_schemas_error_response_schema_errordetailfield", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_guards_roles_guard", - "target": "backend_src_common_decorators_roles_decorator_roles_key", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/guards/roles.guard.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_guards_roles_guard_spec", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/guards/roles.guard.spec.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_guards_roles_guard_spec", - "target": "backend_src_common_decorators_roles_decorator_roles_key", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/interceptors/decimal.interceptor.spec.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_interceptors_decimal_interceptor_spec", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_metrics_controller", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_module", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/sms.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_sms_module", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller", - "target": "backend_src_contact_contact_service_contactservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_module", - "target": "backend_src_contact_contact_controller_contactcontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_module", - "target": "backend_src_contact_contact_service_contactservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_module", - "target": "backend_src_common_sms_module_smsmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_service", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller", - "target": "backend_src_doctors_doctors_service_doctorsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller", - "target": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_module", - "target": "backend_src_doctors_doctors_service_doctorsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_module", - "target": "backend_src_doctors_doctors_controller_doctorscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_service", - "target": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_controller", - "target": "backend_src_faq_faq_service_faqservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_module", - "target": "backend_src_faq_faq_controller_faqcontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_module", - "target": "backend_src_faq_faq_service_faqservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/dto/update-home.dto.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_dto_update_home_dto", - "target": "backend_src_home_dto_create_home_dto_createhomedto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_home_controller", - "target": "backend_src_home_home_service_homeservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_home_module", - "target": "backend_src_home_home_service_homeservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_home_module", - "target": "backend_src_home_home_controller_homecontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_home_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/main.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_main", - "target": "backend_src_app_module_appmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/main.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_main", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/main.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_main", - "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/main.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_main", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller", - "target": "backend_src_menu_menu_service_menuservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_module", - "target": "backend_src_menu_menu_controller_menucontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_module", - "target": "backend_src_menu_menu_service_menuservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_orders_service_ordersservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_dto_create_order_dto_createorderdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller_spec", - "target": "backend_src_orders_orders_controller_orderscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller_spec", - "target": "backend_src_orders_orders_service_ordersservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_module", - "target": "backend_src_orders_orders_service_ordersservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_module", - "target": "backend_src_orders_orders_controller_orderscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service", - "target": "backend_src_orders_dto_create_order_dto_createorderdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_spec", - "target": "backend_src_orders_orders_service_ordersservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.spec.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_spec", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_payment_service_paymentservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_zibal_service_zibalservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_payment_controller_paymentcontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_payment_service_paymentservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_zibal_service_zibalservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_module", - "target": "backend_src_common_sms_module_smsmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service", - "target": "backend_src_payment_zibal_service_zibalservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/update-pet.dto.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_dto_update_pet_dto", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_pets_service_petsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_update_pet_dto_updatepetdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_spec", - "target": "backend_src_pets_pets_controller_petscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_spec", - "target": "backend_src_pets_pets_service_petsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_module", - "target": "backend_src_pets_pets_service_petsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_module", - "target": "backend_src_pets_pets_controller_petscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_dto_update_pet_dto_updatepetdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_spec", - "target": "backend_src_pets_pets_service_petsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.module.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_service", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prisma/prisma.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prisma_prisma_module", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/dto/get-products.dto.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_dto_get_products_dto", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller", - "target": "backend_src_products_products_service_productsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller", - "target": "backend_src_products_dto_get_products_dto_getproductsdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller_spec", - "target": "backend_src_products_products_controller_productscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller_spec", - "target": "backend_src_products_products_service_productsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_module", - "target": "backend_src_products_products_service_productsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_module", - "target": "backend_src_products_products_controller_productscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service", - "target": "backend_src_products_dto_get_products_dto_getproductsdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service_spec", - "target": "backend_src_products_products_service_productsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/redis/redis.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_redis_redis_module", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/redis/redis.service.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_redis_redis_service_spec", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_reviews_service_reviewsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_module", - "target": "backend_src_reviews_reviews_service_reviewsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_module", - "target": "backend_src_reviews_reviews_controller_reviewscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service", - "target": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service", - "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_controller", - "target": "backend_src_seo_seo_service_seoservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_module", - "target": "backend_src_seo_seo_controller_seocontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_module", - "target": "backend_src_seo_seo_service_seoservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller", - "target": "backend_src_settings_settings_service_scientifictermdata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller", - "target": "backend_src_settings_settings_service_settingsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller", - "target": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_settings_settings_controller_settingscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_settings_settings_service_settingsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.spec.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.spec.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.spec.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_common_decorators_roles_decorator_roles_key", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_module", - "target": "backend_src_settings_settings_service_settingsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_module", - "target": "backend_src_settings_settings_controller_settingscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service", - "target": "backend_src_common_services_sms_service_smslogquery", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service", - "target": "backend_src_settings_default_ui_texts_default_ui_texts", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_spec", - "target": "backend_src_settings_settings_service_settingsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_module", - "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_module", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_tickets_service_ticketsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_module", - "target": "backend_src_tickets_tickets_service_ticketsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_module", - "target": "backend_src_tickets_tickets_controller_ticketscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller", - "target": "backend_src_users_users_service_usersservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller", - "target": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller", - "target": "backend_src_users_dto_address_dto_addressdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_spec", - "target": "backend_src_users_users_controller_userscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_spec", - "target": "backend_src_users_users_service_usersservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_module", - "target": "backend_src_users_users_service_usersservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_module", - "target": "backend_src_users_users_controller_userscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service", - "target": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service", - "target": "backend_src_common_utils_phone_utils_normalizemobile", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_spec", - "target": "backend_src_users_users_service_usersservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_spec", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_dto_get_videos_query_dto", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_videos_service_videosservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_dto_create_video_dto_createvideodto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_module", - "target": "backend_src_videos_videos_controller_videoscontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_module", - "target": "backend_src_videos_videos_service_videosservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_service", - "target": "backend_src_videos_dto_create_video_dto_createvideodto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_dto_update_wiki_dto", - "target": "backend_src_wiki_dto_create_wiki_dto_createwikidto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller", - "target": "backend_src_wiki_wiki_service_wikiservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_module", - "target": "backend_src_wiki_wiki_service_wikiservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_module", - "target": "backend_src_wiki_wiki_controller_wikicontroller", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_service", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_app_module_appmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/test/app.e2e-spec.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_e2e_spec_ts_backend_test_app_e2e_spec", - "target": "backend_src_app_module_appmodule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L14", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies_axios", - "target": "frontend_admin_panel_package_json_axios", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L15", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies_lucide_react", - "target": "frontend_admin_panel_package_json_lucide_react", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L16", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies_react", - "target": "frontend_admin_panel_package_json_react", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L17", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies_react_dom", - "target": "frontend_admin_panel_package_json_react_dom", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L18", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies_react_hot_toast", - "target": "react_hot_toast", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L19", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies_react_router_dom", - "target": "react_router_dom", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L20", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies_recharts", - "target": "recharts", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L13", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies_tanstack_react_query", - "target": "tanstack_react_query", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L21", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies_vite", - "target": "vite", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L22", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies_zustand", - "target": "frontend_admin_panel_package_json_zustand", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L31", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies_autoprefixer", - "target": "autoprefixer", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L32", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies_eslint", - "target": "frontend_admin_panel_package_json_eslint", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L25", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies_eslint_js", - "target": "frontend_admin_panel_package_json_eslint_js", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L33", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks", - "target": "eslint_plugin_react_hooks", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L34", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh", - "target": "eslint_plugin_react_refresh", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L35", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies_globals", - "target": "frontend_admin_panel_package_json_globals", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L36", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies_postcss", - "target": "postcss", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L37", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies_tailwindcss", - "target": "frontend_admin_panel_package_json_tailwindcss", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L26", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss", - "target": "frontend_admin_panel_package_json_tailwindcss_postcss", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L27", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies_types_node", - "target": "frontend_admin_panel_package_json_types_node", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L28", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies_types_react", - "target": "frontend_admin_panel_package_json_types_react", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L29", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies_types_react_dom", - "target": "frontend_admin_panel_package_json_types_react_dom", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L38", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies_typescript", - "target": "frontend_admin_panel_package_json_typescript", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L39", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies_typescript_eslint", - "target": "frontend_admin_panel_package_json_typescript_eslint", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L30", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react", - "target": "frontend_admin_panel_package_json_vitejs_plugin_react", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/App.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_app", - "target": "frontend_admin_panel_src_routes_adminroutes_router", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Layout.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_layout", - "target": "frontend_admin_panel_src_components_sidebar_sidebar", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Layout.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_layout", - "target": "frontend_admin_panel_src_components_topbar_topbar", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_types_admin_adminuser", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_types_admin_authresponsedata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_topbar", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_topbar", - "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_transactionreceiptmodal", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_button", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_richtexteditor", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/main.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_main", - "target": "frontend_admin_panel_src_app_app", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_types_admin_b2binquiry", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_types_admin_partneraccount", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_types_admin_banner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditor", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_dashboard", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_faqmanager", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_faqmanager", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_faqmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_faqmanager", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_faqmanager", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_types_admin_financialsettings", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_types_admin_ingredient", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Login.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_login", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Login.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_login", - "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Login.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_login", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Login.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_login", - "target": "frontend_admin_panel_src_types_admin_authresponsedata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_menumanager", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_menumanager", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_menumanager", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_menumanager", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_menumanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_monitoringpage", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_monitoringpage", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_monitoringpage", - "target": "frontend_admin_panel_src_components_ui_badge_badge", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_monitoringpage", - "target": "frontend_admin_panel_src_components_ui_skeleton_skeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_components_ui_skeleton_skeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_paymentgatewayspage", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_paymentgatewayspage", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_paymentgatewayspage", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_types_admin_prescription", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_badge_badge", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_types_admin_seosettings", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Settings.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_settings", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Settings.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_settings", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Settings.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_settings", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_shippingsettingspage", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_shippingsettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_shippingsettingspage", - "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_shippingsettingspage", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_types_admin_product", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_types_admin_smartadvisorrule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_types_admin_systemsettings", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_types_admin_testimonial", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_badge_badge", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_thsort_thsort", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptdata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_utils_usetableparams_usetableparams", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitch", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditor", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L50", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_iconpickermodal_icon_registry", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L50", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_iconpickermodal_iconpickermodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_skeleton_skeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_types_admin_petsummary", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_types_admin_useraddress", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_zibalportalpage", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_zibalportalpage", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_zibalportalpage", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_zibalportalpage", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_components_layout_layout", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_components_protectedroute_protectedroute", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_login_login", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_utils_lazywithretry_lazywithretry", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_types_admin_authresponsedata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_store_adminauthstore", - "target": "frontend_admin_panel_src_types_admin_adminuser", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_store_adminauthstore", - "target": "frontend_admin_panel_src_types_admin_authstate", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/about/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_about_page", - "target": "frontend_application_lib_seo_getpagemetadata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/b2b/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_b2b_page", - "target": "frontend_application_components_b2blandingclient_b2blandingclient", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/b2b/page.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_b2b_page", - "target": "frontend_application_lib_seo_getpagemetadata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/b2b/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_b2b_page", - "target": "frontend_application_lib_schema_generateb2bserviceschema", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/b2b/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_b2b_page", - "target": "frontend_application_lib_schema_generatebreadcrumbschema", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_page", - "target": "frontend_application_components_blogpage_blogpage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_page", - "target": "frontend_application_lib_seo_getpagemetadata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_components_blogpostclient_blogpostclient", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_lib_seo_formatpagetitle", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_lib_seo_getseoconfig", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/catalog/CatalogClient.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/catalog/CatalogClient.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/catalog/CatalogClient.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/catalog/CatalogClient.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_lib_data_products_products", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/catalog/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_catalog_page", - "target": "frontend_application_app_catalog_catalogclient_catalogclient", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/catalog/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_catalog_page", - "target": "frontend_application_lib_seo_getpagemetadata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_checkout_page", - "target": "frontend_application_components_checkoutpage_checkoutpage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_checkout_page", - "target": "frontend_application_lib_seo_getpagemetadata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_checkout_success_id_page", - "target": "frontend_application_components_ordersuccess_ordersuccess", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_uistore_useuistore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_maintenancepage_maintenancepage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_types_navigationtarget", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_header_header", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_footer_footer", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_networkbanner_networkbanner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_contact_page", - "target": "frontend_application_lib_schema_generatebreadcrumbschema", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_contact_page", - "target": "frontend_application_lib_schema_generatelocalbusinessschema", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_contact_page", - "target": "frontend_application_components_contactformclient_contactformclient", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_contact_page", - "target": "frontend_application_lib_seo_getpagemetadata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/dashboard/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_dashboard_page", - "target": "frontend_application_components_userdashboard_userdashboard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/dashboard/page.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_dashboard_page", - "target": "frontend_application_lib_seo_getpagemetadata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/error.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_error", - "target": "frontend_application_components_errorpages_servererrorpage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_faqsection_faqsection", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_bannerplacement_bannerplacement", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_types_banner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_types_homeapiresponse", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_types_smartadvisorrule", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_types_testimonial", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_hero_hero", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_smartadvisor_smartadvisor", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_featuredproducts_featuredproducts", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_vetgallery_vetgallery", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_testimonialssection_testimonialssection", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_blogpreviewsection_blogpreviewsection", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_layout", - "target": "frontend_application_app_clientlayout_clientlayout", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_layout", - "target": "frontend_application_lib_seo_getseoconfig", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_layout", - "target": "frontend_application_lib_fonts_lalezar", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_layout", - "target": "frontend_application_lib_fonts_vazirmatn", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L98", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_layout", - "target": "frontend_application_lib_schema_generateorganizationschema", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/loading.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_loading", - "target": "frontend_application_components_skeleton_skeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/not-found.tsx", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_not_found", - "target": "frontend_application_components_errorpages_notfoundpage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_page", - "target": "frontend_application_lib_types_homeapiresponse", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_page", - "target": "frontend_application_app_homeclient_homeclient", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_page", - "target": "frontend_application_lib_seo_getpagemetadata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/privacy/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_privacy_page", - "target": "frontend_application_lib_seo_getpagemetadata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/profile/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_profile_page", - "target": "frontend_application_components_petprofile_petprofile", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/profile/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_profile_page", - "target": "frontend_application_lib_seo_getpagemetadata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/search/page.tsx", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_search_page", - "target": "frontend_application_components_searchresultspage_searchresultspage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/search/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_search_page", - "target": "frontend_application_lib_seo_getpagemetadata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/feed.xml/route.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_feed_xml_route", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/feed.xml/route.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_feed_xml_route", - "target": "frontend_application_lib_data_products_products", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_page", - "target": "frontend_application_components_archivepage_archivepage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_page", - "target": "frontend_application_lib_seo_getpagemetadata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_components_productpage_productpage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_lib_seo_formatpagetitle", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_lib_seo_getseoconfig", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap", - "target": "frontend_application_lib_data_products_products", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap_categories_xml_route", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap-products.xml/route.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap_products_xml_route", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap-products.xml/route.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap_products_xml_route", - "target": "frontend_application_lib_data_products_products", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/track/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_track_page", - "target": "frontend_application_components_ordertracking_ordertracking", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/track/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_track_page", - "target": "frontend_application_lib_seo_getpagemetadata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_trust_seals_page", - "target": "frontend_application_components_enamadbadge_enamadbadge", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_trust_seals_page", - "target": "frontend_application_lib_seo_getpagemetadata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_videos_page", - "target": "frontend_application_components_videospage_videospage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_videos_page", - "target": "frontend_application_lib_seo_getpagemetadata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_videos_page", - "target": "frontend_application_lib_schema_generatebreadcrumbschema", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_videos_page", - "target": "frontend_application_lib_schema_generatevideoobjectschema", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_page", - "target": "frontend_application_components_ingredientwiki_ingredientwiki", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/page.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_page", - "target": "frontend_application_lib_seo_getpagemetadata", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_lib_seo_formatpagetitle", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_lib_seo_getseoconfig", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_lib_schema_generatebreadcrumbschema", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_lib_schema_generatemedicalwebpageschema", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_store_userstore_address", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_data_provinces_iran_provinces", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_data_provinces_province_cities", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_addressmodal", - "target": "frontend_application_components_searchableselect_searchableselect", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_bannerplacement_bannerplacement", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_types_banner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_data_products_pettype", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_skeleton_productcardskeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_services_authservice_authservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_utils_toenglishdigits", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BLandingClient.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2blandingclient", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BLandingClient.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2blandingclient", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BackButton.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_backbutton", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BannerPlacement.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_bannerplacement", - "target": "frontend_application_lib_types_banner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BannerPlacement.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_bannerplacement", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPage.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpage", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPage.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpage", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPage.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpage", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPostClient.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpostclient", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpreviewsection", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpreviewsection", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpreviewsection", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpreviewsection", - "target": "frontend_application_lib_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpreviewsection", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BrandLogo.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_brandlogo", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_components_authmodal_authmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_catalogpagespread_categorymeta", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_data_products_products", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_components_topupmodal_topupmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_components_addressmodal_addressmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_components_searchableselect_searchableselect", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_data_provinces_iran_provinces", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_data_provinces_province_cities", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ContactFormClient.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_contactformclient", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/EnamadBadge.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_enamadbadge", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FAQSection.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_faqsection", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FAQSection.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_faqsection", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_skeleton_productcardskeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Footer.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_footer", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Footer.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_footer", - "target": "frontend_application_components_brandlogo_brandlogo", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Footer.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_footer", - "target": "frontend_application_lib_types_navigationtarget", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_components_authmodal_authmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_components_tickerbanner_tickerbanner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_components_brandlogo_brandlogo", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_lib_types_navigationtarget", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/HeaderButton.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_headerbutton", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/HeaderButton.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_headerbutton", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_hero", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_hero", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_hero", - "target": "frontend_application_lib_types_banner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_types_ingredient", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_data_products_ingredientinfo", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_data_products_ingredients_wiki", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_data_products_products", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_services_authservice_authservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/MaintenancePage.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_maintenancepage", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/MaintenancePage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_maintenancepage", - "target": "frontend_application_components_brandlogo_brandlogo", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/NetworkBanner.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_networkbanner", - "target": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderSuccess.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ordersuccess", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderSuccess.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ordersuccess", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderTracking.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ordertracking", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_usepetstore_healthlog", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_usepetstore_petprofile", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_usepetstore_reminder", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_smartadvisor_smartadvisor", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_skeleton_petprofileskeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_podcastinlineplayer", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PodcastPlayerModal.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_podcastplayermodal", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_prescriptionuploadmodal", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_prescriptionuploadmodal", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_data_scientificterms_scientific_terms", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_types_dosageconfig", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L69", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_components_tooltip_tooltip", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L70", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L71", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productreviews", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productreviews", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SafeImage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_safeimage", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SearchableSelect.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_searchableselect", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SearchResultsPage.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SearchResultsPage.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SearchResultsPage.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_data_products_products", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_uistore_useuistore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_testimonialssection", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_testimonialssection", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_testimonialssection", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_testimonialssection", - "target": "frontend_application_lib_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_components_cartdrawer_cartdrawer", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_components_featuredproducts_featuredproducts", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Footer.test.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_footer_test", - "target": "frontend_application_components_footer_footer", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Header.test.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_components_header_header", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Header.test.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Header.test.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Header.test.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Hero.test.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_hero_test", - "target": "frontend_application_components_hero_hero", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Hero.test.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_hero_test", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_tooltip_test", - "target": "frontend_application_components_tooltip_tooltip", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_tooltip_test", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TickerBanner.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tickerbanner", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tooltip", - "target": "frontend_application_lib_data_scientificterms_scientific_terms", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tooltip", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_addressmodal_addressmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_topupmodal_topupmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_services_ticketservice_ticket", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_services_ticketservice_ticketmessage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_services_ticketservice_ticketservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_petprofile_petprofile", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_skeleton_orderrowskeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_userstore_address", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_utils_toenglishdigits", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_vetgallery", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_vetgallery", - "target": "frontend_application_lib_services_videoservice_video", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_vetgallery", - "target": "frontend_application_lib_services_videoservice_videoservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_videomodalplayer_videomodalplayer", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VideosPage.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_videospage", - "target": "frontend_application_components_videomodalplayer_videomodalplayer", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VideosPage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_videospage", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VideosPage.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_videospage", - "target": "frontend_application_lib_services_videoservice_video", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VideosPage.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_videospage", - "target": "frontend_application_lib_services_videoservice_videoservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_api", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_data_products_pettype", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_data_products_products", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_types_banner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/ticketService.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_ticketservice", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/videoService.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_videoservice", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_services_orderservice_orderservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_settingsstore", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_services_orderservice_orderservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_tests_settingsstore_test", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_tests_settingsstore_test", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_tests_userstore_test", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_tests_userstore_test", - "target": "frontend_application_lib_services_authservice_authservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_tests_userstore_test", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_services_authservice_authservice", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_services_authservice_user", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L12", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_dependencies_axios", - "target": "frontend_application_package_json_axios", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L13", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_dependencies_lucide_react", - "target": "frontend_application_package_json_lucide_react", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L14", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_dependencies_motion", - "target": "motion", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L15", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_dependencies_next", - "target": "next", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L16", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_dependencies_react", - "target": "frontend_application_package_json_react", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L17", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_dependencies_react_dom", - "target": "frontend_application_package_json_react_dom", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L18", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_dependencies_sonner", - "target": "sonner", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L19", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_dependencies_zustand", - "target": "frontend_application_package_json_zustand", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L29", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_devdependencies_eslint", - "target": "frontend_application_package_json_eslint", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L30", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_devdependencies_eslint_config_next", - "target": "eslint_config_next", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L31", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_devdependencies_jsdom", - "target": "jsdom", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L32", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_devdependencies_tailwindcss", - "target": "frontend_application_package_json_tailwindcss", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L22", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_devdependencies_tailwindcss_postcss", - "target": "frontend_application_package_json_tailwindcss_postcss", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L23", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_devdependencies_testing_library_jest_dom", - "target": "testing_library_jest_dom", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L24", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_devdependencies_testing_library_react", - "target": "testing_library_react", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L25", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_devdependencies_types_node", - "target": "frontend_application_package_json_types_node", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L26", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_devdependencies_types_react", - "target": "frontend_application_package_json_types_react", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L27", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_devdependencies_types_react_dom", - "target": "frontend_application_package_json_types_react_dom", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L33", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_devdependencies_typescript", - "target": "frontend_application_package_json_typescript", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L28", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_devdependencies_vitejs_plugin_react", - "target": "frontend_application_package_json_vitejs_plugin_react", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L34", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "frontend_application_package_devdependencies_vitest", - "target": "vitest", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L18", - "weight": 1.0, - "context": "import", - "_origin": "ast", - "source": "package_devdependencies_concurrently", - "target": "concurrently", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed.ts", - "source_location": "L471", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_main", - "target": "backend_prisma_seed_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed.ts", - "source_location": "L482", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_main", - "target": "backend_prisma_seed_home", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", - "target": "backend_src_app_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-openapi.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", - "target": "backend_src_app_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_admin_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_dto_product_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_dto_admin_query_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_dto_user_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_spec", - "target": "backend_src_admin_admin_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_spec", - "target": "backend_src_admin_admin_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_blogs_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_blogs_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_wiki_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_wiki_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_pets_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_pets_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_ssl_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_ssl_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_redis_redis_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_admin_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_admin_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_reports_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_reports_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_media_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_media_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_categories_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_categories_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_dto_user_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_dto_product_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_common_utils_phone_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_settings_settings_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_common_revalidation_revalidation_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_redis_redis_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_spec", - "target": "backend_src_admin_admin_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_spec", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.spec.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_spec", - "target": "backend_src_redis_redis_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller", - "target": "backend_src_admin_blogs_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service", - "target": "backend_src_common_revalidation_revalidation_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller", - "target": "backend_src_admin_categories_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/admin-query.dto.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_dto_admin_query_dto", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_controller", - "target": "backend_src_admin_media_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_controller", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_controller", - "target": "backend_src_admin_pets_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_reports_controller", - "target": "backend_src_admin_reports_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_reports_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_reports_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller", - "target": "backend_src_admin_ssl_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_controller", - "target": "backend_src_admin_wiki_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_controller", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.controller.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_controller", - "target": "backend_src_app_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.controller.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_controller_spec", - "target": "backend_src_app_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.controller.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_controller_spec", - "target": "backend_src_app_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_settings_settings_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_common_metrics_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_admin_admin_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_home_home_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_blogs_blogs_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_wiki_wiki_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_seo_seo_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_cms_cms_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_wholesale_wholesale_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_videos_videos_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_common_sms_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_contact_contact_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_banners_banners_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_smart_advisor_smart_advisor_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_testimonials_testimonials_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_ingredients_ingredients_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_prescriptions_prescriptions_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_b2b_b2b_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_products_products_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_payment_payment_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_tickets_tickets_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_reviews_reviews_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_doctors_doctors_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_faq_faq_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_menu_menu_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_common_revalidation_revalidation_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_users_users_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_redis_redis_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_redis_redis_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_auth_auth_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_pets_pets_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_orders_orders_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_auth_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_send_otp_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_verify_otp_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_register_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_login_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_dto_admin_login_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_spec", - "target": "backend_src_auth_auth_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_spec", - "target": "backend_src_auth_auth_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.module.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.module.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_jwt_strategy", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.module.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_module", - "target": "backend_src_users_users_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.module.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_constants", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_dto_send_otp_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_dto_verify_otp_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service", - "target": "backend_src_common_utils_phone_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service", - "target": "backend_src_redis_redis_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_spec", - "target": "backend_src_auth_auth_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_spec", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.spec.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_spec", - "target": "backend_src_redis_redis_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.spec.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_spec", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_users_users_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_auth_auth_constants", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_b2b_b2b_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_auth_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_auth_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_module", - "target": "backend_src_b2b_b2b_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_module", - "target": "backend_src_b2b_b2b_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller", - "target": "backend_src_banners_banners_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_module", - "target": "backend_src_banners_banners_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_module", - "target": "backend_src_banners_banners_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller", - "target": "backend_src_blogs_blogs_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_module", - "target": "backend_src_blogs_blogs_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_module", - "target": "backend_src_blogs_blogs_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_service", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/dto/update-blog.dto.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_dto_update_blog_dto", - "target": "backend_src_blogs_dto_create_blog_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller", - "target": "backend_src_cms_cms_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller", - "target": "backend_src_cms_dto_cms_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller", - "target": "backend_src_auth_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller", - "target": "backend_src_auth_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_module", - "target": "backend_src_cms_cms_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_module", - "target": "backend_src_cms_cms_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service", - "target": "backend_src_cms_dto_cms_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_filters_http_exception_filter", - "target": "backend_src_common_schemas_error_response_schema", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_guards_roles_guard", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/guards/roles.guard.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_guards_roles_guard_spec", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/guards/roles.guard.spec.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_guards_roles_guard_spec", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/interceptors/decimal.interceptor.spec.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_interceptors_decimal_interceptor_spec", - "target": "backend_src_common_interceptors_decimal_interceptor", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_metrics_controller", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_module", - "target": "backend_src_common_revalidation_revalidation_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/sms.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_sms_module", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller", - "target": "backend_src_contact_contact_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller", - "target": "backend_src_auth_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller", - "target": "backend_src_auth_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_module", - "target": "backend_src_contact_contact_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_module", - "target": "backend_src_contact_contact_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_module", - "target": "backend_src_common_sms_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_service", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller", - "target": "backend_src_doctors_doctors_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller", - "target": "backend_src_doctors_dto_doctor_query_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_module", - "target": "backend_src_doctors_doctors_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_module", - "target": "backend_src_doctors_doctors_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_controller", - "target": "backend_src_faq_faq_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_module", - "target": "backend_src_faq_faq_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_module", - "target": "backend_src_faq_faq_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/dto/update-home.dto.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_dto_update_home_dto", - "target": "backend_src_home_dto_create_home_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_home_controller", - "target": "backend_src_home_home_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_home_module", - "target": "backend_src_home_home_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_home_module", - "target": "backend_src_home_home_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_home_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_ingredients_ingredients_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_ingredients_ingredients_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_ingredients_ingredients_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/main.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_main", - "target": "backend_src_app_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/main.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_main", - "target": "backend_src_common_filters_http_exception_filter", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/main.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_main", - "target": "backend_src_common_filters_prisma_exception_filter", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/main.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_main", - "target": "backend_src_common_interceptors_decimal_interceptor", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller", - "target": "backend_src_menu_menu_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_module", - "target": "backend_src_menu_menu_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_module", - "target": "backend_src_menu_menu_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_orders_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_dto_create_order_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller_spec", - "target": "backend_src_orders_orders_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller_spec", - "target": "backend_src_orders_orders_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_module", - "target": "backend_src_orders_orders_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_module", - "target": "backend_src_orders_orders_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service", - "target": "backend_src_orders_dto_create_order_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_spec", - "target": "backend_src_orders_orders_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_spec", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.spec.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_spec", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_payment_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_zibal_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_zibal_ebank_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_ebank_checkout_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_initiate_payment_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_verify_payment_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_dto_admin_transaction_filter_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_payment_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_payment_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_zibal_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_zibal_ebank_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_module", - "target": "backend_src_common_sms_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service", - "target": "backend_src_payment_dto_admin_transaction_filter_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service", - "target": "backend_src_payment_zibal_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_interfaces_payment_gateway_interface", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/update-pet.dto.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_dto_update_pet_dto", - "target": "backend_src_pets_dto_create_pet_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_pets_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_create_pet_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_update_pet_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_create_reminder_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_dto_create_health_log_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_spec", - "target": "backend_src_pets_pets_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_spec", - "target": "backend_src_pets_pets_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_module", - "target": "backend_src_pets_pets_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_module", - "target": "backend_src_pets_pets_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_dto_create_pet_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_dto_update_pet_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_spec", - "target": "backend_src_pets_pets_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_spec", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_prescriptions_prescriptions_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prescriptions_prescriptions_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prescriptions_prescriptions_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.module.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_service", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/prisma/prisma.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prisma_prisma_module", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/dto/get-products.dto.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_dto_get_products_dto", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller", - "target": "backend_src_products_products_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller", - "target": "backend_src_products_dto_get_products_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller_spec", - "target": "backend_src_products_products_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller_spec", - "target": "backend_src_products_products_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_module", - "target": "backend_src_products_products_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_module", - "target": "backend_src_products_products_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service", - "target": "backend_src_products_dto_get_products_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service", - "target": "backend_src_common_revalidation_revalidation_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service_spec", - "target": "backend_src_products_products_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service_spec", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/redis/redis.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_redis_redis_module", - "target": "backend_src_redis_redis_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/redis/redis.service.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_redis_redis_service_spec", - "target": "backend_src_redis_redis_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_reviews_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_dto_create_review_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_dto_update_review_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_module", - "target": "backend_src_reviews_reviews_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_module", - "target": "backend_src_reviews_reviews_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service", - "target": "backend_src_common_revalidation_revalidation_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service", - "target": "backend_src_reviews_dto_create_review_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service", - "target": "backend_src_reviews_dto_update_review_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_controller", - "target": "backend_src_seo_seo_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_module", - "target": "backend_src_seo_seo_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_module", - "target": "backend_src_seo_seo_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller", - "target": "backend_src_settings_settings_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller", - "target": "backend_src_settings_dto_sms_log_query_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_settings_settings_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_settings_settings_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.spec.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.spec.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.spec.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_spec", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_module", - "target": "backend_src_settings_settings_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_module", - "target": "backend_src_settings_settings_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service", - "target": "backend_src_settings_default_ui_texts", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_spec", - "target": "backend_src_settings_settings_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_spec", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_smart_advisor_smart_advisor_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_module", - "target": "backend_src_smart_advisor_smart_advisor_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_module", - "target": "backend_src_smart_advisor_smart_advisor_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_testimonials_testimonials_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_testimonials_testimonials_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_testimonials_testimonials_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_tickets_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_create_ticket_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_dto_ticket_query_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_common_guards_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_common_decorators_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_module", - "target": "backend_src_tickets_tickets_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_module", - "target": "backend_src_tickets_tickets_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_ticket_query_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_dto_create_ticket_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller", - "target": "backend_src_users_users_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller", - "target": "backend_src_users_dto_update_profile_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller", - "target": "backend_src_users_dto_address_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_spec", - "target": "backend_src_users_users_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_spec", - "target": "backend_src_users_users_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_module", - "target": "backend_src_users_users_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_module", - "target": "backend_src_users_users_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service", - "target": "backend_src_users_dto_update_profile_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service", - "target": "backend_src_common_utils_phone_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.spec.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_spec", - "target": "backend_src_users_users_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.spec.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_spec", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_dto_get_videos_query_dto", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_videos_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_dto_create_video_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_dto_get_videos_query_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_module", - "target": "backend_src_videos_videos_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_module", - "target": "backend_src_videos_videos_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_service", - "target": "backend_src_videos_dto_create_video_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_wholesale_wholesale_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_wholesale_dto_wholesale_apply_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_auth_jwt_auth_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_auth_roles_guard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_auth_roles_decorator", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_wholesale_wholesale_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_wholesale_wholesale_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.module.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_prisma_prisma_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_wholesale_dto_wholesale_apply_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_common_services_sms_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_dto_update_wiki_dto", - "target": "backend_src_wiki_dto_create_wiki_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller", - "target": "backend_src_wiki_wiki_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.module.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_module", - "target": "backend_src_wiki_wiki_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.module.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_module", - "target": "backend_src_wiki_wiki_controller", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_service", - "target": "backend_src_prisma_prisma_service", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_service", - "target": "backend_src_common_dto_pagination_dto", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_app_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_filters_http_exception_filter", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_filters_prisma_exception_filter", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_interceptors_decimal_interceptor", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_interceptors_decimal_interceptor", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_app_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_filters_http_exception_filter", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec", - "target": "backend_src_common_filters_prisma_exception_filter", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/test/app.e2e-spec.js", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_e2e_spec_js_backend_test_app_e2e_spec", - "target": "backend_src_app_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/test/app.e2e-spec.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_e2e_spec_ts_backend_test_app_e2e_spec", - "target": "backend_src_app_module", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/App.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_app", - "target": "frontend_admin_panel_src_routes_adminroutes", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Layout.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_layout", - "target": "frontend_admin_panel_src_components_sidebar", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Layout.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_layout", - "target": "frontend_admin_panel_src_components_topbar", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_store_adminauthstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_topbar", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_topbar", - "target": "frontend_admin_panel_src_store_adminauthstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_transactionreceiptmodal", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_button", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_richtexteditor", - "target": "frontend_admin_panel_src_components_ui_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/main.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_main", - "target": "frontend_admin_panel_src_app", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_components_ui_richtexteditor", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_priceinput", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_dashboard", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_faqmanager", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_faqmanager", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_faqmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_faqmanager", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_faqmanager", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_components_ui_priceinput", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Login.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_login", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Login.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_login", - "target": "frontend_admin_panel_src_store_adminauthstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Login.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_login", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_menumanager", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_menumanager", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_menumanager", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_menumanager", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_menumanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_monitoringpage", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_monitoringpage", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_monitoringpage", - "target": "frontend_admin_panel_src_components_ui_badge", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_monitoringpage", - "target": "frontend_admin_panel_src_components_ui_skeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_components_ui_skeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_paymentgatewayspage", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_paymentgatewayspage", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_paymentgatewayspage", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_badge", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_priceinput", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_components_ui_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Settings.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_settings", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Settings.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_settings", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Settings.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_settings", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_shippingsettingspage", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_shippingsettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_shippingsettingspage", - "target": "frontend_admin_panel_src_components_ui_priceinput", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_shippingsettingspage", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_badge", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_thsort", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_components_transactionreceiptmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_utils_usetableparams", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_toggleswitch", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_richtexteditor", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L50", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_iconpickermodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_skeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_components_ui_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_pagination", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_zibalportalpage", - "target": "frontend_admin_panel_src_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_zibalportalpage", - "target": "frontend_admin_panel_src_components_ui_spinner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_zibalportalpage", - "target": "frontend_admin_panel_src_components_ui_button", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_zibalportalpage", - "target": "frontend_admin_panel_src_components_ui_modal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_components_layout", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_components_protectedroute", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_login", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_components_routeerrorboundary", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_utils_lazywithretry", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_store_adminauthstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_store_adminauthstore", - "target": "frontend_admin_panel_src_types_admin", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/about/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_about_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/b2b/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_b2b_page", - "target": "frontend_application_components_b2blandingclient", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/b2b/page.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_b2b_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/b2b/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_b2b_page", - "target": "frontend_application_lib_schema", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_page", - "target": "frontend_application_components_blogpage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_components_blogpostclient", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/catalog/CatalogClient.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_components_catalog_flipbookcatalog", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/catalog/CatalogClient.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/catalog/CatalogClient.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/catalog/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_catalog_page", - "target": "frontend_application_app_catalog_catalogclient", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/catalog/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_catalog_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_checkout_page", - "target": "frontend_application_components_checkoutpage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_checkout_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_checkout_success_id_page", - "target": "frontend_application_components_ordersuccess", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_uistore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_maintenancepage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_header", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_footer", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_networkbanner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_contact_page", - "target": "frontend_application_lib_schema", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_contact_page", - "target": "frontend_application_components_contactformclient", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_contact_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/dashboard/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_dashboard_page", - "target": "frontend_application_components_userdashboard", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/dashboard/page.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_dashboard_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/error.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_error", - "target": "frontend_application_components_errorpages", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_faqsection", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_bannerplacement", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_hero", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_smartadvisor", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_featuredproducts", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_vetgallery", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_testimonialssection", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_components_blogpreviewsection", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_layout", - "target": "frontend_application_app_clientlayout", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_layout", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_layout", - "target": "frontend_application_lib_fonts", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L98", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_layout", - "target": "frontend_application_lib_schema", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/loading.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_loading", - "target": "frontend_application_components_skeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/not-found.tsx", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_not_found", - "target": "frontend_application_components_errorpages", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_page", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_page", - "target": "frontend_application_app_homeclient", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/privacy/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_privacy_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/profile/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_profile_page", - "target": "frontend_application_components_petprofile", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/profile/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_profile_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/search/page.tsx", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_search_page", - "target": "frontend_application_components_searchresultspage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/search/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_search_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/feed.xml/route.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_feed_xml_route", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/feed.xml/route.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_feed_xml_route", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_page", - "target": "frontend_application_components_archivepage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_components_productpage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap_categories_xml_route", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap-products.xml/route.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap_products_xml_route", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap-products.xml/route.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap_products_xml_route", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/track/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_track_page", - "target": "frontend_application_components_ordertracking", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/track/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_track_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_trust_seals_page", - "target": "frontend_application_components_enamadbadge", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_trust_seals_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_videos_page", - "target": "frontend_application_components_videospage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_videos_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_videos_page", - "target": "frontend_application_lib_schema", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/page.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_page", - "target": "frontend_application_components_ingredientwiki", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/page.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_lib_seo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_lib_schema", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_addressmodal", - "target": "frontend_application_lib_data_provinces", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_addressmodal", - "target": "frontend_application_components_searchableselect", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_bannerplacement", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_skeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_services_authservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_authmodal", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BLandingClient.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2blandingclient", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BLandingClient.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2blandingclient", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BackButton.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_backbutton", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BannerPlacement.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_bannerplacement", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BannerPlacement.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_bannerplacement", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPage.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpage", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPage.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpage", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPage.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpage", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPostClient.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpostclient", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpreviewsection", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpreviewsection", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpreviewsection", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpreviewsection", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BrandLogo.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_brandlogo", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_components_authmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_catalogpagespread", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_components_topupmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_components_addressmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_components_searchableselect", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_data_provinces", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ContactFormClient.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_contactformclient", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/EnamadBadge.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_enamadbadge", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FAQSection.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_faqsection", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FAQSection.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_faqsection", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_skeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Footer.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_footer", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Footer.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_footer", - "target": "frontend_application_components_brandlogo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Footer.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_footer", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_components_authmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_components_prescriptionuploadmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_components_tickerbanner", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_components_brandlogo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/HeaderButton.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_headerbutton", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_hero", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_hero", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_hero", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_services_authservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_loginmodal", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/MaintenancePage.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_maintenancepage", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/MaintenancePage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_maintenancepage", - "target": "frontend_application_components_brandlogo", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/NetworkBanner.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_networkbanner", - "target": "frontend_application_lib_hooks_usenetworkstatus", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderSuccess.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ordersuccess", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderSuccess.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ordersuccess", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderTracking.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ordertracking", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_smartadvisor", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_orderdetailsmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_skeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_podcastinlineplayer", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PodcastPlayerModal.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_podcastplayermodal", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_prescriptionuploadmodal", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_prescriptionuploadmodal", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_data_scientificterms", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L69", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_components_tooltip", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L70", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L71", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_components_podcastinlineplayer", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productreviews", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productreviews", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SafeImage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_safeimage", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SearchableSelect.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_searchableselect", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SearchResultsPage.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SearchResultsPage.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SearchResultsPage.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_uistore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_testimonialssection", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_testimonialssection", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_testimonialssection", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_components_cartdrawer", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_components_featuredproducts", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_lib_services_productservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Footer.test.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_footer_test", - "target": "frontend_application_components_footer", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Header.test.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_components_header", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Header.test.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Header.test.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Header.test.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_header_test", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Hero.test.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_hero_test", - "target": "frontend_application_components_hero", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Hero.test.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_hero_test", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_tooltip_test", - "target": "frontend_application_components_tooltip", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_tooltip_test", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TickerBanner.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tickerbanner", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tooltip", - "target": "frontend_application_lib_data_scientificterms", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tooltip", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_topupmodal", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_orderdetailsmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_addressmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_deleteconfirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_topupmodal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_services_ticketservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_petprofile", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_skeleton", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_lib_utils", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_vetgallery", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_vetgallery", - "target": "frontend_application_lib_services_videoservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_videomodalplayer", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VideosPage.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_videospage", - "target": "frontend_application_components_videomodalplayer", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VideosPage.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_videospage", - "target": "frontend_application_components_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VideosPage.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_videospage", - "target": "frontend_application_lib_services_videoservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_api", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_types", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/ticketService.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_ticketservice", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/videoService.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_videoservice", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_data_products", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_services_orderservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_settingsstore", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_services_orderservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_tests_settingsstore_test", - "target": "frontend_application_lib_store_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_tests_settingsstore_test", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_tests_userstore_test", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_tests_userstore_test", - "target": "frontend_application_lib_services_authservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_tests_userstore_test", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "_origin": "ast", - "context": "import", - "source_location": "L6", - "weight": 1.0, - "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_userstore", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_services_authservice", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_cartstore", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_constructor", - "target": "backend_src_admin_admin_service_adminservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L209", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", - "target": "backend_src_admin_admin_service_couponinput", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L128", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createproduct", - "target": "backend_src_admin_dto_product_dto_productdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createuser", - "target": "backend_src_admin_dto_user_dto_createuserdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", "source_location": "L202", "weight": 1.0, "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", - "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_archivepage_archiveproductcard" }, { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L155", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getorders", - "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L121", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getproducts", - "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getusers", - "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L216", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "target": "backend_src_admin_admin_service_couponinput", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L135", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateproduct", - "target": "backend_src_admin_dto_product_dto_productdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L69", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateuser", - "target": "backend_src_admin_dto_user_dto_updateuserdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice_constructor", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice_constructor", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L399", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice_createproduct", - "target": "backend_src_admin_dto_product_dto_productdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L177", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice_createuser", - "target": "backend_src_admin_dto_user_dto_createuserdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L468", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice_updateproduct", - "target": "backend_src_admin_dto_product_dto_productdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L220", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice_updateuser", - "target": "backend_src_admin_dto_user_dto_updateuserdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_constructor", - "target": "backend_src_admin_blogs_service_blogsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller_getblogs", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice_constructor", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice_getblogs", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_constructor", - "target": "backend_src_admin_categories_service_categoriesservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_getcategories", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_service_categoriesservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_constructor", - "target": "backend_src_admin_media_service_mediaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_service_mediaservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_controller_petscontroller_constructor", - "target": "backend_src_admin_pets_service_petsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_controller_petscontroller_getpets", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_service_petsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_reports_controller_reportscontroller_constructor", - "target": "backend_src_admin_reports_service_reportsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_reports_service_reportsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_constructor", - "target": "backend_src_admin_ssl_service_sslservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller_constructor", - "target": "backend_src_admin_wiki_service_wikiservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller_getterms", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_service_wikiservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.controller.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_controller_appcontroller_constructor", - "target": "backend_src_app_service_appservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L90", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module_appmodule_constructor", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L97", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "target": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_constructor", - "target": "backend_src_auth_auth_service_authservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L88", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_login", - "target": "backend_src_auth_dto_login_dto_logindto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L79", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_register", - "target": "backend_src_auth_dto_register_dto_registerdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L57", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_sendotp", - "target": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L68", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice_constructor", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice_sendotp", - "target": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L126", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice_verifyotp", - "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_jwt_strategy_jwtstrategy_constructor", - "target": "backend_src_users_users_service_usersservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_constructor", - "target": "backend_src_b2b_b2b_service_b2bservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L73", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "target": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_service_b2bservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_constructor", - "target": "backend_src_banners_banners_service_bannersservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_service_bannersservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_constructor", - "target": "backend_src_blogs_blogs_service_blogsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller_findall", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_service_blogsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_constructor", - "target": "backend_src_cms_cms_service_cmsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_createherobanner", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L95", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L67", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice_createherobanner", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L67", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice_createvettestimonial", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_metrics_controller_metricscontroller_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_constructor", - "target": "backend_src_contact_contact_service_contactservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_service_contactservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_service_contactservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_constructor", - "target": "backend_src_doctors_doctors_service_doctorsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_findall", - "target": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_service_doctorsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_service_doctorsservice_findall", - "target": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_constructor", - "target": "backend_src_faq_faq_service_faqservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_service_faqservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_home_controller_homecontroller_constructor", - "target": "backend_src_home_home_service_homeservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_home_service_homeservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller_constructor", - "target": "backend_src_menu_menu_service_menuservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_service_menuservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_constructor", - "target": "backend_src_orders_orders_service_ordersservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L85", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_create", - "target": "backend_src_orders_dto_create_order_dto_createorderdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L146", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_findall", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L101", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice_create", - "target": "backend_src_orders_dto_create_order_dto_createorderdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L353", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice_findallbyuser", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_constructor", - "target": "backend_src_payment_payment_service_paymentservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_constructor", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_constructor", - "target": "backend_src_payment_zibal_service_zibalservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L439", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", - "target": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L525", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L116", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L194", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L75", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L97", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice_constructor", - "target": "backend_src_payment_zibal_service_zibalservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L685", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice_getadmintransactions", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L368", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_requestlazypayment", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L156", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice_requestpayment", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L285", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "target": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L259", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_addreminder", - "target": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L56", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_constructor", - "target": "backend_src_pets_pets_service_petsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L119", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_create", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L155", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_findall", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L223", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller_update", - "target": "backend_src_pets_dto_update_pet_dto_updatepetdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice_create", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice_findalladmin", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L109", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice_findallbyuser", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L161", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice_update", - "target": "backend_src_pets_dto_update_pet_dto_updatepetdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_constructor", - "target": "backend_src_products_products_service_productsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_findall", - "target": "backend_src_products_dto_get_products_dto_getproductsdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service_productsservice_constructor", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service_productsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service_productsservice_findall", - "target": "backend_src_products_dto_get_products_dto_getproductsdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_constructor", - "target": "backend_src_reviews_reviews_service_reviewsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "target": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L89", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service_reviewsservice_constructor", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service_reviewsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service_reviewsservice_createreview", - "target": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L207", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", - "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_controller_seocontroller_constructor", - "target": "backend_src_seo_seo_service_seoservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_service_seoservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_constructor", - "target": "backend_src_settings_settings_service_settingsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L265", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L111", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_settings_settings_service_scientifictermdata", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L148", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L148", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L616", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_getsmslogs", - "target": "backend_src_common_services_sms_service_smslogquery", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_constructor", - "target": "backend_src_tickets_tickets_service_ticketsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L89", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L73", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L98", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service_ticketsservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service_ticketsservice_createticket", - "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L207", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets", - "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L142", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service_ticketsservice_replytoticket", - "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L279", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", - "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L131", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_addaddress", - "target": "backend_src_users_dto_address_dto_addressdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_constructor", - "target": "backend_src_users_users_service_usersservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L159", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_dto_address_dto_addressdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L103", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_usersservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L125", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_usersservice_update", - "target": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_constructor", - "target": "backend_src_videos_videos_service_videosservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_create", - "target": "backend_src_videos_dto_create_video_dto_createvideodto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_findall", - "target": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_service_videosservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L75", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_service_videosservice_create", - "target": "backend_src_videos_dto_create_video_dto_createvideodto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller_wikicontroller_constructor", - "target": "backend_src_wiki_wiki_service_wikiservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller_wikicontroller_findall", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_service_wikiservice_constructor", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_service_wikiservice_findall", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L246", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice_getproducts", - "target": "frontend_application_lib_data_products_pettype", - "confidence_score": 1.0 - }, - { - "relation": "references", - "context": "return_type", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L83", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "implements", - "context": "type", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "confidence_score": 1.0 - }, - { - "relation": "inherits", - "context": "type", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/admin-query.dto.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "inherits", - "context": "type", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_service_blogfilterdto", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "inherits", - "context": "type", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/dto/get-products.dto.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_dto_get_products_dto_getproductsdto", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "inherits", - "context": "type", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/dto/create-video.dto.ts", - "source_location": "L63", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_dto_create_video_dto_updatevideodto", - "target": "backend_src_videos_dto_create_video_dto_createvideodto", - "confidence_score": 1.0 - }, - { - "relation": "inherits", - "context": "type", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "AGENTS.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "agents", - "target": "agents_graphify", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".agents/rules/graphify.md", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "agents_rules_graphify", - "target": "agents_rules_graphify_graphify", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".agents/workflows/graphify.md", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "agents_workflows_graphify", - "target": "agents_workflows_graphify_workflow_graphify", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agency", - "target": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_activation", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L121", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_pipeline_c_add_specific_feature_add_feature", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L133", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_pipeline_d_content_seo_only_content_creation", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L144", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_task_execution_loop_all_pipelines", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L182", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_state_machine_active_agent_tracking", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L192", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_state_json_template_full_schema_v3", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L239", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_agent_directory_reference", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_step_1_detect_project_intent", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L259", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_real_data_policy", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_your_identity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_step_2_token_limit_context_resume_protocol_critical", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L67", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_pipeline_a_new_project_greenfield", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L75", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", - "target": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L104", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", - "target": "ai_agency_agency_phase_2_master_synthesis_02_product_manager_in_synthesis_mode", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L114", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", - "target": "ai_agency_agency_phase_3_execution_same_as_always", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/AGENCY.md", - "source_location": "L79", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan", - "target": "ai_agency_agency_phase_1_specialist_review_all_agents_read_none_write_code_yet", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_00_intake", - "target": "ai_agency_agents_00_intake_role_core_objective", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_00_intake_operational_rules_boundaries", - "target": "ai_agency_agents_00_intake_1_ask_don_t_assume", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_00_intake_operational_rules_boundaries", - "target": "ai_agency_agents_00_intake_2_forbidden_actions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L105", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_00_intake_role_core_objective", - "target": "ai_agency_agents_00_intake_expected_json_output_schema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_00_intake_role_core_objective", - "target": "ai_agency_agents_00_intake_brownfield_detection", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_00_intake_role_core_objective", - "target": "ai_agency_agents_00_intake_operational_rules_boundaries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_00_intake_role_core_objective", - "target": "ai_agency_agents_00_intake_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/00_intake.md", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_00_intake_role_core_objective", - "target": "ai_agency_agents_00_intake_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_01_auditor", - "target": "ai_agency_agents_01_auditor_role_core_objective", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "target": "ai_agency_agents_01_auditor_1_detect_tech_stack_first_universal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "target": "ai_agency_agents_01_auditor_2_explicit_scoring_methodology_universal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "target": "ai_agency_agents_01_auditor_3_code_coverage_ratio_rule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "target": "ai_agency_agents_01_auditor_4_deep_directory_scanning", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "target": "ai_agency_agents_01_auditor_5_forbidden_actions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_01_auditor_role_core_objective", - "target": "ai_agency_agents_01_auditor_operational_rules_boundaries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L66", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_01_auditor_role_core_objective", - "target": "ai_agency_agents_01_auditor_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_01_auditor_role_core_objective", - "target": "ai_agency_agents_01_auditor_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/01_auditor.md", - "source_location": "L74", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_01_auditor_role_core_objective", - "target": "ai_agency_agents_01_auditor_expected_json_output_schema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_02_ceo", - "target": "ai_agency_agents_02_ceo_role_core_objective", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_02_ceo_operational_rules_boundaries", - "target": "ai_agency_agents_02_ceo_1_mode_direction_decision", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_02_ceo_operational_rules_boundaries", - "target": "ai_agency_agents_02_ceo_2_brownfield_strategic_evaluation", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_02_ceo_operational_rules_boundaries", - "target": "ai_agency_agents_02_ceo_3_risk_assessment", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_02_ceo_operational_rules_boundaries", - "target": "ai_agency_agents_02_ceo_4_forbidden_actions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_02_ceo_role_core_objective", - "target": "ai_agency_agents_02_ceo_operational_rules_boundaries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_02_ceo_role_core_objective", - "target": "ai_agency_agents_02_ceo_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L56", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_02_ceo_role_core_objective", - "target": "ai_agency_agents_02_ceo_expected_json_output_schema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/02_ceo.md", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_02_ceo_role_core_objective", - "target": "ai_agency_agents_02_ceo_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_03_product_manager", - "target": "ai_agency_agents_03_product_manager_role_core_objective", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L74", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_03_product_manager_decompose_mode_normal_operation_new_projects", - "target": "ai_agency_agents_03_product_manager_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L110", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "target": "ai_agency_agents_03_product_manager_3_brownfield_completeness_rule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L116", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "target": "ai_agency_agents_03_product_manager_4_role_assignment_rules", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L126", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "target": "ai_agency_agents_03_product_manager_5_dependency_tracking_strict", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L132", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "target": "ai_agency_agents_03_product_manager_6_priority_assignment", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L140", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "target": "ai_agency_agents_03_product_manager_7_forbidden_actions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L86", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "target": "ai_agency_agents_03_product_manager_1_hierarchical_decomposition_algorithm_3_tier", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L98", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "target": "ai_agency_agents_03_product_manager_2_sub_step_definition_required_for_all_tasks", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L149", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_03_product_manager_role_core_objective", - "target": "ai_agency_agents_03_product_manager_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L194", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_03_product_manager_role_core_objective", - "target": "ai_agency_agents_03_product_manager_expected_json_output_schema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_03_product_manager_role_core_objective", - "target": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L72", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_03_product_manager_role_core_objective", - "target": "ai_agency_agents_03_product_manager_decompose_mode_normal_operation_new_projects", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L84", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_03_product_manager_role_core_objective", - "target": "ai_agency_agents_03_product_manager_operational_rules_boundaries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", - "target": "ai_agency_agents_03_product_manager_what_you_read_all_of_these_the_full_picture", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", - "target": "ai_agency_agents_03_product_manager_synthesis_rules", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/03_product_manager.md", - "source_location": "L62", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", - "target": "ai_agency_agents_03_product_manager_output_of_synthesis_mode", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_04_architect", - "target": "ai_agency_agents_04_architect_role_core_objective", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_1_stack_detection_brownfield", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_2_stack_selection_greenfield", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_3_single_non_negotiable_stack_choice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_4_tech_stack_must_be_written_to_state_json", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_5_directory_layout", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_6_openapi_api_contract", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L71", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_04_architect_operational_rules_boundaries", - "target": "ai_agency_agents_04_architect_7_forbidden_actions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_04_architect_role_core_objective", - "target": "ai_agency_agents_04_architect_operational_rules_boundaries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L79", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_04_architect_role_core_objective", - "target": "ai_agency_agents_04_architect_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L88", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_04_architect_role_core_objective", - "target": "ai_agency_agents_04_architect_expected_json_output_schema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/04_architect.md", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_04_architect_role_core_objective", - "target": "ai_agency_agents_04_architect_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_05_dev_backend", - "target": "ai_agency_agents_05_dev_backend_role_core_objective", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L110", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", - "target": "ai_agency_agents_05_dev_backend_1_always_read_tech_stack_first", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L121", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", - "target": "ai_agency_agents_05_dev_backend_2_sub_step_execution_token_resume_support", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L131", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", - "target": "ai_agency_agents_05_dev_backend_3_mandatory_test_authoring", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L138", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", - "target": "ai_agency_agents_05_dev_backend_4_code_quality_standards", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L146", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", - "target": "ai_agency_agents_05_dev_backend_5_file_scope_boundary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L151", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", - "target": "ai_agency_agents_05_dev_backend_6_forbidden_actions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", - "target": "ai_agency_agents_05_dev_backend_your_domain_what_you_review_only_these_areas", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", - "target": "ai_agency_agents_05_dev_backend_what_you_do_not_review", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", - "target": "ai_agency_agents_05_dev_backend_what_you_look_for_backend_expert_eyes_only", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L60", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", - "target": "ai_agency_agents_05_dev_backend_output", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L108", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_05_dev_backend_role_core_objective", - "target": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L160", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_05_dev_backend_role_core_objective", - "target": "ai_agency_agents_05_dev_backend_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L172", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_05_dev_backend_role_core_objective", - "target": "ai_agency_agents_05_dev_backend_expected_json_output_schema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_05_dev_backend_role_core_objective", - "target": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L94", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_05_dev_backend_role_core_objective", - "target": "ai_agency_agents_05_dev_backend_implement_mode_normal_operation", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/05_dev_backend.md", - "source_location": "L98", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_05_dev_backend_role_core_objective", - "target": "ai_agency_agents_05_dev_backend_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend", - "target": "ai_agency_agents_06_dev_frontend_role_core_objective", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L119", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "target": "ai_agency_agents_06_dev_frontend_1_always_read_tech_stack_first", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L131", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "target": "ai_agency_agents_06_dev_frontend_2_sub_step_execution_token_resume_support", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L141", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "target": "ai_agency_agents_06_dev_frontend_3_api_mocking_requirement", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L148", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "target": "ai_agency_agents_06_dev_frontend_4_modular_component_architecture", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L157", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "target": "ai_agency_agents_06_dev_frontend_5_responsive_design_mandatory", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L163", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "target": "ai_agency_agents_06_dev_frontend_6_file_scope_boundary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L167", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "target": "ai_agency_agents_06_dev_frontend_7_forbidden_actions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", - "target": "ai_agency_agents_06_dev_frontend_your_domain_what_you_review_only_these_areas", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", - "target": "ai_agency_agents_06_dev_frontend_what_you_do_not_review", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", - "target": "ai_agency_agents_06_dev_frontend_what_you_look_for_frontend_expert_eyes_only", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", - "target": "ai_agency_agents_06_dev_frontend_output", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L103", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend_role_core_objective", - "target": "ai_agency_agents_06_dev_frontend_implement_mode_normal_operation", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L107", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend_role_core_objective", - "target": "ai_agency_agents_06_dev_frontend_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L117", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend_role_core_objective", - "target": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L175", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend_role_core_objective", - "target": "ai_agency_agents_06_dev_frontend_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L187", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend_role_core_objective", - "target": "ai_agency_agents_06_dev_frontend_expected_json_output_schema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/06_dev_frontend.md", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_06_dev_frontend_role_core_objective", - "target": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_07_qa_engineer", - "target": "ai_agency_agents_07_qa_engineer_role_core_objective", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", - "target": "ai_agency_agents_07_qa_engineer_1_detect_test_runner_from_tech_stack", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", - "target": "ai_agency_agents_07_qa_engineer_2_execution_output_capture_mandatory", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", - "target": "ai_agency_agents_07_qa_engineer_3_acceptance_criteria_verification", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", - "target": "ai_agency_agents_07_qa_engineer_4_failure_routing_protocol", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L64", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", - "target": "ai_agency_agents_07_qa_engineer_5_success_routing_protocol", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L74", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", - "target": "ai_agency_agents_07_qa_engineer_6_forbidden_actions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_07_qa_engineer_role_core_objective", - "target": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_07_qa_engineer_role_core_objective", - "target": "ai_agency_agents_07_qa_engineer_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L82", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_07_qa_engineer_role_core_objective", - "target": "ai_agency_agents_07_qa_engineer_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/07_qa_engineer.md", - "source_location": "L91", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_07_qa_engineer_role_core_objective", - "target": "ai_agency_agents_07_qa_engineer_expected_json_output_schema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa", - "target": "ai_agency_agents_08_visual_qa_role_core_objective", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L115", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "target": "ai_agency_agents_08_visual_qa_1_framework_aware_analysis", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L126", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "target": "ai_agency_agents_08_visual_qa_2_dom_semantic_structure_analysis", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L134", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "target": "ai_agency_agents_08_visual_qa_3_accessibility_compliance", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L143", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "target": "ai_agency_agents_08_visual_qa_4_responsive_layout_verification", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L155", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "target": "ai_agency_agents_08_visual_qa_5_fallback_inspection_mode", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L162", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "target": "ai_agency_agents_08_visual_qa_6_defect_routing_protocol", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L174", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "target": "ai_agency_agents_08_visual_qa_7_forbidden_actions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", - "target": "ai_agency_agents_08_visual_qa_your_domain_what_you_review_only_these_areas", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", - "target": "ai_agency_agents_08_visual_qa_what_you_do_not_review", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", - "target": "ai_agency_agents_08_visual_qa_what_you_look_for_ux_expert_eyes_only", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L63", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", - "target": "ai_agency_agents_08_visual_qa_output", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L103", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa_role_core_objective", - "target": "ai_agency_agents_08_visual_qa_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L113", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa_role_core_objective", - "target": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L182", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa_role_core_objective", - "target": "ai_agency_agents_08_visual_qa_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L190", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa_role_core_objective", - "target": "ai_agency_agents_08_visual_qa_expected_json_output_schema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa_role_core_objective", - "target": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/08_visual_qa.md", - "source_location": "L99", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_08_visual_qa_role_core_objective", - "target": "ai_agency_agents_08_visual_qa_inspect_mode_normal_operation_post_task_verification", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_09_devops_security", - "target": "ai_agency_agents_09_devops_security_role_core_objective", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L108", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_09_devops_security_operational_rules_boundaries", - "target": "ai_agency_agents_09_devops_security_1_active_secret_scanning_all_modified_files", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L120", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_09_devops_security_operational_rules_boundaries", - "target": "ai_agency_agents_09_devops_security_2_docker_container_verification_if_dockerfile_exists", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L133", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_09_devops_security_operational_rules_boundaries", - "target": "ai_agency_agents_09_devops_security_3_ci_cd_basic_check_if_github_workflows_exists", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L138", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_09_devops_security_operational_rules_boundaries", - "target": "ai_agency_agents_09_devops_security_4_failure_routing_protocol", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L150", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_09_devops_security_operational_rules_boundaries", - "target": "ai_agency_agents_09_devops_security_5_forbidden_actions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", - "target": "ai_agency_agents_09_devops_security_your_domain_what_you_review_only_these_areas", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", - "target": "ai_agency_agents_09_devops_security_what_you_do_not_review", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", - "target": "ai_agency_agents_09_devops_security_what_you_look_for_security_expert_eyes_only", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", - "target": "ai_agency_agents_09_devops_security_output", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L106", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_09_devops_security_role_core_objective", - "target": "ai_agency_agents_09_devops_security_operational_rules_boundaries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L158", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_09_devops_security_role_core_objective", - "target": "ai_agency_agents_09_devops_security_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L168", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_09_devops_security_role_core_objective", - "target": "ai_agency_agents_09_devops_security_expected_json_output_schema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_09_devops_security_role_core_objective", - "target": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L93", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_09_devops_security_role_core_objective", - "target": "ai_agency_agents_09_devops_security_enforce_mode_normal_operation", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/09_devops_security.md", - "source_location": "L97", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_09_devops_security_role_core_objective", - "target": "ai_agency_agents_09_devops_security_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_10_tech_writer", - "target": "ai_agency_agents_10_tech_writer_role_core_objective", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", - "target": "ai_agency_agents_10_tech_writer_1_mark_active_task_as_complete", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", - "target": "ai_agency_agents_10_tech_writer_2_documentation_updates", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", - "target": "ai_agency_agents_10_tech_writer_3_dynamic_routing_protocol_critical", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L72", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", - "target": "ai_agency_agents_10_tech_writer_4_backlog_insufficiency_check", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L77", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", - "target": "ai_agency_agents_10_tech_writer_5_forbidden_actions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_10_tech_writer_role_core_objective", - "target": "ai_agency_agents_10_tech_writer_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_10_tech_writer_role_core_objective", - "target": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L84", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_10_tech_writer_role_core_objective", - "target": "ai_agency_agents_10_tech_writer_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/10_tech_writer.md", - "source_location": "L96", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_10_tech_writer_role_core_objective", - "target": "ai_agency_agents_10_tech_writer_expected_json_output_schema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_11_deploy", - "target": "ai_agency_agents_11_deploy_role_core_objective", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "target": "ai_agency_agents_11_deploy_1_pre_deployment_checklist", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "target": "ai_agency_agents_11_deploy_2_build_verification", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "target": "ai_agency_agents_11_deploy_3_deployment_strategy_based_on_target", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L75", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "target": "ai_agency_agents_11_deploy_4_post_deployment_health_check", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L82", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "target": "ai_agency_agents_11_deploy_5_forbidden_actions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L102", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_11_deploy_role_core_objective", - "target": "ai_agency_agents_11_deploy_expected_json_output_schema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_11_deploy_role_core_objective", - "target": "ai_agency_agents_11_deploy_operational_rules_boundaries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_11_deploy_role_core_objective", - "target": "ai_agency_agents_11_deploy_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/11_deploy.md", - "source_location": "L90", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_11_deploy_role_core_objective", - "target": "ai_agency_agents_11_deploy_required_output_artifacts_what_files_to_write_update", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content", - "target": "ai_agency_agents_12_seo_content_role_core_objective", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L166", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", - "target": "ai_agency_agents_12_seo_content_step_1_gather_resources", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L179", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", - "target": "ai_agency_agents_12_seo_content_step_2_seo_strategy", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L188", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", - "target": "ai_agency_agents_12_seo_content_step_3_content_hierarchy", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L199", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", - "target": "ai_agency_agents_12_seo_content_step_4_structured_data_json_ld", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L211", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", - "target": "ai_agency_agents_12_seo_content_step_5_real_content_writing_standards", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L221", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", - "target": "ai_agency_agents_12_seo_content_step_6_image_alt_text", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L116", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_operating_modes", - "target": "ai_agency_agents_12_seo_content_mode_1_review_called_during_review_phase", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L160", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_operating_modes", - "target": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L231", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_operational_rules_boundaries", - "target": "ai_agency_agents_12_seo_content_forbidden_actions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L238", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_operational_rules_boundaries", - "target": "ai_agency_agents_12_seo_content_file_scope_boundary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", - "target": "ai_agency_agents_12_seo_content_your_domain_what_you_review_only_these_areas", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", - "target": "ai_agency_agents_12_seo_content_what_you_do_not_review", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", - "target": "ai_agency_agents_12_seo_content_what_you_look_for_seo_expert_eyes_only", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L63", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", - "target": "ai_agency_agents_12_seo_content_output", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L101", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_role_core_objective", - "target": "ai_agency_agents_12_seo_content_create_mode_normal_operation", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L103", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_role_core_objective", - "target": "ai_agency_agents_12_seo_content_strict_input_specifications_what_files_to_read", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L114", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_role_core_objective", - "target": "ai_agency_agents_12_seo_content_operating_modes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_role_core_objective", - "target": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L229", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_role_core_objective", - "target": "ai_agency_agents_12_seo_content_operational_rules_boundaries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L244", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_role_core_objective", - "target": "ai_agency_agents_12_seo_content_required_output_artifacts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/agents/12_seo_content.md", - "source_location": "L259", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_agents_12_seo_content_role_core_objective", - "target": "ai_agency_agents_12_seo_content_expected_json_output_schema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/memory/scratchpad.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_memory_scratchpad", - "target": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/memory/scratchpad.md", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", - "target": "ai_agency_memory_scratchpad_execution_target", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/memory/scratchpad.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", - "target": "ai_agency_memory_scratchpad_project_canina_veterinary_e_commerce_system", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/memory/scratchpad.md", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", - "target": "ai_agency_memory_scratchpad_requirements_persona_mandates_intake_user_request", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L105", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_cmd_next_task", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L128", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_cmd_unblock", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L143", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_cmd_reset", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L180", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_main", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_load_json", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_save_json", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_cmd_status", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L75", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_orchestrate", - "target": "ai_agency_orchestrate_cmd_progress", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/api_contract.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_api_contract", - "target": "ai_agency_specs_api_contract_api_contract_specification", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/api_contract.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_api_contract_api_contract_specification", - "target": "ai_agency_specs_api_contract_1_openapi_3_0_swagger_specification", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/api_contract.md", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_api_contract_api_contract_specification", - "target": "ai_agency_specs_api_contract_2_endpoint_definitions_data_types", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/architecture_spec.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_architecture_spec", - "target": "ai_agency_specs_architecture_spec_architecture_specification", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/architecture_spec.md", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_architecture_spec_architecture_specification", - "target": "ai_agency_specs_architecture_spec_2_directory_structure_tree", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/architecture_spec.md", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_architecture_spec_architecture_specification", - "target": "ai_agency_specs_architecture_spec_3_state_management_strategy", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/architecture_spec.md", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_architecture_spec_architecture_specification", - "target": "ai_agency_specs_architecture_spec_4_deployment_docker_architecture", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/architecture_spec.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_architecture_spec_architecture_specification", - "target": "ai_agency_specs_architecture_spec_1_single_non_negotiable_tech_stack", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/prd.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_prd", - "target": "ai_agency_specs_prd_product_requirement_document_prd", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/prd.md", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_prd_product_requirement_document_prd", - "target": "ai_agency_specs_prd_4_non_functional_requirements_performance_security", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/prd.md", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_prd_product_requirement_document_prd", - "target": "ai_agency_specs_prd_5_epic_feature_breakdown", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/prd.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_prd_product_requirement_document_prd", - "target": "ai_agency_specs_prd_1_executive_vision", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/prd.md", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_prd_product_requirement_document_prd", - "target": "ai_agency_specs_prd_2_target_audience", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/prd.md", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_prd_product_requirement_document_prd", - "target": "ai_agency_specs_prd_3_functional_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/project_health.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_project_health", - "target": "ai_agency_specs_project_health_project_health_audit_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/project_health.md", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_project_health_project_health_audit_report", - "target": "ai_agency_specs_project_health_3_outdated_dependencies_list", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/project_health.md", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_project_health_project_health_audit_report", - "target": "ai_agency_specs_project_health_4_security_risks_env_leaks_unprotected_ports", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/project_health.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_project_health_project_health_audit_report", - "target": "ai_agency_specs_project_health_1_audit_score_summary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/project_health.md", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_project_health_project_health_audit_report", - "target": "ai_agency_specs_project_health_2_technical_debt_inventory", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/reviews/backend_review.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_reviews_backend_review", - "target": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/reviews/backend_review.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend", - "target": "ai_agency_specs_reviews_backend_review_architectural_overview", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/reviews/backend_review.md", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend", - "target": "ai_agency_specs_reviews_backend_review_critical_review_findings_required_enhancements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/reviews/code_health_review.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_reviews_code_health_review", - "target": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/reviews/code_health_review.md", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", - "target": "ai_agency_specs_reviews_code_health_review_recommendations", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/reviews/code_health_review.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", - "target": "ai_agency_specs_reviews_code_health_review_executive_summary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/reviews/code_health_review.md", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", - "target": "ai_agency_specs_reviews_code_health_review_key_findings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/reviews/frontend_review.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_reviews_frontend_review", - "target": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/reviews/frontend_review.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend", - "target": "ai_agency_specs_reviews_frontend_review_architectural_overview", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/reviews/frontend_review.md", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend", - "target": "ai_agency_specs_reviews_frontend_review_critical_review_findings_required_enhancements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/reviews/security_review.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_reviews_security_review", - "target": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/reviews/security_review.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security", - "target": "ai_agency_specs_reviews_security_review_security_architecture_best_practices", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/reviews/seo_content_review.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_reviews_seo_content_review", - "target": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/reviews/seo_content_review.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content", - "target": "ai_agency_specs_reviews_seo_content_review_overview_content_foundation", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/reviews/seo_content_review.md", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content", - "target": "ai_agency_specs_reviews_seo_content_review_seo_content_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/reviews/ux_review.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_reviews_ux_review", - "target": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".ai_agency/specs/reviews/ux_review.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa", - "target": "ai_agency_specs_reviews_ux_review_persona_experience_alignment", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/instructions.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_instructions", - "target": "antigravity_instructions_graphify", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify", - "target": "antigravity_workflows_graphify_graphify", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_usage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_what_graphify_is_for", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L681", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_interpreter_guard_for_subcommands", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L701", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_for_update_and_cluster_only", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L707", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_for_graphify_query", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L719", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_for_graphify_add_and_watch", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L725", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_for_the_commit_hook_and_native_claude_md_integration", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L731", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_troubleshooting", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L744", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_graphify", - "target": "antigravity_workflows_graphify_honesty_rules", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L192", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", - "target": "antigravity_workflows_graphify_part_a_structural_extraction_for_code_files", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L218", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", - "target": "antigravity_workflows_graphify_part_b_semantic_extraction_parallel_subagents", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L381", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", - "target": "antigravity_workflows_graphify_part_c_merge_ast_semantic_into_final_extraction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L733", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_troubleshooting", - "target": "antigravity_workflows_graphify_powershell_5_1_vertical_scrolling_stops_working", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L129", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_2_detect_files", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L169", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_2_5_video_and_audio_only_if_video_files_detected", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L173", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L415", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_4_build_graph_cluster_analyze_generate_outputs", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L478", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_4_5_graph_health_check_read_only_integrity_gate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L504", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_5_label_communities", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L553", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_6_generate_obsidian_vault_opt_in_html", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L573", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L579", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_9_save_manifest_update_cost_tracker_clean_up_and_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".antigravity/workflows/graphify.md", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "antigravity_workflows_graphify_what_you_must_do_when_invoked", - "target": "antigravity_workflows_graphify_step_1_ensure_graphify_is_installed", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/nest-cli.json", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_nest_cli", - "target": "backend_nest_cli_schema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/nest-cli.json", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_nest_cli", - "target": "backend_nest_cli_collection", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/nest-cli.json", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_nest_cli", - "target": "backend_nest_cli_sourceroot", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/nest-cli.json", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_nest_cli", - "target": "backend_nest_cli_compileroptions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/nest-cli.json", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_nest_cli_compileroptions", - "target": "backend_nest_cli_compileroptions_deleteoutdir", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package", - "target": "backend_package_name", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package", - "target": "backend_package_dependencies", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package", - "target": "backend_package_version", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package", - "target": "backend_package_description", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package", - "target": "backend_package_devdependencies", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package", - "target": "backend_package_author", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package", - "target": "backend_package_private", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package", - "target": "backend_package_license", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L79", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package", - "target": "backend_package_jest", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package", - "target": "backend_package_scripts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L96", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package", - "target": "backend_package_prisma", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_common", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_core", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_jwt", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_passport", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_platform_express", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_swagger", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_nestjs_throttler", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_prisma_client", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_bcrypt", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_bcryptjs", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_class_transformer", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_class_validator", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_compression", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_helmet", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_ioredis", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_js_yaml", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_passport", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_passport_jwt", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_reflect_metadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_rxjs", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_swagger_ui_express", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_eslint_eslintrc", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_eslint_js", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L50", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_nestjs_cli", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_nestjs_schematics", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_nestjs_testing", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L53", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_bcrypt", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_bcryptjs", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_compression", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L56", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_express", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L57", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_jest", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_js_yaml", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L59", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_multer", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L60", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_node", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_passport_jwt", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L62", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_supertest", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L63", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_eslint", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L64", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_eslint_config_prettier", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_eslint_plugin_prettier", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L66", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_globals", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L67", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_jest", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L68", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_prettier", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L69", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_prisma", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L70", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_source_map_support", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L71", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_supertest", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L72", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_ts_jest", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L73", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_ts_loader", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L74", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_ts_node", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L75", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_tsconfig_paths", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L76", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_typescript", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L77", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_typescript_eslint", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L80", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_jest", - "target": "backend_package_jest_modulefileextensions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L85", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_jest", - "target": "backend_package_jest_rootdir", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L86", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_jest", - "target": "backend_package_jest_testregex", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L87", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_jest", - "target": "backend_package_jest_transform", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L90", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_jest", - "target": "backend_package_jest_collectcoveragefrom", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L93", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_jest", - "target": "backend_package_jest_coveragedirectory", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L94", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_jest", - "target": "backend_package_jest_testenvironment", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L88", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_jest_transform", - "target": "backend_package_transform_t_j_s", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L97", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_prisma", - "target": "backend_package_prisma_seed", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_scripts", - "target": "backend_package_scripts_build_nest", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_scripts", - "target": "backend_package_scripts_start", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_scripts", - "target": "backend_package_scripts_start_dev", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_scripts", - "target": "backend_package_scripts_start_debug", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_scripts", - "target": "backend_package_scripts_start_prod", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_scripts", - "target": "backend_package_scripts_lint", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_scripts", - "target": "backend_package_scripts_test", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_scripts", - "target": "backend_package_scripts_test_watch", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_scripts", - "target": "backend_package_scripts_test_cov", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_scripts", - "target": "backend_package_scripts_test_debug", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_scripts", - "target": "backend_package_scripts_test_e2e", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_scripts", - "target": "backend_package_scripts_docs_generate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_scripts", - "target": "backend_package_scripts_seo_backfill", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_package_scripts", - "target": "backend_package_scripts_build", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L103", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L111", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_reminders", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L124", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L134", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_health_logs", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L148", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_coupons", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L159", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_orders", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L173", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_order_items", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_user_addresses", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_users", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_products", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L71", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L79", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L87", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration", - "target": "backend_prisma_migrations_20260526145407_init_migration_pets", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration", - "target": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_scientific_terms", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration", - "target": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_ui_texts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/scientificTerms.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_scientificterms", - "target": "backend_prisma_scientificterms_scientificterm", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/scientificTerms.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_scientificterms", - "target": "backend_prisma_scientificterms_scientific_terms", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed", - "target": "backend_prisma_seed_main", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed", - "target": "backend_prisma_seed_prisma", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-blogs.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_blogs", - "target": "backend_prisma_seed_blogs_prisma", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-blogs.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_blogs", - "target": "backend_prisma_seed_blogs_main", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-custom.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_custom", - "target": "backend_prisma_seed_custom_prisma", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-custom.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_custom", - "target": "backend_prisma_seed_custom_main", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-home.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_home", - "target": "backend_prisma_seed_home_prisma", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-home.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_home", - "target": "backend_prisma_seed_home_main", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L128", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_findorcreatecategory", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L148", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_product_symptoms_map", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_determinesuitablefor", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L208", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_product_taglines_map", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L268", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_main", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_parsesize", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_getproductimageurl", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_prisma", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-products.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_products", - "target": "backend_prisma_seed_products_slugify", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-ui-texts.ts", - "source_location": "L135", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_ui_texts", - "target": "backend_prisma_seed_ui_texts_main", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-ui-texts.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_ui_texts", - "target": "backend_prisma_seed_ui_texts_prisma", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-ui-texts.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_ui_texts", - "target": "backend_prisma_seed_ui_texts_ui_texts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-wiki.ts", - "source_location": "L370", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_wiki", - "target": "backend_prisma_seed_wiki_main", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-wiki.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_wiki", - "target": "backend_prisma_seed_wiki_prisma", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/seed-wiki.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_seed_wiki", - "target": "backend_prisma_seed_wiki_canonical_wiki_terms", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_tsconfig", - "target": "backend_prisma_tsconfig_compileroptions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_tsconfig", - "target": "backend_prisma_tsconfig_include", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_tsconfig_compileroptions", - "target": "backend_prisma_tsconfig_compileroptions_module", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_tsconfig_compileroptions", - "target": "backend_prisma_tsconfig_compileroptions_moduleresolution", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_tsconfig_compileroptions", - "target": "backend_prisma_tsconfig_compileroptions_esmoduleinterop", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_tsconfig_compileroptions", - "target": "backend_prisma_tsconfig_compileroptions_skiplibcheck", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.json", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_tsconfig_compileroptions", - "target": "backend_prisma_tsconfig_compileroptions_types", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_tsconfig_seed", - "target": "backend_prisma_tsconfig_seed_compileroptions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_tsconfig_seed", - "target": "backend_prisma_tsconfig_seed_include", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_tsconfig_seed_compileroptions", - "target": "backend_prisma_tsconfig_seed_compileroptions_module", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_tsconfig_seed_compileroptions", - "target": "backend_prisma_tsconfig_seed_compileroptions_moduleresolution", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_tsconfig_seed_compileroptions", - "target": "backend_prisma_tsconfig_seed_compileroptions_esmoduleinterop", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_tsconfig_seed_compileroptions", - "target": "backend_prisma_tsconfig_seed_compileroptions_skiplibcheck", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/tsconfig.seed.json", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_tsconfig_seed_compileroptions", - "target": "backend_prisma_tsconfig_seed_compileroptions_types", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/README.md", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_readme", - "target": "backend_readme_description", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/README.md", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "backend_readme", - "target": "backend_readme_project_setup", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/README.md", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "backend_readme", - "target": "backend_readme_compile_and_run_the_project", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/README.md", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "backend_readme", - "target": "backend_readme_run_tests", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/README.md", - "source_location": "L60", - "weight": 1.0, - "_origin": "ast", - "source": "backend_readme", - "target": "backend_readme_deployment", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/README.md", - "source_location": "L73", - "weight": 1.0, - "_origin": "ast", - "source": "backend_readme", - "target": "backend_readme_resources", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/README.md", - "source_location": "L86", - "weight": 1.0, - "_origin": "ast", - "source": "backend_readme", - "target": "backend_readme_support", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/README.md", - "source_location": "L90", - "weight": 1.0, - "_origin": "ast", - "source": "backend_readme", - "target": "backend_readme_stay_in_touch", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/README.md", - "source_location": "L96", - "weight": 1.0, - "_origin": "ast", - "source": "backend_readme", - "target": "backend_readme_license", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_core_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_app_module_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_swagger_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_fs", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_path", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_yaml", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-openapi.js", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi_generateopenapi", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-openapi.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi", - "target": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi_generateopenapi", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/seo-backfill.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_scripts_seo_backfill", - "target": "backend_scripts_seo_backfill_prisma", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/seo-backfill.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_scripts_seo_backfill", - "target": "backend_scripts_seo_backfill_striphtml", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/seo-backfill.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_scripts_seo_backfill", - "target": "backend_scripts_seo_backfill_runseobackfill", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller", - "target": "backend_src_admin_admin_controller_admincontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.module.ts", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_module", - "target": "backend_src_admin_admin_module_adminmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_admin_service_paginationquery", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_admin_service_coupontargetinput", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_admin_service_couponinput", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service", - "target": "backend_src_admin_admin_service_adminservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller", - "target": "backend_src_admin_blogs_controller_blogscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service", - "target": "backend_src_admin_blogs_service_blogsservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller", - "target": "backend_src_admin_categories_controller_categoriescontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_service", - "target": "backend_src_admin_categories_service_categoriesservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_service", - "target": "backend_src_admin_categories_service_categoryquery", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/admin-query.dto.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_dto_admin_query_dto", - "target": "backend_src_admin_dto_admin_query_dto_adminquerydto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/product.dto.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_dto_product_dto", - "target": "backend_src_admin_dto_product_dto_productdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_dto_user_dto", - "target": "backend_src_admin_dto_user_dto_createuserdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/dto/user.dto.ts", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_dto_user_dto", - "target": "backend_src_admin_dto_user_dto_updateuserdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_controller", - "target": "backend_src_admin_media_controller_mediacontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_service", - "target": "backend_src_admin_media_service_mediaservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_controller", - "target": "backend_src_admin_pets_controller_petscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_service", - "target": "backend_src_admin_pets_service_petsservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_service", - "target": "backend_src_admin_pets_service_petquery", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_reports_controller", - "target": "backend_src_admin_reports_controller_reportscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_reports_service", - "target": "backend_src_admin_reports_service_reportsservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller", - "target": "backend_src_admin_ssl_controller_sslcontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_service", - "target": "backend_src_admin_ssl_service_sslservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_service", - "target": "backend_src_admin_ssl_service_sslcertinfo", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_controller", - "target": "backend_src_admin_wiki_controller_wikicontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_service", - "target": "backend_src_admin_wiki_service_wikiservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_service", - "target": "backend_src_admin_wiki_service_wikiquery", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.controller.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_controller", - "target": "backend_src_app_controller_appcontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L89", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module", - "target": "backend_src_app_module_appmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_service", - "target": "backend_src_app_service_appservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.constants.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_constants", - "target": "backend_src_auth_auth_constants_default_jwt_secret", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.constants.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_constants", - "target": "backend_src_auth_auth_constants_getjwtrefreshsecret", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.constants.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_constants", - "target": "backend_src_auth_auth_constants_default_jwt_refresh_secret", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.constants.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_constants", - "target": "backend_src_auth_auth_constants_getjwtsecret", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller", - "target": "backend_src_auth_auth_controller_authcontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.module.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_module", - "target": "backend_src_auth_auth_module_authmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_auth_service_registerinput", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_auth_service_logininput", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_auth_service_adminlogininput", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service", - "target": "backend_src_auth_auth_service_authservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/admin-login.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_dto_admin_login_dto", - "target": "backend_src_auth_dto_admin_login_dto_adminlogindto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/login.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_dto_login_dto", - "target": "backend_src_auth_dto_login_dto_logindto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/register.dto.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_dto_register_dto", - "target": "backend_src_auth_dto_register_dto_registerdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/send-otp.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_dto_send_otp_dto", - "target": "backend_src_auth_dto_send_otp_dto_sendotpdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/dto/verify-otp.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_dto_verify_otp_dto", - "target": "backend_src_auth_dto_verify_otp_dto_verifyotpdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/jwt-auth.guard.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_jwt_auth_guard", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_auth_jwt_strategy_jwtstrategy", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_jwt_strategy", - "target": "backend_src_auth_jwt_strategy_jwtpayload", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.module.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_module", - "target": "backend_src_b2b_b2b_module_b2bmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_service", - "target": "backend_src_b2b_b2b_service_b2bservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_service", - "target": "backend_src_b2b_b2b_service_b2bwholesaleorderitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller", - "target": "backend_src_banners_banners_controller_bannerscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.module.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_module", - "target": "backend_src_banners_banners_module_bannersmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_service", - "target": "backend_src_banners_banners_service_bannersservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller", - "target": "backend_src_blogs_blogs_controller_blogscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.module.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_module", - "target": "backend_src_blogs_blogs_module_blogsmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_service", - "target": "backend_src_blogs_blogs_service_blogsservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_service", - "target": "backend_src_blogs_blogs_service_blogfilterdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/dto/create-blog.dto.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_dto_create_blog_dto", - "target": "backend_src_blogs_dto_create_blog_dto_createblogdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/dto/update-blog.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_dto_update_blog_dto", - "target": "backend_src_blogs_dto_update_blog_dto_updateblogdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/entities/blog.entity.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_entities_blog_entity", - "target": "backend_src_blogs_entities_blog_entity_blog", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller", - "target": "backend_src_cms_cms_controller_cmscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.module.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_module", - "target": "backend_src_cms_cms_module_cmsmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service", - "target": "backend_src_cms_cms_service_cmsservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto", - "target": "backend_src_cms_dto_cms_dto_createherobannerdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto", - "target": "backend_src_cms_dto_cms_dto_createvettestimonialdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/dto/cms.dto.ts", - "source_location": "L80", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_dto_cms_dto", - "target": "backend_src_cms_dto_cms_dto_createsmartadvisorruledto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/decorators/roles.decorator.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_decorators_roles_decorator", - "target": "backend_src_common_decorators_roles_decorator_roles_key", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/decorators/roles.decorator.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_decorators_roles_decorator", - "target": "backend_src_common_decorators_roles_decorator_roles", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_dto_pagination_dto", - "target": "backend_src_common_dto_pagination_dto_paginationdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/dto/pagination.dto.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_dto_pagination_dto", - "target": "backend_src_common_dto_pagination_dto_sortorder", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_filters_http_exception_filter", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/filters/prisma-exception.filter.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_filters_prisma_exception_filter", - "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_guards_roles_guard", - "target": "backend_src_common_guards_roles_guard_requestwithuser", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_guards_roles_guard", - "target": "backend_src_common_guards_roles_guard_rolesguard", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_interceptors_decimal_interceptor", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_metrics_controller", - "target": "backend_src_common_metrics_controller_metricscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.module.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_module", - "target": "backend_src_common_revalidation_revalidation_module_revalidationmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_service", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/schemas/error-response.schema.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_schemas_error_response_schema", - "target": "backend_src_common_schemas_error_response_schema_apierrorresponse", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/schemas/error-response.schema.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_schemas_error_response_schema", - "target": "backend_src_common_schemas_error_response_schema_errordetailfield", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/schemas/paginated-response.schema.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_schemas_paginated_response_schema", - "target": "backend_src_common_schemas_paginated_response_schema_paginatedresponse", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/schemas/paginated-response.schema.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_schemas_paginated_response_schema", - "target": "backend_src_common_schemas_paginated_response_schema_createpaginatedschema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/schemas/paginated-response.schema.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_schemas_paginated_response_schema", - "target": "backend_src_common_schemas_paginated_response_schema_paginationmeta", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_smsconfig", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_melipayamakpattern", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_smslogquery", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_melipayamakresponse", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_smsservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service", - "target": "backend_src_common_services_sms_service_sendpatternsmsoptions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/sms.module.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_sms_module", - "target": "backend_src_common_sms_module_smsmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/utils/phone.utils.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_utils_phone_utils", - "target": "backend_src_common_utils_phone_utils_normalizemobile", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller", - "target": "backend_src_contact_contact_controller_contactcontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.module.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_module", - "target": "backend_src_contact_contact_module_contactmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_service", - "target": "backend_src_contact_contact_service_updatecontactinfoitemdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_service", - "target": "backend_src_contact_contact_service_contactservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_service", - "target": "backend_src_contact_contact_service_createcontactsubmissiondto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller", - "target": "backend_src_doctors_doctors_controller_doctorscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.module.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_module", - "target": "backend_src_doctors_doctors_module_doctorsmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_service", - "target": "backend_src_doctors_doctors_service_doctorsservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/dto/doctor-query.dto.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_dto_doctor_query_dto", - "target": "backend_src_doctors_dto_doctor_query_dto_doctorquerydto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_controller", - "target": "backend_src_faq_faq_controller_faqcontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.module.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_module", - "target": "backend_src_faq_faq_module_faqmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_service", - "target": "backend_src_faq_faq_service_faqservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/dto/create-home.dto.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_dto_create_home_dto", - "target": "backend_src_home_dto_create_home_dto_createhomedto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/dto/update-home.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_dto_update_home_dto", - "target": "backend_src_home_dto_update_home_dto_updatehomedto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/entities/home.entity.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_entities_home_entity", - "target": "backend_src_home_entities_home_entity_home", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_home_controller", - "target": "backend_src_home_home_controller_homecontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.module.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_home_module", - "target": "backend_src_home_home_module_homemodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_home_service", - "target": "backend_src_home_home_service_homeservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.module.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_module", - "target": "backend_src_ingredients_ingredients_module_ingredientsmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_service", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/main.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_main", - "target": "backend_src_main_bootstrap", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller", - "target": "backend_src_menu_menu_controller_menucontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.module.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_module", - "target": "backend_src_menu_menu_module_menumodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_service", - "target": "backend_src_menu_menu_service_menutype", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_service", - "target": "backend_src_menu_menu_service_menuservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_dto_create_order_dto", - "target": "backend_src_orders_dto_create_order_dto_orderitemdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/dto/create-order.dto.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_dto_create_order_dto", - "target": "backend_src_orders_dto_create_order_dto_createorderdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_orders_controller_validatecoupondto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller", - "target": "backend_src_orders_orders_controller_orderscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.module.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_module", - "target": "backend_src_orders_orders_module_ordersmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service", - "target": "backend_src_orders_orders_service_ordersservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/admin-transaction-filter.dto.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_dto_admin_transaction_filter_dto", - "target": "backend_src_payment_dto_admin_transaction_filter_dto_admintransactionfilterdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/ebank-checkout.dto.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_dto_ebank_checkout_dto", - "target": "backend_src_payment_dto_ebank_checkout_dto_createebankcheckoutdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_dto_initiate_payment_dto", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatewallettopupdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/initiate-payment.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_dto_initiate_payment_dto", - "target": "backend_src_payment_dto_initiate_payment_dto_initiatepaymentdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/dto/verify-payment.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_dto_verify_payment_dto", - "target": "backend_src_payment_dto_verify_payment_dto_zibalcallbackquerydto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestoptions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentverifyresult", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentinquiryresult", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_gatewayhealthresult", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_interfaces_payment_gateway_interface", - "target": "backend_src_payment_interfaces_payment_gateway_interface_paymentrequestresult", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller", - "target": "backend_src_payment_payment_controller_paymentcontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.module.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_module", - "target": "backend_src_payment_payment_module_paymentmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service", - "target": "backend_src_payment_payment_service_clientmetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service", - "target": "backend_src_payment_payment_service_paymentservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service", - "target": "backend_src_payment_zibal_ebank_service_ebankcheckoutlistfilter", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service", - "target": "backend_src_payment_zibal_ebank_service_ebankstatementfilter", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service", - "target": "backend_src_payment_zibal_ebank_service_ebankidentifiedpaymentfilter", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service", - "target": "backend_src_payment_zibal_ebank_service_ebankcheckoutoptions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_zibal_service_zibalrequestresponse", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_zibal_service_zibalverifyresponse", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_zibal_service_zibalinquiryresponse", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service", - "target": "backend_src_payment_zibal_service_zibalservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-health-log.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_dto_create_health_log_dto", - "target": "backend_src_pets_dto_create_health_log_dto_createhealthlogdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-pet.dto.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_dto_create_pet_dto", - "target": "backend_src_pets_dto_create_pet_dto_createpetdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/create-reminder.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_dto_create_reminder_dto", - "target": "backend_src_pets_dto_create_reminder_dto_createreminderdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/dto/update-pet.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_dto_update_pet_dto", - "target": "backend_src_pets_dto_update_pet_dto_updatepetdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller", - "target": "backend_src_pets_pets_controller_petscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.module.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_module", - "target": "backend_src_pets_pets_module_petsmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_pets_service_healthloginput", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_pets_service_petsservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service", - "target": "backend_src_pets_pets_service_reminderinput", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_prescriptions_prescriptions_controller_userreqpayload", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller", - "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.module.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_module", - "target": "backend_src_prescriptions_prescriptions_module_prescriptionsmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_service", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/prisma/prisma.module.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prisma_prisma_module", - "target": "backend_src_prisma_prisma_module_prismamodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prisma_prisma_service", - "target": "backend_src_prisma_prisma_service_prismaservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/dto/get-products.dto.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_dto_get_products_dto", - "target": "backend_src_products_dto_get_products_dto_getproductsdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller", - "target": "backend_src_products_products_controller_productscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.module.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_module", - "target": "backend_src_products_products_module_productsmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service", - "target": "backend_src_products_products_service_productsservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/redis/redis.module.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_redis_redis_module", - "target": "backend_src_redis_redis_module_redismodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_redis_redis_service", - "target": "backend_src_redis_redis_service_redisservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/dto/create-review.dto.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_dto_create_review_dto", - "target": "backend_src_reviews_dto_create_review_dto_createreviewdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/dto/update-review.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_dto_update_review_dto", - "target": "backend_src_reviews_dto_update_review_dto_updatereviewdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.module.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_module", - "target": "backend_src_reviews_reviews_module_reviewsmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service", - "target": "backend_src_reviews_reviews_service_reviewsservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_controller", - "target": "backend_src_seo_seo_controller_seocontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.module.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_module", - "target": "backend_src_seo_seo_module_seomodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_service", - "target": "backend_src_seo_seo_service_seoservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/default-ui-texts.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_default_ui_texts", - "target": "backend_src_settings_default_ui_texts_default_ui_texts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/dto/sms-log-query.dto.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_dto_sms_log_query_dto", - "target": "backend_src_settings_dto_sms_log_query_dto_smslogquerydto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller", - "target": "backend_src_settings_settings_controller_settingscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.module.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_module", - "target": "backend_src_settings_settings_module_settingsmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service", - "target": "backend_src_settings_settings_service_canonical_aliases", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L145", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service", - "target": "backend_src_settings_settings_service_settingsservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service", - "target": "backend_src_settings_settings_service_scientifictermdata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller", - "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_module", - "target": "backend_src_smart_advisor_smart_advisor_module_smartadvisormodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_service", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.module.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_module", - "target": "backend_src_testimonials_testimonials_module_testimonialsmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_service", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_dto_create_ticket_dto", - "target": "backend_src_tickets_dto_create_ticket_dto_createticketdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L59", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_dto_create_ticket_dto", - "target": "backend_src_tickets_dto_create_ticket_dto_replyticketdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/create-ticket.dto.ts", - "source_location": "L82", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_dto_create_ticket_dto", - "target": "backend_src_tickets_dto_create_ticket_dto_adminupdateticketdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/dto/ticket-query.dto.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_dto_ticket_query_dto", - "target": "backend_src_tickets_dto_ticket_query_dto_ticketquerydto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.module.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_module", - "target": "backend_src_tickets_tickets_module_ticketsmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service", - "target": "backend_src_tickets_tickets_service_ticketsservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/dto/address.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_dto_address_dto", - "target": "backend_src_users_dto_address_dto_addressdto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/dto/update-profile.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_dto_update_profile_dto", - "target": "backend_src_users_dto_update_profile_dto_updateprofiledto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller", - "target": "backend_src_users_users_controller_userscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.module.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_module", - "target": "backend_src_users_users_module_usersmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service", - "target": "backend_src_users_users_service_useraddressinput", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service", - "target": "backend_src_users_users_service_usersservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/dto/create-video.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_dto_create_video_dto", - "target": "backend_src_videos_dto_create_video_dto_createvideodto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/dto/create-video.dto.ts", - "source_location": "L63", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_dto_create_video_dto", - "target": "backend_src_videos_dto_create_video_dto_updatevideodto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_dto_get_videos_query_dto", - "target": "backend_src_videos_dto_get_videos_query_dto_getvideosquerydto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller", - "target": "backend_src_videos_videos_controller_videoscontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.module.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_module", - "target": "backend_src_videos_videos_module_videosmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_service", - "target": "backend_src_videos_videos_service_videosservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_service", - "target": "backend_src_videos_videos_service_videoquery", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/dto/wholesale-apply.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_dto_wholesale_apply_dto", - "target": "backend_src_wholesale_dto_wholesale_apply_dto_wholesaleapplydto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller", - "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.module.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_module", - "target": "backend_src_wholesale_wholesale_module_wholesalemodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_service", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/dto/create-wiki.dto.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_dto_create_wiki_dto", - "target": "backend_src_wiki_dto_create_wiki_dto_createwikidto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_dto_update_wiki_dto", - "target": "backend_src_wiki_dto_update_wiki_dto_updatewikidto", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/entities/wiki.entity.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_entities_wiki_entity", - "target": "backend_src_wiki_entities_wiki_entity_wiki", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller", - "target": "backend_src_wiki_wiki_controller_wikicontroller", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.module.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_module", - "target": "backend_src_wiki_wiki_module_wikimodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_service", - "target": "backend_src_wiki_wiki_service_wikiservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", - "target": "backend_test_app_audit_verification_e2e_spec_testing_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", - "target": "backend_test_app_audit_verification_e2e_spec_common_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", - "target": "backend_test_app_audit_verification_e2e_spec_supertest_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", - "target": "backend_test_app_audit_verification_e2e_spec_app_module_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", - "target": "backend_test_app_audit_verification_e2e_spec_jwt_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", - "target": "backend_test_app_audit_verification_e2e_spec_client_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", - "target": "backend_test_app_audit_verification_e2e_spec_http_exception_filter_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", - "target": "backend_test_app_audit_verification_e2e_spec_prisma_exception_filter_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", - "target": "backend_test_app_audit_verification_e2e_spec_decimal_interceptor_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", - "target": "backend_test_app_audit_verification_e2e_spec_fs", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/test/app-audit-verification.e2e-spec.js", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", - "target": "backend_test_app_audit_verification_e2e_spec_path", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/test/app.e2e-spec.js", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_e2e_spec_js_backend_test_app_e2e_spec", - "target": "backend_test_app_e2e_spec_testing_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/test/app.e2e-spec.js", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_e2e_spec_js_backend_test_app_e2e_spec", - "target": "backend_test_app_e2e_spec_supertest_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/test/app.e2e-spec.js", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_test_app_e2e_spec_js_backend_test_app_e2e_spec", - "target": "backend_test_app_e2e_spec_app_module_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig", - "target": "backend_tsconfig_compileroptions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig", - "target": "backend_tsconfig_include", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig", - "target": "backend_tsconfig_exclude", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.build.json", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_build", - "target": "backend_tsconfig_build_extends", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.build.json", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_build", - "target": "backend_tsconfig_build_exclude", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_emitdecoratormetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_experimentaldecorators", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_target", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_sourcemap", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_outdir", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_rootdir", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_baseurl", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_incremental", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_skiplibcheck", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_strictnullchecks", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_noimplicitany", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_strictbindcallapply", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_module", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_moduleresolution", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_resolvepackagejsonexports", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_esmoduleinterop", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_isolatedmodules", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_declaration", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_removecomments", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "CLAUDE.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "claude", - "target": "claude_graphify", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/CLAUDE.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "claude_claude", - "target": "claude_claude_graphify", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/add-watch.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_add_watch", - "target": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/add-watch.md", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder", - "target": "claude_skills_graphify_references_add_watch_for_watch", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/add-watch.md", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder", - "target": "claude_skills_graphify_references_add_watch_for_graphify_add", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_exports", - "target": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "target": "claude_skills_graphify_references_exports_step_7_neo4j_export_only_if_neo4j_or_neo4j_push_flag", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "target": "claude_skills_graphify_references_exports_step_7a_falkordb_export_only_if_falkordb_or_falkordb_push_flag", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "target": "claude_skills_graphify_references_exports_step_7b_svg_export_only_if_svg_flag", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "target": "claude_skills_graphify_references_exports_step_6b_wiki_only_if_wiki_flag", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L53", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "target": "claude_skills_graphify_references_exports_step_7c_graphml_export_only_if_graphml_flag", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L59", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "target": "claude_skills_graphify_references_exports_step_7d_mcp_server_only_if_mcp_flag", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/exports.md", - "source_location": "L79", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", - "target": "claude_skills_graphify_references_exports_step_8_token_reduction_benchmark_only_if_total_words_5000", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/extraction-spec.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_extraction_spec", - "target": "claude_skills_graphify_references_extraction_spec_graphify_reference_extraction_subagent_prompt", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/github-and-merge.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_github_and_merge", - "target": "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/github-and-merge.md", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge", - "target": "claude_skills_graphify_references_github_and_merge_step_0_clone_github_repo_s_only_if_a_github_url_was_given", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/hooks.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_hooks", - "target": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/hooks.md", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration", - "target": "claude_skills_graphify_references_hooks_for_native_claude_md_integration", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/hooks.md", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration", - "target": "claude_skills_graphify_references_hooks_for_git_commit_hook", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/query.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_query", - "target": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/query.md", - "source_location": "L186", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", - "target": "claude_skills_graphify_references_query_for_graphify_path", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/query.md", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", - "target": "claude_skills_graphify_references_query_step_0_constrained_query_expansion_required_before_traversal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/query.md", - "source_location": "L254", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", - "target": "claude_skills_graphify_references_query_for_graphify_explain", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/query.md", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", - "target": "claude_skills_graphify_references_query_step_1_traversal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/transcribe.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_transcribe", - "target": "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/transcribe.md", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio", - "target": "claude_skills_graphify_references_transcribe_step_2_5_transcribe_video_audio_files_only_if_video_files_detected", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/update.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_update", - "target": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/update.md", - "source_location": "L202", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only", - "target": "claude_skills_graphify_references_update_for_cluster_only", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/references/update.md", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only", - "target": "claude_skills_graphify_references_update_for_update_incremental_re_extraction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill", - "target": "claude_skills_graphify_skill_graphify", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_usage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_what_graphify_is_for", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L681", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_interpreter_guard_for_subcommands", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L701", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_for_update_and_cluster_only", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L707", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_for_graphify_query", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L719", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_for_graphify_add_and_watch", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L725", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_for_the_commit_hook_and_native_claude_md_integration", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L731", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_troubleshooting", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L744", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_graphify", - "target": "claude_skills_graphify_skill_honesty_rules", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L192", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", - "target": "claude_skills_graphify_skill_part_a_structural_extraction_for_code_files", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L218", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", - "target": "claude_skills_graphify_skill_part_b_semantic_extraction_parallel_subagents", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L381", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", - "target": "claude_skills_graphify_skill_part_c_merge_ast_semantic_into_final_extraction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L733", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_troubleshooting", - "target": "claude_skills_graphify_skill_powershell_5_1_vertical_scrolling_stops_working", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L129", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_2_detect_files", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L169", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_2_5_video_and_audio_only_if_video_files_detected", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L173", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L415", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_4_build_graph_cluster_analyze_generate_outputs", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L478", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_4_5_graph_health_check_read_only_integrity_gate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L504", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_5_label_communities", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L553", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_6_generate_obsidian_vault_opt_in_html", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L573", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L579", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_9_save_manifest_update_cost_tracker_clean_up_and_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".claude/skills/graphify/SKILL.md", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "claude_skills_graphify_skill_what_you_must_do_when_invoked", - "target": "claude_skills_graphify_skill_step_1_ensure_graphify_is_installed", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_04_setup_and_deployment", - "target": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2", - "target": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u06a9_\u0627\u0646\u062f", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2", - "target": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_next_js", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", - "target": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", - "target": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L72", - "weight": 1.0, - "_origin": "ast", - "source": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", - "target": "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode", - "target": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0628\u06a9_\u0627\u0646\u062f", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode", - "target": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode", - "target": "docs_04_setup_and_deployment_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment", - "target": "docs_04_setup_and_deployment_\u0628\u06cc\u0644\u062f_\u06a9\u0631\u062f\u0646_\u067e\u0631\u0648\u0698\u0647_building", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment", - "target": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L64", - "weight": 1.0, - "_origin": "ast", - "source": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment", - "target": "docs_04_setup_and_deployment_\u0630\u062e\u06cc\u0631\u0647_\u067e\u0631\u0648\u0633\u0647_\u0647\u0627_\u062a\u0627_\u067e\u0633_\u0627\u0632_\u0631\u06cc_\u0627\u0633\u062a\u0627\u0631\u062a_\u0633\u0631\u0648\u0631_\u0642\u0637\u0639_\u0646\u0634\u0648\u0646\u062f", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/04-setup-and-deployment.md", - "source_location": "L78", - "weight": 1.0, - "_origin": "ast", - "source": "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy", - "target": "docs_04_setup_and_deployment_\u0646\u0645\u0648\u0646\u0647_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_nginx", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_05_devops_and_monitoring", - "target": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", - "target": "docs_05_devops_and_monitoring_\u06f2_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0639\u0645\u0644\u06a9\u0631\u062f_pm2_dashboard", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", - "target": "docs_05_devops_and_monitoring_\u06f3_\u0628\u0631\u0631\u0633\u06cc_\u0644\u0627\u06af_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645_logs_management", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", - "target": "docs_05_devops_and_monitoring_\u06f4_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_postgresql", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/05-devops-and-monitoring.md", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", - "target": "docs_05_devops_and_monitoring_\u06f1_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0627\u0633\u062a\u0642\u0631\u0627\u0631_\u062e\u0648\u062f\u06a9\u0627\u0631_ci_cd", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/06-testing.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_06_testing", - "target": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/06-testing.md", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", - "target": "docs_06_testing_\u06f2_\u062a\u0633\u062a_\u0647\u0627\u06cc_end_to_end_\u062f\u0631_backend_e2e_testing", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/06-testing.md", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", - "target": "docs_06_testing_\u06f3_\u062a\u0633\u062a_\u0647\u0627\u06cc_ui_\u062f\u0631_frontend_component_testing", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/06-testing.md", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", - "target": "docs_06_testing_\u06f4_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u062f\u0631_frontend_e2e_frontend_playwright_cypress", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/06-testing.md", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", - "target": "docs_06_testing_\u06f5_\u0686\u06a9_\u0644\u06cc\u0633\u062a_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u062f\u0633\u062a\u06cc_manual_qa_checklist", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/06-testing.md", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", - "target": "docs_06_testing_\u06f1_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0648\u0627\u062d\u062f_\u062f\u0631_backend_unit_testing", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_00_repository_map", - "target": "docs_audit_00_repository_map_repository_map", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_00_repository_map_active_applications_non_auditable_scopes", - "target": "docs_audit_00_repository_map_1_active_customer_storefront_react_19_vite_application", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_00_repository_map_active_applications_non_auditable_scopes", - "target": "docs_audit_00_repository_map_2_active_backend_service_nestjs_application", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_00_repository_map_active_applications_non_auditable_scopes", - "target": "docs_audit_00_repository_map_3_excluded_placeholder_non_auditable_directories", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_00_repository_map_repository_map", - "target": "docs_audit_00_repository_map_active_applications_non_auditable_scopes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_00_repository_map_repository_map", - "target": "docs_audit_00_repository_map_repository_structure_overview", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_00_repository_map_repository_map", - "target": "docs_audit_00_repository_map_mandatory_global_audit_exclusions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L50", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_00_repository_map_repository_map", - "target": "docs_audit_00_repository_map_important_configuration_infrastructure_files", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/00-repository-map.md", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_00_repository_map_repository_map", - "target": "docs_audit_00_repository_map_documentation_governance", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_01_system_discovery", - "target": "docs_audit_01_system_discovery_system_discovery", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_01_system_discovery_current_architecture", - "target": "docs_audit_01_system_discovery_excluded_non_auditable_artifacts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_01_system_discovery_current_architecture", - "target": "docs_audit_01_system_discovery_active_core_applications", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_01_system_discovery_system_discovery", - "target": "docs_audit_01_system_discovery_major_business_domains_discovered", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_01_system_discovery_system_discovery", - "target": "docs_audit_01_system_discovery_technical_architecture_summary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_01_system_discovery_system_discovery", - "target": "docs_audit_01_system_discovery_current_architecture", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/01-system-discovery.md", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_01_system_discovery_system_discovery", - "target": "docs_audit_01_system_discovery_evidence_based_status_matrix", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_02_audit_plan", - "target": "docs_audit_02_audit_plan_audit_plan_subagent_roles", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_02_audit_plan_audit_plan_subagent_roles", - "target": "docs_audit_02_audit_plan_mandatory_global_audit_exclusions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_02_audit_plan_audit_plan_subagent_roles", - "target": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_02_audit_plan_audit_plan_subagent_roles", - "target": "docs_audit_02_audit_plan_subagent_execution_mode", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L80", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_02_audit_plan_audit_plan_subagent_roles", - "target": "docs_audit_02_audit_plan_strategy_for_deduplication_consolidation", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_1_lead_architect_orchestrator", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_2_react_vite_storefront_auditor", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_3_nestjs_backend_auditor", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_4_admin_features_auditor", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_5_database_data_integrity_auditor", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L53", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_6_security_auditor", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_7_typescript_code_quality_auditor", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L63", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_8_testing_reliability_auditor", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L68", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_9_devops_ci_cd_auditor", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/02-audit-plan.md", - "source_location": "L73", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments", - "target": "docs_audit_02_audit_plan_10_documentation_engineer", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/03-baseline-command-plan.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_03_baseline_command_plan", - "target": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/03-baseline-command-plan.md", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", - "target": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/03-baseline-command-plan.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", - "target": "docs_audit_03_baseline_command_plan_attempted_command_execution_log", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/03-baseline-command-plan.md", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", - "target": "docs_audit_03_baseline_command_plan_permitted_safe_checks_for_phase_2", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/03-baseline-command-plan.md", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis", - "target": "docs_audit_03_baseline_command_plan_root_package_json_scripts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/03-baseline-command-plan.md", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis", - "target": "docs_audit_03_baseline_command_plan_backend_backend_package_json_scripts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/04-open-questions.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_04_open_questions", - "target": "docs_audit_04_open_questions_open_questions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/04-open-questions.md", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_04_open_questions_open_questions", - "target": "docs_audit_04_open_questions_3_deployment_ci_cd_pipeline_specifications", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/04-open-questions.md", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_04_open_questions_open_questions", - "target": "docs_audit_04_open_questions_4_sms_otp_service_provider", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/04-open-questions.md", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_04_open_questions_open_questions", - "target": "docs_audit_04_open_questions_1_storefront_migration_roadmap_frontend_application", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/04-open-questions.md", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_04_open_questions_open_questions", - "target": "docs_audit_04_open_questions_2_payment_gateway_integration_provider", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit", - "target": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_domain", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_category", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_severity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_confidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_status", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_affected_application", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_affected_files", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_relevant_symbols_or_lines", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_evidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L57", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_problem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L60", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_root_cause", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L63", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_why_it_matters", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L66", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_user_or_business_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L69", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_technical_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L72", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_security_or_data_integrity_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L75", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_recommended_direction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L78", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_alternative_direction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L81", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_implementation_complexity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L84", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_dependencies", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L87", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_risks", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L90", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_verification_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L93", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_testing_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L96", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_acceptance_criteria", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L99", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_fe_001", - "target": "docs_audit_06_storefront_audit_notes_and_limitations", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L104", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "target": "docs_audit_06_storefront_audit_finding_summary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L116", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "target": "docs_audit_06_storefront_audit_completion_statement", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "target": "docs_audit_06_storefront_audit_architecture_overview_confirmed_strengths", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "target": "docs_audit_06_storefront_audit_findings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/06-storefront-audit.md", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report", - "target": "docs_audit_06_storefront_audit_fe_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit", - "target": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L101", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_dependencies", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L104", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_risks", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L107", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_verification_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L110", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_testing_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L113", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_acceptance_criteria", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L116", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_notes_and_limitations", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_domain", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_category", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_severity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_confidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L50", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_status", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L53", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_affected_application", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L56", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_affected_files", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L59", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_relevant_symbols_or_lines", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L62", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_evidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L73", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_problem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L77", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_root_cause", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L80", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_why_it_matters", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L83", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_user_or_business_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L86", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_technical_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L89", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_security_or_data_integrity_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L92", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_recommended_direction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L95", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_alternative_direction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L98", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_be_001", - "target": "docs_audit_07_backend_audit_implementation_complexity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L121", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_finding_summary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L133", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_completion_statement", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_domain_overview_confirmed_strengths", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_evaluation_of_6_existing_typescript_compiler_diagnostics", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_findings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/07-backend-audit.md", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_07_backend_audit_nestjs_backend_audit_report", - "target": "docs_audit_07_backend_audit_be_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit", - "target": "docs_audit_08_admin_features_audit_admin_features_audit_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L101", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_acceptance_criteria", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L104", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_notes_and_limitations", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_domain", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_category", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_severity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_confidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_status", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_affected_application", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_affected_files", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_relevant_symbols_or_lines", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L53", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_evidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L62", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_problem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_root_cause", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L68", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_why_it_matters", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L71", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_user_or_business_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L74", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_technical_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L77", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_security_or_data_integrity_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L80", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_recommended_direction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L83", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_alternative_direction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L86", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_implementation_complexity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L89", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_dependencies", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L92", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_risks", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L95", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_verification_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L98", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_adm_001", - "target": "docs_audit_08_admin_features_audit_testing_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L109", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_admin_features_audit_report", - "target": "docs_audit_08_admin_features_audit_finding_summary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L121", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_admin_features_audit_report", - "target": "docs_audit_08_admin_features_audit_completion_statement", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_admin_features_audit_report", - "target": "docs_audit_08_admin_features_audit_domain_overview_confirmed_strengths", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_admin_features_audit_report", - "target": "docs_audit_08_admin_features_audit_findings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/08-admin-features-audit.md", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_08_admin_features_audit_admin_features_audit_report", - "target": "docs_audit_08_admin_features_audit_adm_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit", - "target": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L111", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", - "target": "docs_audit_09_database_audit_finding_summary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L123", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", - "target": "docs_audit_09_database_audit_completion_statement", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", - "target": "docs_audit_09_database_audit_domain_overview_confirmed_strengths", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", - "target": "docs_audit_09_database_audit_findings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", - "target": "docs_audit_09_database_audit_db_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L100", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_testing_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L103", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_acceptance_criteria", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L106", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_notes_and_limitations", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_domain", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_category", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_severity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_confidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_status", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_affected_application", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_affected_files", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_relevant_symbols_or_lines", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_evidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L64", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_problem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L67", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_root_cause", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L70", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_why_it_matters", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L73", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_user_or_business_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L76", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_technical_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L79", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_security_or_data_integrity_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L82", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_recommended_direction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L85", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_alternative_direction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L88", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_implementation_complexity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L91", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_dependencies", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L94", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_risks", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/09-database-audit.md", - "source_location": "L97", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_09_database_audit_db_001", - "target": "docs_audit_09_database_audit_verification_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit", - "target": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L101", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_notes_and_limitations", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_domain", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_category", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_severity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_confidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_status", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_affected_application", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_affected_files", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_relevant_symbols_or_lines", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_evidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L59", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_problem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L62", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_root_cause", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_why_it_matters", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L68", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_user_or_business_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L71", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_technical_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L74", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_security_or_data_integrity_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L77", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_recommended_direction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L80", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_alternative_direction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L83", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_implementation_complexity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L86", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_dependencies", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L89", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_risks", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L92", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_verification_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L95", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_testing_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L98", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_ts_001", - "target": "docs_audit_11_code_quality_audit_acceptance_criteria", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L106", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "target": "docs_audit_11_code_quality_audit_finding_summary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L118", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "target": "docs_audit_11_code_quality_audit_completion_statement", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "target": "docs_audit_11_code_quality_audit_domain_overview_confirmed_strengths", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "target": "docs_audit_11_code_quality_audit_findings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/11-code-quality-audit.md", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report", - "target": "docs_audit_11_code_quality_audit_ts_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit", - "target": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L102", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_acceptance_criteria", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L105", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_notes_and_limitations", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_domain", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_category", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_severity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_confidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_status", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_affected_application", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_affected_files", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L50", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_relevant_symbols_or_lines", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_evidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L63", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_problem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L66", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_root_cause", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L69", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_why_it_matters", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L72", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_user_or_business_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L75", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_technical_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L78", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_security_or_data_integrity_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L81", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_recommended_direction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L84", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_alternative_direction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L87", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_implementation_complexity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L90", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_dependencies", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L93", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_risks", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L96", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_verification_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L99", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_test_001", - "target": "docs_audit_12_testing_audit_testing_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L110", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "target": "docs_audit_12_testing_audit_finding_summary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L122", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "target": "docs_audit_12_testing_audit_completion_statement", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "target": "docs_audit_12_testing_audit_domain_overview_confirmed_strengths", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "target": "docs_audit_12_testing_audit_findings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/12-testing-audit.md", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_12_testing_audit_testing_and_reliability_audit_report", - "target": "docs_audit_12_testing_audit_test_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit", - "target": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_domain", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_category", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_severity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_confidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_status", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_affected_application", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_affected_files", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_relevant_symbols_or_lines", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_evidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_problem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_root_cause", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_why_it_matters", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L64", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_user_or_business_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L67", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_technical_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L70", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_security_or_data_integrity_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L73", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_recommended_direction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L76", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_alternative_direction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L79", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_implementation_complexity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L82", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_dependencies", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L85", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_risks", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L88", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_verification_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L91", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_testing_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L94", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_acceptance_criteria", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L97", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_001", - "target": "docs_audit_13_devops_audit_notes_and_limitations", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L102", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", - "target": "docs_audit_13_devops_audit_finding_summary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L114", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", - "target": "docs_audit_13_devops_audit_completion_statement", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", - "target": "docs_audit_13_devops_audit_domain_overview_confirmed_strengths", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", - "target": "docs_audit_13_devops_audit_findings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/13-devops-audit.md", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", - "target": "docs_audit_13_devops_audit_devops_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit", - "target": "docs_audit_14_documentation_audit_documentation_audit_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_domain", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_category", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_severity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_confidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_status", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_affected_application", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_affected_files", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_relevant_symbols_or_lines", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L53", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_evidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L56", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_problem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L59", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_root_cause", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L62", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_why_it_matters", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_user_or_business_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L68", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_technical_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L71", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_security_or_data_integrity_impact", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L74", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_recommended_direction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L77", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_alternative_direction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L80", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_implementation_complexity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L83", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_dependencies", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L86", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_risks", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L89", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_verification_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L92", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_testing_requirements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L95", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_acceptance_criteria", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L98", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_doc_001", - "target": "docs_audit_14_documentation_audit_notes_and_limitations", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L103", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_documentation_audit_report", - "target": "docs_audit_14_documentation_audit_finding_summary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L115", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_documentation_audit_report", - "target": "docs_audit_14_documentation_audit_completion_statement", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_documentation_audit_report", - "target": "docs_audit_14_documentation_audit_domain_overview_confirmed_strengths", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_documentation_audit_report", - "target": "docs_audit_14_documentation_audit_findings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/14-documentation-audit.md", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_14_documentation_audit_documentation_audit_report", - "target": "docs_audit_14_documentation_audit_doc_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_16_deep_audit_summary", - "target": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_16_deep_audit_summary_2_findings_metrics", - "target": "docs_audit_16_deep_audit_summary_by_severity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_16_deep_audit_summary_2_findings_metrics", - "target": "docs_audit_16_deep_audit_summary_by_confidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_16_deep_audit_summary_2_findings_metrics", - "target": "docs_audit_16_deep_audit_summary_by_domain", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", - "target": "docs_audit_16_deep_audit_summary_inspected_scopes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", - "target": "docs_audit_16_deep_audit_summary_executed_commands_results", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", - "target": "docs_audit_16_deep_audit_summary_blocked_commands_reasons", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_2_findings_metrics", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_1_audit_overview", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L62", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_4_key_business_integration_questions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L69", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_5_audit_limitations_integrity_confirmation", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/16-deep-audit-summary.md", - "source_location": "L75", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_16_deep_audit_summary_deep_audit_summary_report", - "target": "docs_audit_16_deep_audit_summary_6_exact_next_recommended_phase", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_18_compiler_diagnostic_dispositions", - "target": "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions", - "target": "docs_audit_18_compiler_diagnostic_dispositions_reconciled_compiler_diagnostic_table", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/19-finding-verification-report.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_19_finding_verification_report", - "target": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/19-finding-verification-report.md", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report", - "target": "docs_audit_19_finding_verification_report_2_newly_discovered_split_findings_canonical_ids", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/19-finding-verification-report.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report", - "target": "docs_audit_19_finding_verification_report_1_executive_summary_verification_reconciliation_table", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_21_phase2_quality_gate_summary", - "target": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", - "target": "docs_audit_21_phase2_quality_gate_summary_by_severity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", - "target": "docs_audit_21_phase2_quality_gate_summary_by_confidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", - "target": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", - "target": "docs_audit_21_phase2_quality_gate_summary_1_executive_summary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", - "target": "docs_audit_21_phase2_quality_gate_summary_3_source_coverage_diagnostic_metrics", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", - "target": "docs_audit_21_phase2_quality_gate_summary_4_integrity_check_quality_gate_status", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/21-phase2-quality-gate-summary.md", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report", - "target": "docs_audit_21_phase2_quality_gate_summary_5_exact_next_recommended_phase", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/24-omitted-file-inspection-report.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_24_omitted_file_inspection_report", - "target": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/24-omitted-file-inspection-report.md", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report", - "target": "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/24-omitted-file-inspection-report.md", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report", - "target": "docs_audit_24_omitted_file_inspection_report_conclusion", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/24-omitted-file-inspection-report.md", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections", - "target": "docs_audit_24_omitted_file_inspection_report_key_domain_findings_from_omitted_file_audit", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_26_phase2_integrity_repair_report", - "target": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", - "target": "docs_audit_26_phase2_integrity_repair_report_1_1_authoritative_source_file_inventory_rebuilt", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", - "target": "docs_audit_26_phase2_integrity_repair_report_1_2_raw_finding_dispositions_reconciled", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", - "target": "docs_audit_26_phase2_integrity_repair_report_1_3_finding_identifier_normalization", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", - "target": "docs_audit_26_phase2_integrity_repair_report_1_4_rejected_finding_cleanup", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics", - "target": "docs_audit_26_phase2_integrity_repair_report_by_severity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics", - "target": "docs_audit_26_phase2_integrity_repair_report_by_confidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", - "target": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", - "target": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L57", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", - "target": "docs_audit_26_phase2_integrity_repair_report_3_reference_and_compiler_integrity_results", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/26-phase2-integrity-repair-report.md", - "source_location": "L64", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report", - "target": "docs_audit_26_phase2_integrity_repair_report_4_quality_gate_conclusion", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure", - "target": "docs_audit_31_module_audit_closure_module_audit_closure_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L149", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_module_audit_closure_report", - "target": "docs_audit_31_module_audit_closure_conclusion", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_module_audit_closure_report", - "target": "docs_audit_31_module_audit_closure_required_review_group_closures", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_1_storefront_shell_routing", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L104", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_12_prisma_schema_migrations_seed", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L114", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_13_redis_temporary_auth_state", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L122", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_14_unit_e2e_tests", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L131", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_15_docker_nginx_prometheus_deployment_config", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L139", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_16_documentation_openapi_artifacts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_2_authentication_ui_stores_api_clients", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_3_cart_checkout_order_wallet_payment_ui", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_4_product_pet_scientific_term_settings_ui", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_5_nestjs_bootstrap_shared_infrastructure", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_6_authentication_authorization_backend", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L63", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_7_users_addresses_backend", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L71", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_8_pets_backend", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L79", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_9_products_backend", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L88", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_10_orders_backend", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/31-module-audit-closure.md", - "source_location": "L96", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_31_module_audit_closure_required_review_group_closures", - "target": "docs_audit_31_module_audit_closure_11_settings_administrative_backend", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/33-final-phase2-audit-closure.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_33_final_phase2_audit_closure", - "target": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/33-final-phase2-audit-closure.md", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", - "target": "docs_audit_33_final_phase2_audit_closure_2_reconciled_findings_canonical_identifier_normalization", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/33-final-phase2-audit-closure.md", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", - "target": "docs_audit_33_final_phase2_audit_closure_3_validation_integrity_verification", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/33-final-phase2-audit-closure.md", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", - "target": "docs_audit_33_final_phase2_audit_closure_4_final_quality_gate_conclusion", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/33-final-phase2-audit-closure.md", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report", - "target": "docs_audit_33_final_phase2_audit_closure_1_executive_summary_honest_review_tier_metrics", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/build_manifest.js", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_build_manifest", - "target": "docs_audit_build_manifest_lines", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/build_manifest.js", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_build_manifest", - "target": "docs_audit_build_manifest_entries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/generate_classification.js", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_generate_classification", - "target": "docs_audit_generate_classification_lines", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/generate_classification.js", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_generate_classification", - "target": "docs_audit_generate_classification_classified", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/generate_evidence.js", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_generate_evidence", - "target": "docs_audit_generate_evidence_classification", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/generate_evidence.js", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_generate_evidence", - "target": "docs_audit_generate_evidence_evidenceentries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/generate_ledger.js", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_generate_ledger", - "target": "docs_audit_generate_ledger_evidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/generate_ledger.js", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_generate_ledger", - "target": "docs_audit_generate_ledger_ledgerentries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/generate_manifest.js", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_generate_manifest", - "target": "docs_audit_generate_manifest_evidence", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/generate_manifest.js", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_generate_manifest", - "target": "docs_audit_generate_manifest_manifestentries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_backlog_review", - "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L102", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_10_dependency_wave_adjustments", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L114", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_11_acceptance_criteria_refinements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L124", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_12_business_and_product_decision_classification", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L134", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_13_final_recommended_backlog_summary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_1_executive_assessment", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_2_findings_that_require_no_change", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_3_findings_requiring_task_refinements", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L50", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_4_tasks_requiring_splitting", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L56", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_5_tasks_requiring_merging", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L62", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_6_unsupported_assumptions_identified", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L71", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_7_scope_creep_identified_and_removed", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L78", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_8_security_deep_dive_review", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-backlog-review.md", - "source_location": "L92", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique", - "target": "docs_audit_phase3_1_backlog_review_9_architecture_review", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_change_log", - "target": "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log", - "target": "docs_audit_phase3_1_change_log_task_modifications_log", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_1_task_auth_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_2_task_fin_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_3_decision_002", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_4_task_verify_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_5_task_sec_001_task_sec_002", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.1-change-log.md", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_1_change_log_task_modifications_log", - "target": "docs_audit_phase3_1_change_log_6_task_build_001_execution_waves", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_2_change_log", - "target": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_1_task_sec_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L109", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_10_task_verify_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_2_task_sec_002", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_3_task_sec_003", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_4_task_fin_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_5_task_build_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_6_task_auth_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L76", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_7_task_fe_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L87", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_8_task_devops_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L98", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "target": "docs_audit_phase3_2_change_log_9_task_doc_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.2-change-log.md", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log", - "target": "docs_audit_phase3_2_change_log_comprehensive_change_log", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.2-implementation-readiness.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_2_implementation_readiness", - "target": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.2-implementation-readiness.md", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report", - "target": "docs_audit_phase3_2_implementation_readiness_1_executive_summary_architecture_decisions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.2-implementation-readiness.md", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report", - "target": "docs_audit_phase3_2_implementation_readiness_2_updated_task_specifications_overview", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3.2-implementation-readiness.md", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report", - "target": "docs_audit_phase3_2_implementation_readiness_3_final_readiness_statement", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3-traceability-matrix.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_traceability_matrix", - "target": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3-traceability-matrix.md", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", - "target": "docs_audit_phase3_traceability_matrix_complete_finding_to_task_traceability_matrix", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3-traceability-matrix.md", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", - "target": "docs_audit_phase3_traceability_matrix_special_task_traceability_non_finding_tasks", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/phase3-traceability-matrix.md", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", - "target": "docs_audit_phase3_traceability_matrix_finding_disposition_accounting_verification", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/rebuild_honest_ledger.js", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_rebuild_honest_ledger", - "target": "docs_audit_rebuild_honest_ledger_mandatoryscope", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/rebuild_honest_ledger.js", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_rebuild_honest_ledger", - "target": "docs_audit_rebuild_honest_ledger_evidencelist", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/rebuild_honest_ledger.js", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_rebuild_honest_ledger", - "target": "docs_audit_rebuild_honest_ledger_mandatorymap", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/rebuild_honest_ledger.js", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_rebuild_honest_ledger", - "target": "docs_audit_rebuild_honest_ledger_ledger", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/sync_honest_manifest.js", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_sync_honest_manifest", - "target": "docs_audit_sync_honest_manifest_ledger", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/sync_honest_manifest.js", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_sync_honest_manifest", - "target": "docs_audit_sync_honest_manifest_manifest", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/sync_manifest.js", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_sync_manifest", - "target": "docs_audit_sync_manifest_ledger", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/sync_manifest.js", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_sync_manifest", - "target": "docs_audit_sync_manifest_manifestentries", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/validate_evidence_grade.js", - "source_location": "L101", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_validate_evidence_grade", - "target": "docs_audit_validate_evidence_grade_validationoutput", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/validate_evidence_grade.js", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_validate_evidence_grade", - "target": "docs_audit_validate_evidence_grade_errors", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/validate_evidence_grade.js", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_validate_evidence_grade", - "target": "docs_audit_validate_evidence_grade_warnings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/validate_evidence_grade.js", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_validate_evidence_grade", - "target": "docs_audit_validate_evidence_grade_activefiles", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_dispsum", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_invalidnewids", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_manifest", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_uninspected", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_trackedfiles", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_report", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_verifiedindex", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_errors", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/audit/validate_integrity.js", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "docs_audit_validate_integrity", - "target": "docs_audit_validate_integrity_warnings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/README.md", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "docs_readme", - "target": "docs_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628_table_of_contents", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_dependencies", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_name", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_devdependencies", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_private", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_version", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_type", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package", - "target": "frontend_admin_panel_package_scripts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_tanstack_react_query", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_axios", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_lucide_react", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_react", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_react_dom", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_react_hot_toast", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_react_router_dom", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_recharts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_vite", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_dependencies", - "target": "frontend_admin_panel_package_dependencies_zustand", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_eslint_js", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_types_node", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_types_react", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_types_react_dom", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_autoprefixer", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_eslint", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_globals", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_postcss", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_tailwindcss", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_typescript", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_devdependencies", - "target": "frontend_admin_panel_package_devdependencies_typescript_eslint", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_scripts", - "target": "frontend_admin_panel_package_scripts_preview", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_scripts", - "target": "frontend_admin_panel_package_scripts_dev", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_scripts", - "target": "frontend_admin_panel_package_scripts_build", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/package.json", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_package_scripts", - "target": "frontend_admin_panel_package_scripts_lint", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L119", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_arch_linux", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L103", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L127", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_contributors", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L131", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_license", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_to_do_variable", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L83", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme", - "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L110", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", - "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_arch_linux", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L80", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", - "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_bower", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L86", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", - "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_npm", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L91", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", - "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_yarn", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", - "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0646\u0645\u0648\u0646\u0647_\u0645\u062a\u0646_sample", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", - "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", - "source_location": "L76", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", - "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_002", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L158", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_old_vazir_changelog", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_001", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_003", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_000", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L57", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_102", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L69", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_101", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L77", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", - "source_location": "L85", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_0_0", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_download", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_npm_https_www_npmjs_com_package_vazirmatn", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_cdn", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_arch_linux_aur_https_aur_archlinux_org_packages_vazirmatn_fonts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_build", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L50", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_thank_you", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L57", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_license", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L60", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_authors", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646", - "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/README.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_readme", - "target": "frontend_admin_panel_readme_react_typescript_vite", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/README.md", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_readme_react_typescript_vite", - "target": "frontend_admin_panel_readme_react_compiler", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/README.md", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_readme_react_typescript_vite", - "target": "frontend_admin_panel_readme_expanding_the_eslint_configuration", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/App.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_app", - "target": "frontend_admin_panel_src_app_app", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/App.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_app", - "target": "frontend_admin_panel_src_app_suspensefallback", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Layout.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_layout", - "target": "frontend_admin_panel_src_components_layout_layout", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_protectedroute", - "target": "frontend_admin_panel_src_components_protectedroute_protectedroute", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_routeerrorboundary", - "target": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_routeerrorboundary", - "target": "frontend_admin_panel_src_components_routeerrorboundary_props", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_routeerrorboundary", - "target": "frontend_admin_panel_src_components_routeerrorboundary_state", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_components_sidebar_submenuitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_components_sidebar_menugroup", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L56", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_components_sidebar_sidebarprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_sidebar", - "target": "frontend_admin_panel_src_components_sidebar_sidebar", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_topbar", - "target": "frontend_admin_panel_src_components_topbar_searchable_pages", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_topbar", - "target": "frontend_admin_panel_src_components_topbar_livemonitoringsummary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L60", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_topbar", - "target": "frontend_admin_panel_src_components_topbar_topbar", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/Topbar.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_topbar", - "target": "frontend_admin_panel_src_components_topbar_topbarprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_transactionreceiptmodal", - "target": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodalprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_transactionreceiptmodal", - "target": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_transactionreceiptmodal", - "target": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptdata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_badge", - "target": "frontend_admin_panel_src_components_ui_badge_badgeprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_badge", - "target": "frontend_admin_panel_src_components_ui_badge_variantstyles", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_badge", - "target": "frontend_admin_panel_src_components_ui_badge_badgevariant", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_badge", - "target": "frontend_admin_panel_src_components_ui_badge_badge", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_button", - "target": "frontend_admin_panel_src_components_ui_button_buttonsize", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_button", - "target": "frontend_admin_panel_src_components_ui_button_buttonprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_button", - "target": "frontend_admin_panel_src_components_ui_button_button", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_button", - "target": "frontend_admin_panel_src_components_ui_button_buttonvariant", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_confirmmodal", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/ConfirmModal.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_confirmmodal", - "target": "frontend_admin_panel_src_components_ui_confirmmodal_confirmmodalprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/FormField.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_formfield", - "target": "frontend_admin_panel_src_components_ui_formfield_formfield", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/FormField.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_formfield", - "target": "frontend_admin_panel_src_components_ui_formfield_formfieldprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_iconpickermodal", - "target": "frontend_admin_panel_src_components_ui_iconpickermodal_iconpickermodalprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_iconpickermodal", - "target": "frontend_admin_panel_src_components_ui_iconpickermodal_icon_registry", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", - "source_location": "L90", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_iconpickermodal", - "target": "frontend_admin_panel_src_components_ui_iconpickermodal_iconpickermodal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_imagepreviewmodal", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_imagepreviewmodal", - "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodalprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Input.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_input", - "target": "frontend_admin_panel_src_components_ui_input_inputprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Input.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_input", - "target": "frontend_admin_panel_src_components_ui_input_input", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_maskablefield", - "target": "frontend_admin_panel_src_components_ui_maskablefield_maskablefield", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_maskablefield", - "target": "frontend_admin_panel_src_components_ui_maskablefield_maskablefieldprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_mediaselector_media", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselectorprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_mediaselector_getfiletype", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_mediaselector", - "target": "frontend_admin_panel_src_components_ui_mediaselector_mediaselector", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_modal", - "target": "frontend_admin_panel_src_components_ui_modal_maxwidthclasses", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_modal", - "target": "frontend_admin_panel_src_components_ui_modal_modal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_modal", - "target": "frontend_admin_panel_src_components_ui_modal_modalprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_pagination", - "target": "frontend_admin_panel_src_components_ui_pagination_pagination", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Pagination.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_pagination", - "target": "frontend_admin_panel_src_components_ui_pagination_paginationprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_priceinput", - "target": "frontend_admin_panel_src_components_ui_priceinput_toenglishdigits", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_priceinput", - "target": "frontend_admin_panel_src_components_ui_priceinput_formatpricewithcommas", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_priceinput", - "target": "frontend_admin_panel_src_components_ui_priceinput_priceinputprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/PriceInput.tsx", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_priceinput", - "target": "frontend_admin_panel_src_components_ui_priceinput_priceinput", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_richtexteditor", - "target": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditorprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_richtexteditor", - "target": "frontend_admin_panel_src_components_ui_richtexteditor_preset_colors", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_richtexteditor", - "target": "frontend_admin_panel_src_components_ui_richtexteditor_preset_bg_colors", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_richtexteditor", - "target": "frontend_admin_panel_src_components_ui_richtexteditor_activestates", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", - "source_location": "L76", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_richtexteditor", - "target": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditor", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_select", - "target": "frontend_admin_panel_src_components_ui_select_selectprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_select", - "target": "frontend_admin_panel_src_components_ui_select_select", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_select", - "target": "frontend_admin_panel_src_components_ui_select_selectoption", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Skeleton.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_skeleton", - "target": "frontend_admin_panel_src_components_ui_skeleton_skeleton", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_spinner", - "target": "frontend_admin_panel_src_components_ui_spinner_spinner", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Textarea.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_textarea", - "target": "frontend_admin_panel_src_components_ui_textarea_textareaprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/Textarea.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_textarea", - "target": "frontend_admin_panel_src_components_ui_textarea_textarea", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/ThSort.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_thsort", - "target": "frontend_admin_panel_src_components_ui_thsort_thsort", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/ThSort.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_thsort", - "target": "frontend_admin_panel_src_components_ui_thsort_thsortprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_toggleswitch", - "target": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitch", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_ui_toggleswitch", - "target": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitchprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_b2bmanager", - "target": "frontend_admin_panel_src_pages_b2bmanager_b2bmanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_bannersmanager", - "target": "frontend_admin_panel_src_pages_bannersmanager_bannersmanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L113", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_pages_blogs_blogs", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_pages_blogs_blogcategory", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_pages_blogs_blogtag", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_pages_blogs_authoruser", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L62", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_pages_blogs_productsimple", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", - "source_location": "L70", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_blogs", - "target": "frontend_admin_panel_src_pages_blogs_blogpost", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_pages_categories_category", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Categories.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_categories", - "target": "frontend_admin_panel_src_pages_categories_categories", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_pages_cms_vettestimonial", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_pages_cms_cms", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/CMS.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_cms", - "target": "frontend_admin_panel_src_pages_cms_herobanner", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_pages_contactsubmissions_contactinfoitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_contactsubmissions", - "target": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmission", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_coupontarget", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_coupon", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L308", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_couponmodalprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L317", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_couponmodal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_couponformdata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_coupons", - "target": "frontend_admin_panel_src_pages_coupons_coupons", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_dashboard", - "target": "frontend_admin_panel_src_pages_dashboard_dashboarddata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_dashboard", - "target": "frontend_admin_panel_src_pages_dashboard_dashboard", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_dashboard", - "target": "frontend_admin_panel_src_pages_dashboard_categorydist", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_pages_doctorsmanager_doctor", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_doctorsmanager", - "target": "frontend_admin_panel_src_pages_doctorsmanager_doctorsmanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_faqmanager", - "target": "frontend_admin_panel_src_pages_faqmanager_faq", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_faqmanager", - "target": "frontend_admin_panel_src_pages_faqmanager_faqmanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_financialsettingspage", - "target": "frontend_admin_panel_src_pages_financialsettingspage_financialsettingspage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_ingredientsmanager", - "target": "frontend_admin_panel_src_pages_ingredientsmanager_ingredientsmanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Login.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_login", - "target": "frontend_admin_panel_src_pages_login_login", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_pages_media_media", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_pages_media_getfiletype", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Media.tsx", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_media", - "target": "frontend_admin_panel_src_pages_media_mediamanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_menumanager", - "target": "frontend_admin_panel_src_pages_menumanager_menuitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_menumanager", - "target": "frontend_admin_panel_src_pages_menumanager_menutype", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_menumanager", - "target": "frontend_admin_panel_src_pages_menumanager_menu_tabs", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_menumanager", - "target": "frontend_admin_panel_src_pages_menumanager_menumanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_monitoringpage", - "target": "frontend_admin_panel_src_pages_monitoringpage_monitoringstats", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", - "source_location": "L59", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_monitoringpage", - "target": "frontend_admin_panel_src_pages_monitoringpage_monitoringpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L107", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_pages_orders_order_status_map", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L118", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_pages_orders_getpaymentstatusbadge", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L135", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_pages_orders_getshippingmethodlabel", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L148", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L163", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_pages_orders_topersiandigits", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L169", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_pages_orders_orders", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_pages_orders_orderitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_pages_orders_paymenttx", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Orders.tsx", - "source_location": "L67", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_orders", - "target": "frontend_admin_panel_src_pages_orders_order", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_paymentgatewayspage", - "target": "frontend_admin_panel_src_pages_paymentgatewayspage_paymentgatewayspage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_pages_pets_pet", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Pets.tsx", - "source_location": "L57", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_pets", - "target": "frontend_admin_panel_src_pages_pets_pets", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_pages_prescriptionsmanager_productitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_prescriptionsmanager", - "target": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_pages_products_category", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_pages_products_product", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Products.tsx", - "source_location": "L70", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_products", - "target": "frontend_admin_panel_src_pages_products_products", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_colors", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_customtooltipprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_customtooltip", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_categorydistitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_bestselleritem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_topcouponitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L50", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_reportdata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reports.tsx", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reports", - "target": "frontend_admin_panel_src_pages_reports_reports", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_pages_reviews_productreview", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_pages_reviews_topersiandigits", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_reviews", - "target": "frontend_admin_panel_src_pages_reviews_reviews", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_seosettingspage", - "target": "frontend_admin_panel_src_pages_seosettingspage_seosettingspage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Settings.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_settings", - "target": "frontend_admin_panel_src_pages_settings_settings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_shippingsettingspage", - "target": "frontend_admin_panel_src_pages_shippingsettingspage_shippingsettingspage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smartadvisormanager", - "target": "frontend_admin_panel_src_pages_smartadvisormanager_smartadvisormanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_smsconfigstate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_patternitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L67", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_smslogitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L80", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_smslogstats", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L87", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_topersiandigits", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", - "source_location": "L93", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_smssettingspage", - "target": "frontend_admin_panel_src_pages_smssettingspage_smssettingspage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_pages_sslsettingspage_sslstatus", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_sslsettingspage", - "target": "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_systemsettingspage", - "target": "frontend_admin_panel_src_pages_systemsettingspage_systemsettingspage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_testimonialsmanager", - "target": "frontend_admin_panel_src_pages_testimonialsmanager_testimonialsmanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_pages_tickets_ticketmessage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_pages_tickets_ticket", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", - "source_location": "L60", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_tickets", - "target": "frontend_admin_panel_src_pages_tickets_tickets", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_pages_transactions_transaction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L70", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_pages_transactions_stats", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L80", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_pages_transactions_gatewayhealth", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", - "source_location": "L92", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_transactions", - "target": "frontend_admin_panel_src_pages_transactions_transactions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L200", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_v1_group_page_map", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L211", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_sectionfield", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L219", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_pagesection", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L227", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_appsitepage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L236", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_createseosection", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L273", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_site_pages", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_v1_page_tabs", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L64", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_v1_groups", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L650", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_shared_header_fields", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L664", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_shared_footer_fields", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", - "source_location": "L678", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_uitexts", - "target": "frontend_admin_panel_src_pages_uitexts_uitexts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_pages_users_userrecord", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Users.tsx", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_users", - "target": "frontend_admin_panel_src_pages_users_users", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_pages_videos_video", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_pages_videos_doctoroption", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Videos.tsx", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_videos", - "target": "frontend_admin_panel_src_pages_videos_videos", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_pages_wholesaleapplications_wholesaleapplications", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wholesaleapplications", - "target": "frontend_admin_panel_src_pages_wholesaleapplications_wholesalerequest", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_pages_wiki_wikiterm", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_pages_wiki_productitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_wiki", - "target": "frontend_admin_panel_src_pages_wiki_wiki", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_pages_zibalportalpage", - "target": "frontend_admin_panel_src_pages_zibalportalpage_zibalportalpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_dashboard", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_users", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_products", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_orders", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_coupons", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_settings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_reports", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_categories", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_blogs", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_wiki", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_pets", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_uitexts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_media", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_cms", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_videos", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_bannersmanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_b2bmanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_seosettingspage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_paymentgatewayspage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_zibalportalpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_shippingsettingspage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_smssettingspage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_transactions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_tickets", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_reviews", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_doctorsmanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_faqmanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_menumanager", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_monitoringpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L50", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_adminrouteconfig", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "source_location": "L56", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_routes_adminroutes_router", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_services_api_apierrorpayload", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_services_api_failedqueue", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_services_api_processqueue", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/services/api.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_services_api", - "target": "frontend_admin_panel_src_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_store_adminauthstore", - "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_adminuser", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L111", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_ingredient", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L124", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_prescription", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_authstate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L151", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_b2binquiry", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L166", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_partneraccount", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L178", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_seosettings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L190", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_financialsettings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L198", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_systemsettings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L206", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_product", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_sendotppayload", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_verifyotppayload", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_adminloginpayload", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_authresponsedata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_apiresponse", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_useraddress", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_petsummary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L70", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_banner", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L83", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_smartadvisorrule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/types/admin.ts", - "source_location": "L97", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_types_admin", - "target": "frontend_admin_panel_src_types_admin_testimonial", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/utils/lazyWithRetry.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_utils_lazywithretry", - "target": "frontend_admin_panel_src_utils_lazywithretry_lazywithretry", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/utils/useTableParams.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_utils_usetableparams", - "target": "frontend_admin_panel_src_utils_usetableparams_usetableparams", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/utils/useTableParams.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_utils_usetableparams", - "target": "frontend_admin_panel_src_utils_usetableparams_usetableparamsoptions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.json", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig", - "target": "frontend_admin_panel_tsconfig_files", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.json", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig", - "target": "frontend_admin_panel_tsconfig_references", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app", - "target": "frontend_admin_panel_tsconfig_app_compileroptions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app", - "target": "frontend_admin_panel_tsconfig_app_include", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_moduleresolution", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_allowimportingtsextensions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_verbatimmodulesyntax", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_moduledetection", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_noemit", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_jsx", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedlocals", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedparameters", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_erasablesyntaxonly", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_nofallthroughcasesinswitch", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_tsbuildinfofile", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_target", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_lib", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_module", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_types", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.app.json", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_app_compileroptions", - "target": "frontend_admin_panel_tsconfig_app_compileroptions_skiplibcheck", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node", - "target": "frontend_admin_panel_tsconfig_node_compileroptions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node", - "target": "frontend_admin_panel_tsconfig_node_include", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_moduleresolution", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_allowimportingtsextensions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_verbatimmodulesyntax", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_moduledetection", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_noemit", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedlocals", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedparameters", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_erasablesyntaxonly", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_nofallthroughcasesinswitch", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_tsbuildinfofile", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_target", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_lib", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_module", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_types", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/tsconfig.node.json", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_tsconfig_node_compileroptions", - "target": "frontend_admin_panel_tsconfig_node_compileroptions_skiplibcheck", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/about/page.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_about_page", - "target": "frontend_application_app_about_page_aboutpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/about/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_about_page", - "target": "frontend_application_app_about_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/api/revalidate/route.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_api_revalidate_route", - "target": "frontend_application_app_api_revalidate_route_handlerevalidate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/api/revalidate/route.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_api_revalidate_route", - "target": "frontend_application_app_api_revalidate_route_get", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/api/revalidate/route.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_api_revalidate_route", - "target": "frontend_application_app_api_revalidate_route_post", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/b2b/page.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_b2b_page", - "target": "frontend_application_app_b2b_page_b2bpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/b2b/page.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_b2b_page", - "target": "frontend_application_app_b2b_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_page", - "target": "frontend_application_app_blog_page_revalidate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_page", - "target": "frontend_application_app_blog_page_getcategories", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_page", - "target": "frontend_application_app_blog_page_getblogs", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_page", - "target": "frontend_application_app_blog_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/page.tsx", - "source_location": "L75", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_page", - "target": "frontend_application_app_blog_page_blog", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/rss.xml/route.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_rss_xml_route", - "target": "frontend_application_app_blog_rss_xml_route_dynamic", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/rss.xml/route.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_rss_xml_route", - "target": "frontend_application_app_blog_rss_xml_route_get", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/rss.xml/route.ts", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_rss_xml_route", - "target": "frontend_application_app_blog_rss_xml_route_escapexml", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L138", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_app_blog_slug_page_blogpostpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_app_blog_slug_page_safelocaldate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_app_blog_slug_page_getblog", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_app_blog_slug_page_revalidate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L53", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_app_blog_slug_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/blog/[slug]/page.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_blog_slug_page", - "target": "frontend_application_app_blog_slug_page_safeiso", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/catalog/CatalogClient.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_catalog_catalogclient", - "target": "frontend_application_app_catalog_catalogclient_catalogclient", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/catalog/page.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_catalog_page", - "target": "frontend_application_app_catalog_page_catalogpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/catalog/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_catalog_page", - "target": "frontend_application_app_catalog_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_checkout_page", - "target": "frontend_application_app_checkout_page_checkout", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/checkout/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_checkout_page", - "target": "frontend_application_app_checkout_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_checkout_success_id_page", - "target": "frontend_application_app_checkout_success_id_page_successpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_app_clientlayout_cartdrawer", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_app_clientlayout_loginmodal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_app_clientlayout_authmodal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_app_clientlayout_b2bportal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_app_clientlayout_clientlayout", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_contact_page", - "target": "frontend_application_app_contact_page_contactpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/contact/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_contact_page", - "target": "frontend_application_app_contact_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/dashboard/page.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_dashboard_page", - "target": "frontend_application_app_dashboard_page_dashboardpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/dashboard/page.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_dashboard_page", - "target": "frontend_application_app_dashboard_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/error.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_error", - "target": "frontend_application_app_error_errorboundary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_app_homeclient_homeclientprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/HomeClient.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_homeclient", - "target": "frontend_application_app_homeclient_homeclient", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L100", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_layout", - "target": "frontend_application_app_layout_rootlayout", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/layout.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_layout", - "target": "frontend_application_app_layout_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/loading.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_loading", - "target": "frontend_application_app_loading_globalloading", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/not-found.tsx", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_not_found", - "target": "frontend_application_app_not_found_notfound", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_page", - "target": "frontend_application_app_page_gethomedata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_page", - "target": "frontend_application_app_page_home", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_page", - "target": "frontend_application_app_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_app_payment_verify_page_verifycontent", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/payment/verify/page.tsx", - "source_location": "L319", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_payment_verify_page", - "target": "frontend_application_app_payment_verify_page_paymentverifypage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/privacy/page.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_privacy_page", - "target": "frontend_application_app_privacy_page_privacypage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/privacy/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_privacy_page", - "target": "frontend_application_app_privacy_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/profile/page.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_profile_page", - "target": "frontend_application_app_profile_page_profilepage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/profile/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_profile_page", - "target": "frontend_application_app_profile_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/robots.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_robots", - "target": "frontend_application_app_robots_robots", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/search/page.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_search_page", - "target": "frontend_application_app_search_page_searchpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/search/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_search_page", - "target": "frontend_application_app_search_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/feed.xml/route.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_feed_xml_route", - "target": "frontend_application_app_shop_feed_xml_route_dynamic", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/feed.xml/route.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_feed_xml_route", - "target": "frontend_application_app_shop_feed_xml_route_revalidate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/feed.xml/route.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_feed_xml_route", - "target": "frontend_application_app_shop_feed_xml_route_get", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_page", - "target": "frontend_application_app_shop_page_shop", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_page", - "target": "frontend_application_app_shop_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_app_shop_slug_page_revalidate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_app_shop_slug_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/shop/[slug]/page.tsx", - "source_location": "L93", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_shop_slug_page", - "target": "frontend_application_app_shop_slug_page_shopproductpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap", - "target": "frontend_application_app_sitemap_sitemap", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap_categories_xml_route", - "target": "frontend_application_app_sitemap_categories_xml_route_get", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap_categories_xml_route", - "target": "frontend_application_app_sitemap_categories_xml_route_dynamic", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap_categories_xml_route", - "target": "frontend_application_app_sitemap_categories_xml_route_revalidate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap_categories_xml_route", - "target": "frontend_application_app_sitemap_categories_xml_route_default_categories", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap-products.xml/route.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap_products_xml_route", - "target": "frontend_application_app_sitemap_products_xml_route_dynamic", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap-products.xml/route.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap_products_xml_route", - "target": "frontend_application_app_sitemap_products_xml_route_revalidate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/sitemap-products.xml/route.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_sitemap_products_xml_route", - "target": "frontend_application_app_sitemap_products_xml_route_get", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/track/page.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_track_page", - "target": "frontend_application_app_track_page_trackpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/track/page.tsx", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_track_page", - "target": "frontend_application_app_track_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_trust_seals_page", - "target": "frontend_application_app_trust_seals_page_trustsealspage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/trust-seals/page.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_trust_seals_page", - "target": "frontend_application_app_trust_seals_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_videos_page", - "target": "frontend_application_app_videos_page_getinitialvideos", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_videos_page", - "target": "frontend_application_app_videos_page_videos", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/videos/page.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_videos_page", - "target": "frontend_application_app_videos_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/page.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_page", - "target": "frontend_application_app_wiki_page_wikipage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/page.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_page", - "target": "frontend_application_app_wiki_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_app_wiki_slug_page_getwikiterm", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_app_wiki_slug_page_getrelatedproducts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_app_wiki_slug_page_generatemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/wiki/[slug]/page.tsx", - "source_location": "L78", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_app_wiki_slug_page", - "target": "frontend_application_app_wiki_slug_page_wikitermpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_addressmodal", - "target": "frontend_application_components_addressmodal_addressmodalprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AddressModal.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_addressmodal", - "target": "frontend_application_components_addressmodal_addressmodal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L237", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_archivepage_archivepage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_archivepage_icon_map", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_archivepage_category_map", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ArchivePage.tsx", - "source_location": "L74", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_archivepage", - "target": "frontend_application_components_archivepage_archiveproductcard", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_authmodal", - "target": "frontend_application_components_authmodal_authmodalprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_authmodal", - "target": "frontend_application_components_authmodal_extractotpfromtext", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/AuthModal.tsx", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_authmodal", - "target": "frontend_application_components_authmodal_authmodal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BLandingClient.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2blandingclient", - "target": "frontend_application_components_b2blandingclient_b2blandingclient", - "confidence_score": 1.0 - }, - { - "relation": "contains", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", + "confidence_score": 1.0, "source_file": "frontend/application/components/B2BPortal.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_b2bportal", - "target": "frontend_application_components_b2bportal_b2bportal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BackButton.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_backbutton", - "target": "frontend_application_components_backbutton_backbutton", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BackButton.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_backbutton", - "target": "frontend_application_components_backbutton_backbuttonprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BannerPlacement.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_bannerplacement", - "target": "frontend_application_components_bannerplacement_bannerplacement", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BannerPlacement.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_bannerplacement", - "target": "frontend_application_components_bannerplacement_bannerplacementprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPage.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpage", - "target": "frontend_application_components_blogpage_blogcategory", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPage.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpage", - "target": "frontend_application_components_blogpage_blogpostitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPage.tsx", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpage", - "target": "frontend_application_components_blogpage_blogpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPostClient.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpostclient", - "target": "frontend_application_components_blogpostclient_blogpostclientprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPostClient.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpostclient", - "target": "frontend_application_components_blogpostclient_blogpostclient", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpreviewsection", - "target": "frontend_application_components_blogpreviewsection_blogpost", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BlogPreviewSection.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_blogpreviewsection", - "target": "frontend_application_components_blogpreviewsection_blogpreviewsection", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BrandLogo.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_brandlogo", - "target": "frontend_application_components_brandlogo_brandlogo", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/BrandLogo.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_brandlogo", - "target": "frontend_application_components_brandlogo_brandlogoprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CartDrawer.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_cartdrawer", - "target": "frontend_application_components_cartdrawer_cartdrawer", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_categorymeta", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_catalogpagespreadprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_getformbadge", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", - "source_location": "L67", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_catalogpagespread", - "target": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalogprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_flipbookcatalog", - "target": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_components_catalog_productdetailmodal_productdetailmodal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_catalog_productdetailmodal", - "target": "frontend_application_components_catalog_productdetailmodal_productdetailmodalprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/CheckoutPage.tsx", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_checkoutpage", - "target": "frontend_application_components_checkoutpage_checkoutpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ContactFormClient.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_contactformclient", - "target": "frontend_application_components_contactformclient_contactformclient", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ContactFormClient.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_contactformclient", - "target": "frontend_application_components_contactformclient_contactinfoitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/DeleteConfirmModal.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_deleteconfirmmodal", - "target": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/DeleteConfirmModal.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_deleteconfirmmodal", - "target": "frontend_application_components_deleteconfirmmodal_deleteconfirmmodalprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/EnamadBadge.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_enamadbadge", - "target": "frontend_application_components_enamadbadge_enamadbadge", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_errorboundary", - "target": "frontend_application_components_errorboundary_state", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_errorboundary", - "target": "frontend_application_components_errorboundary_errorboundary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_errorboundary", - "target": "frontend_application_components_errorboundary_props", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ErrorPages.tsx", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_errorpages", - "target": "frontend_application_components_errorpages_servererrorpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ErrorPages.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_errorpages", - "target": "frontend_application_components_errorpages_notfoundpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FAQSection.tsx", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_faqsection", - "target": "frontend_application_components_faqsection_faqsection", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FAQSection.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_faqsection", - "target": "frontend_application_components_faqsection_faqitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L144", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_featuredproducts_featuredproducts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/FeaturedProducts.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_featuredproducts", - "target": "frontend_application_components_featuredproducts_productcard", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Footer.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_footer", - "target": "frontend_application_components_footer_footer", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_components_header_menu_icons", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_header", - "target": "frontend_application_components_header_header", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/HeaderButton.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_headerbutton", - "target": "frontend_application_components_headerbutton_headerbutton", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/HeaderButton.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_headerbutton", - "target": "frontend_application_components_headerbutton_headerbuttonprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_hero", - "target": "frontend_application_components_hero_statcounter", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Hero.tsx", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_hero", - "target": "frontend_application_components_hero_hero", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_components_ingredientwiki_ingredient_match_keywords", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L50", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_components_ingredientwiki_formatingredientdisplayname", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/IngredientWiki.tsx", - "source_location": "L63", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ingredientwiki", - "target": "frontend_application_components_ingredientwiki_ingredientwiki", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_loginmodal", - "target": "frontend_application_components_loginmodal_loginmodalprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/LoginModal.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_loginmodal", - "target": "frontend_application_components_loginmodal_loginmodal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/MaintenancePage.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_maintenancepage", - "target": "frontend_application_components_maintenancepage_maintenancepage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/NetworkBanner.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_networkbanner", - "target": "frontend_application_components_networkbanner_networkbanner", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodalprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderDetailsModal.tsx", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_orderdetailsmodal", - "target": "frontend_application_components_orderdetailsmodal_orderdetailsmodal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderSuccess.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ordersuccess", - "target": "frontend_application_components_ordersuccess_ordersuccess", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/OrderTracking.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_ordertracking", - "target": "frontend_application_components_ordertracking_ordertracking", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PetProfile.tsx", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_petprofile", - "target": "frontend_application_components_petprofile_petprofile", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_podcastinlineplayer", - "target": "frontend_application_components_podcastinlineplayer_podcastinlineplayerprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_podcastinlineplayer", - "target": "frontend_application_components_podcastinlineplayer_playback_rates", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_podcastinlineplayer", - "target": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PodcastPlayerModal.tsx", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_podcastplayermodal", - "target": "frontend_application_components_podcastplayermodal_podcastplayermodalprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PodcastPlayerModal.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_podcastplayermodal", - "target": "frontend_application_components_podcastplayermodal_playback_rates", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PodcastPlayerModal.tsx", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_podcastplayermodal", - "target": "frontend_application_components_podcastplayermodal_podcastplayermodal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_prescriptionuploadmodal", - "target": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_prescriptionuploadmodal", - "target": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodalprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productpage_icon_map", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productpage_calculatorstate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productpage_usecalculatorstore", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L73", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productpage_videomodalplayer", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L74", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productpage_productreviews", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "source_location": "L78", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productpage_productpage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productreviews", - "target": "frontend_application_components_productreviews_reviewitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productreviews", - "target": "frontend_application_components_productreviews_productreviewsprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductReviews.tsx", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_productreviews", - "target": "frontend_application_components_productreviews_productreviews", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SafeImage.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_safeimage", - "target": "frontend_application_components_safeimage_safeimage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SafeImage.tsx", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_safeimage", - "target": "frontend_application_components_safeimage_safeimageprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SearchableSelect.tsx", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_searchableselect", - "target": "frontend_application_components_searchableselect_searchableselect", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SearchableSelect.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_searchableselect", - "target": "frontend_application_components_searchableselect_searchableselectprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SearchResultsPage.tsx", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_searchresultspage", - "target": "frontend_application_components_searchresultspage_searchresultspage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Skeleton.tsx", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_skeleton", - "target": "frontend_application_components_skeleton_productcardskeleton", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Skeleton.tsx", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_skeleton", - "target": "frontend_application_components_skeleton_skeletonprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Skeleton.tsx", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_skeleton", - "target": "frontend_application_components_skeleton_petprofileskeleton", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Skeleton.tsx", - "source_location": "L70", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_skeleton", - "target": "frontend_application_components_skeleton_orderrowskeleton", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Skeleton.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_skeleton", - "target": "frontend_application_components_skeleton_skeleton", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_components_smartadvisor_smartadvisorprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_components_smartadvisor_current_symptoms", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_components_smartadvisor_medical_histories", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/SmartAdvisor.tsx", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_smartadvisor", - "target": "frontend_application_components_smartadvisor_smartadvisor", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_testimonialssection", - "target": "frontend_application_components_testimonialssection_testimonialssection", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TestimonialsSection.tsx", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_testimonialssection", - "target": "frontend_application_components_testimonialssection_testimonial", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_cartdrawer_test", - "target": "frontend_application_components_tests_cartdrawer_test_mockproduct", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tests_featuredproducts_test", - "target": "frontend_application_components_tests_featuredproducts_test_mockproducts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TickerBanner.tsx", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tickerbanner", - "target": "frontend_application_components_tickerbanner_tickerbanner", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tooltip", - "target": "frontend_application_components_tooltip_tooltip", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/Tooltip.tsx", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_tooltip", - "target": "frontend_application_components_tooltip_tooltipprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_topupmodal", - "target": "frontend_application_components_topupmodal_topupmodalprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_topupmodal", - "target": "frontend_application_components_topupmodal_preset_amounts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/TopUpModal.tsx", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_topupmodal", - "target": "frontend_application_components_topupmodal_topupmodal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/UserDashboard.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_userdashboard", - "target": "frontend_application_components_userdashboard_userdashboard", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_vetgallery_testimonialitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_vetgallery_fallback_videos", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_vetgallery_displayvideoitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VetGallery.tsx", - "source_location": "L71", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_vetgallery", - "target": "frontend_application_components_vetgallery_vetgallery", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VideoModalPlayer.tsx", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_videomodalplayer", - "target": "frontend_application_components_videomodalplayer_videomodalplayerprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VideoModalPlayer.tsx", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_videomodalplayer", - "target": "frontend_application_components_videomodalplayer_playback_rates", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VideoModalPlayer.tsx", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_videomodalplayer", - "target": "frontend_application_components_videomodalplayer_videomodalplayer", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/VideosPage.tsx", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_videospage", - "target": "frontend_application_components_videospage_videospage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/eslint.config.mjs", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_eslint_config", - "target": "frontend_application_eslint_config_eslintconfig", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_specialist", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_ingredientinfo", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_dosageresult", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_faq", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_product", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L402", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_products", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_pettype", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/data/products.ts", - "source_location": "L99", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_data_products", - "target": "frontend_application_lib_data_products_ingredients_wiki", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/data/provinces.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_data_provinces", - "target": "frontend_application_lib_data_provinces_iran_provinces", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/data/provinces.ts", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_data_provinces", - "target": "frontend_application_lib_data_provinces_province_cities", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/data/scientificTerms.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_data_scientificterms", - "target": "frontend_application_lib_data_scientificterms_scientificterm", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/data/scientificTerms.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_data_scientificterms", - "target": "frontend_application_lib_data_scientificterms_scientific_terms", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/fonts.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_fonts", - "target": "frontend_application_lib_fonts_lalezar", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/fonts.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_fonts", - "target": "frontend_application_lib_fonts_vazirmatn", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/hooks/useNetworkStatus.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_hooks_usenetworkstatus", - "target": "frontend_application_lib_hooks_usenetworkstatus_usenetworkstatus", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L114", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_schema", - "target": "frontend_application_lib_schema_b2bserviceschemaoptions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L120", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_schema", - "target": "frontend_application_lib_schema_generateb2bserviceschema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L149", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_schema", - "target": "frontend_application_lib_schema_medicalwebpageschemaoptions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L159", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_schema", - "target": "frontend_application_lib_schema_generatemedicalwebpageschema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L185", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_schema", - "target": "frontend_application_lib_schema_videoobjectschemaoptions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L195", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_schema", - "target": "frontend_application_lib_schema_generatevideoobjectschema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L217", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_schema", - "target": "frontend_application_lib_schema_breadcrumbitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L222", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_schema", - "target": "frontend_application_lib_schema_generatebreadcrumbschema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_schema", - "target": "frontend_application_lib_schema_generateorganizationschema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_schema", - "target": "frontend_application_lib_schema_organizationschemaoptions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/schema.ts", - "source_location": "L72", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_schema", - "target": "frontend_application_lib_schema_generatelocalbusinessschema", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/seo.ts", - "source_location": "L123", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_seo", - "target": "frontend_application_lib_seo_formatpagetitle", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/seo.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_seo", - "target": "frontend_application_lib_seo_default_seo_config", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/seo.ts", - "source_location": "L160", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_seo", - "target": "frontend_application_lib_seo_pagemetadataoptions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/seo.ts", - "source_location": "L173", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_seo", - "target": "frontend_application_lib_seo_getpagemetadata", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/seo.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_seo", - "target": "frontend_application_lib_seo_seoconfig", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/seo.ts", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_seo", - "target": "frontend_application_lib_seo_getseoconfig", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_api", - "target": "frontend_application_lib_services_api_baseurl", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_api", - "target": "frontend_application_lib_services_api_base_domain", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_api", - "target": "frontend_application_lib_services_api_apierrorpayload", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_api", - "target": "frontend_application_lib_services_api_api", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/api.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_api", - "target": "frontend_application_lib_services_api_getbaseurl", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L157", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_authservice_authservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_authservice_authresponse", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_authservice_apierr", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_authservice", - "target": "frontend_application_lib_services_authservice_user", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_orderservice_order", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_orderservice_apierr", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_orderservice_orderitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L96", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_orderservice", - "target": "frontend_application_lib_services_orderservice_orderservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_services_productservice_backendproduct", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L383", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_services_productservice_productservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice", - "target": "frontend_application_lib_services_productservice_category_slug_to_name", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/ticketService.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_ticketservice", - "target": "frontend_application_lib_services_ticketservice_ticket", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/ticketService.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_ticketservice", - "target": "frontend_application_lib_services_ticketservice_ticketmessage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/ticketService.ts", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_ticketservice", - "target": "frontend_application_lib_services_ticketservice_createticketpayload", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/ticketService.ts", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_ticketservice", - "target": "frontend_application_lib_services_ticketservice_ticketservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/videoService.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_videoservice", - "target": "frontend_application_lib_services_videoservice_videoservice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/videoService.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_videoservice", - "target": "frontend_application_lib_services_videoservice_video", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_store_cartstore_order", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_store_cartstore_cartstore", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_store_cartstore_usecartstore", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/cartStore.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_cartstore", - "target": "frontend_application_lib_store_cartstore_cartitem", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_settingsstore", - "target": "frontend_application_lib_store_settingsstore_settingsstore", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_settingsstore", - "target": "frontend_application_lib_store_settingsstore_usesettingsstore", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/settingsStore.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_settingsstore", - "target": "frontend_application_lib_store_settingsstore_scientificterm", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_tests_cartstore_test", - "target": "frontend_application_lib_store_tests_cartstore_test_mockproduct", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/uiStore.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_uistore", - "target": "frontend_application_lib_store_uistore_useuistore", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/uiStore.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_uistore", - "target": "frontend_application_lib_store_uistore_uistate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_usepetstore_healthlog", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_usepetstore_petconsumption", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_usepetstore_petprofile", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L50", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_usepetstore_petstore", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_usepetstore_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/usePetStore.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_usepetstore", - "target": "frontend_application_lib_store_usepetstore_reminder", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_userstore_userrole", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_userstore_address", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_userstore_transaction", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_userstore_userprofile", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_userstore_userstore", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/store/userStore.ts", - "source_location": "L63", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_store_userstore", - "target": "frontend_application_lib_store_userstore_useuserstore", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_banner", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L102", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_homeapiresponse", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L109", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_navigationtarget", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L111", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_navigationhandler", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_smartadvisorrule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_testimonial", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_ingredient", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_prescription", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L67", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_b2binquiry", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L82", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_partneraccount", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/types.ts", - "source_location": "L94", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_types", - "target": "frontend_application_lib_types_dosageconfig", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/utils.ts", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_utils", - "target": "frontend_application_lib_utils_topersian", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/utils.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_utils", - "target": "frontend_application_lib_utils_cn", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/utils.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_utils", - "target": "frontend_application_lib_utils_toenglishdigits", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/next.config.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_next_config", - "target": "frontend_application_next_config_nextconfig", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/next.config.ts", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_next_config", - "target": "frontend_application_next_config_securityheaders", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package", - "target": "frontend_application_package_dependencies", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package", - "target": "frontend_application_package_name", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package", - "target": "frontend_application_package_devdependencies", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package", - "target": "frontend_application_package_version", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package", - "target": "frontend_application_package_private", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package", - "target": "frontend_application_package_scripts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_axios", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_lucide_react", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_motion", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_next", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_react", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_react_dom", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_sonner", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_dependencies", - "target": "frontend_application_package_dependencies_zustand", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_tailwindcss_postcss", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_testing_library_jest_dom", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_testing_library_react", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_types_node", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_types_react", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_types_react_dom", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_vitejs_plugin_react", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_eslint", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_eslint_config_next", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_jsdom", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_tailwindcss", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_typescript", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_devdependencies", - "target": "frontend_application_package_devdependencies_vitest", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_scripts", - "target": "frontend_application_package_scripts_dev", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_scripts", - "target": "frontend_application_package_scripts_build", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_scripts", - "target": "frontend_application_package_scripts_start", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/package.json", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_package_scripts", - "target": "frontend_application_package_scripts_lint", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/postcss.config.mjs", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_postcss_config", - "target": "frontend_application_postcss_config_config", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L119", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_arch_linux", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L103", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L127", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_contributors", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L131", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_license", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_to_do_variable", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", - "source_location": "L83", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", - "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/README.md", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_readme", - "target": "frontend_application_readme_learn_more", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/README.md", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_readme", - "target": "frontend_application_readme_getting_started", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/README.md", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_readme", - "target": "frontend_application_readme_deploy_on_vercel", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig", - "target": "frontend_application_tsconfig_compileroptions", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig", - "target": "frontend_application_tsconfig_include", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig", - "target": "frontend_application_tsconfig_exclude", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_module", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_moduleresolution", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_resolvejsonmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_isolatedmodules", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_jsx", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_incremental", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_plugins", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_paths", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_target", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_lib", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_allowjs", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_skiplibcheck", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_strict", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_noemit", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/tsconfig.json", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_tsconfig_compileroptions", - "target": "frontend_application_tsconfig_compileroptions_esmoduleinterop", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "frontend/application/vitest.setup.ts", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_vitest_setup", - "target": "frontend_application_vitest_setup_mockintersectionobserver", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "gitea_scripts_with_vpn", - "target": "gitea_scripts_with_vpn_sh__entry", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "package", - "target": "package_devdependencies", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "package", - "target": "package_name", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "package", - "target": "package_version", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "package", - "target": "package_private", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "package", - "target": "package_scripts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "package_devdependencies", - "target": "package_devdependencies_concurrently", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "package_scripts", - "target": "package_scripts_dev", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "package_scripts", - "target": "package_scripts_build_backend", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "package_scripts", - "target": "package_scripts_build_frontend", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "package_scripts", - "target": "package_scripts_build_admin", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "package_scripts", - "target": "package_scripts_build", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "package_scripts", - "target": "package_scripts_start", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "package_scripts", - "target": "package_scripts_install_all", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "package_scripts", - "target": "package_scripts_dev_backend", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "package_scripts", - "target": "package_scripts_dev_frontend", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "package_scripts", - "target": "package_scripts_dev_admin", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/backup_db.sh", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "scripts_backup_db", - "target": "scripts_backup_db_sh__entry", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy.sh", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "scripts_deploy", - "target": "scripts_deploy_sh__entry", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/open-browsers.js", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "scripts_open_browsers", - "target": "scripts_open_browsers_exec", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/open-browsers.js", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "scripts_open_browsers", - "target": "scripts_open_browsers_openurl", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/open-browsers.js", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "scripts_open_browsers", - "target": "scripts_open_browsers_http", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/open-browsers.js", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "scripts_open_browsers", - "target": "scripts_open_browsers_checkandopen", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/open-browsers.js", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "scripts_open_browsers", - "target": "scripts_open_browsers_urls", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/start-dev.js", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "scripts_start_dev", - "target": "scripts_start_dev_spawn_execsync", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/start-dev.js", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "scripts_start_dev", - "target": "scripts_start_dev_waitforbackend", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/start-dev.js", - "source_location": "L2", - "weight": 1.0, - "_origin": "ast", - "source": "scripts_start_dev", - "target": "scripts_start_dev_http", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/start-dev.js", - "source_location": "L3", - "weight": 1.0, - "_origin": "ast", - "source": "scripts_start_dev", - "target": "scripts_start_dev_fs", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/start-dev.js", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "scripts_start_dev", - "target": "scripts_start_dev_backend", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/start-dev.js", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "scripts_start_dev", - "target": "scripts_start_dev_path", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/start-dev.js", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "scripts_start_dev", - "target": "scripts_start_dev_distmainpath", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "start.sh", - "source_location": "L1", - "weight": 1.0, - "_origin": "ast", - "source": "start", - "target": "start_sh__entry", - "confidence_score": 1.0 - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "gitea_scripts_with_vpn", - "target": "gitea_scripts_with_vpn_log", - "confidence_score": 1.0 - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "gitea_scripts_with_vpn", - "target": "gitea_scripts_with_vpn_vpn_is_up", - "confidence_score": 1.0 - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "gitea_scripts_with_vpn", - "target": "gitea_scripts_with_vpn_start_vpn", - "confidence_score": 1.0 - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "gitea_scripts_with_vpn", - "target": "gitea_scripts_with_vpn_stop_vpn", - "confidence_score": 1.0 - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": ".gitea/scripts/with-vpn.sh", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "gitea_scripts_with_vpn", - "target": "gitea_scripts_with_vpn_cleanup", - "confidence_score": 1.0 - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy.sh", - "source_location": "L4", - "weight": 1.0, - "_origin": "ast", - "source": "scripts_deploy", - "target": "scripts_deploy_docker_buildkit", - "confidence_score": 1.0 - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy.sh", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "scripts_deploy", - "target": "scripts_deploy_compose_docker_cli_build", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_b2bmanager", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_bannersmanager", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_blogs", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_categories", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_cms", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_contactsubmissions", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_coupons", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_dashboard", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_doctorsmanager", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_faqmanager", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_financialsettingspage", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_ingredientsmanager", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_media", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_menumanager", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_monitoringpage", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_orders", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_paymentgatewayspage", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_pets", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_prescriptionsmanager", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_products", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_reports", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_reviews", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_seosettingspage", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_settings", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_shippingsettingspage", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_smartadvisormanager", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_smssettingspage", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_sslsettingspage", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_systemsettingspage", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_testimonialsmanager", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_tickets", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_transactions", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_uitexts", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_users", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_videos", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_wholesaleapplications", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_wiki", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", - "_origin": "ast", - "source": "frontend_admin_panel_src_routes_adminroutes", - "target": "frontend_admin_panel_src_pages_zibalportalpage", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_authmodal", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_b2bportal", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_cartdrawer", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_components_loginmodal", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/app/ClientLayout.tsx", - "_origin": "ast", - "source": "frontend_application_app_clientlayout", - "target": "frontend_application_lib_store_usepetstore", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/B2BPortal.tsx", - "_origin": "ast", - "source": "frontend_application_components_b2bportal", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", - "_origin": "ast", - "source": "frontend_application_components_prescriptionuploadmodal", - "target": "frontend_application_lib_services_api", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_components_productreviews", - "confidence_score": 1.0 - }, - { - "relation": "dynamic_import", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ProductPage.tsx", - "_origin": "ast", - "source": "frontend_application_components_productpage", - "target": "frontend_application_components_videomodalplayer", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L121", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getproducts", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L128", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_createproduct", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L135", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updateproduct", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L145", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_deleteproduct", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L155", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getorders", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L162", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getorderbyid", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L169", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L184", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L202", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getcoupons", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L209", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_createcoupon", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L216", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L223", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_togglecoupon", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L233", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_deletecoupon", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L240", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getdoctors", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L247", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_createdoctor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L263", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updatedoctor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L280", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_deletedoctor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L287", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getsettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L294", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updatesettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getusers", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_createuser", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L62", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_getuserdetails", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L69", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updateuser", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L80", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_deleteuser", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L90", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_updateuserrole", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L97", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller", - "target": "backend_src_admin_admin_controller_admincontroller_adjustwallet", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L102", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getusers", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L163", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getuserdetails", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L177", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_createuser", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L220", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updateuser", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L281", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updateuserrole", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L288", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_deleteuser", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L311", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getproducts", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L399", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_createproduct", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L468", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updateproduct", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L559", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_deleteproduct", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L573", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getorders", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getdashboardstats", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L631", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getorderbyid", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L653", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updateorderstatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L673", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_refundordertowallet", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L741", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getcoupons", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L772", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_createcoupon", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L799", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updatecoupon", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L829", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_togglecoupon", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L836", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_deletecoupon", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L842", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getsettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L850", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updatesettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L887", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getpets", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L937", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_getdoctors", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L943", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_createdoctor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L953", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_updatedoctor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L966", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_deletedoctor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L970", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice", - "target": "backend_src_admin_admin_service_adminservice_adjustuserwallet", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L104", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_deleteblogtag", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L111", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_getblogbyid", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L118", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_createblog", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L128", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_updateblog", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L135", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L151", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_getcomments", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L165", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L174", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_deletecomment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_getblogs", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_getauthors", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L59", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_getblogcategories", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L66", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_createblogcategory", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L73", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L83", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_deleteblogcategory", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L90", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_getblogtags", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.controller.ts", - "source_location": "L97", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_controller_blogscontroller", - "target": "backend_src_admin_blogs_controller_blogscontroller_createblogtag", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_getblogs", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L144", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_updateblog", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L209", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_deleteblog", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L218", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_getauthors", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L232", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_getblogcategories", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L243", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_createblogcategory", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L247", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_updateblogcategory", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L251", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_deleteblogcategory", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L256", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_getblogtags", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L265", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_createblogtag", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L277", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_deleteblogtag", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L282", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_getcomments", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L316", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_updatecommentstatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L332", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_deletecomment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L72", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_getblogbyid", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L85", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_createblog", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice", - "target": "backend_src_admin_blogs_service_blogsservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_categoriescontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_categoriescontroller_getcategories", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_categoriescontroller_createcategory", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L56", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L66", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller", - "target": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_service_categoriesservice", - "target": "backend_src_admin_categories_service_categoriesservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_service_categoriesservice", - "target": "backend_src_admin_categories_service_categoriesservice_getcategories", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_service_categoriesservice", - "target": "backend_src_admin_categories_service_categoriesservice_getallcategoriesraw", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_service_categoriesservice", - "target": "backend_src_admin_categories_service_categoriesservice_createcategory", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_service_categoriesservice", - "target": "backend_src_admin_categories_service_categoriesservice_updatecategory", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/categories.service.ts", - "source_location": "L68", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_service_categoriesservice", - "target": "backend_src_admin_categories_service_categoriesservice_deletecategory", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_mediacontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_mediacontroller_getallmedia", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_mediacontroller_uploadfile", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L56", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_mediacontroller_deletemedia", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L66", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller", - "target": "backend_src_admin_media_controller_mediacontroller_updatemedia", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_service_mediaservice", - "target": "backend_src_admin_media_service_mediaservice_getallmedia", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_service_mediaservice", - "target": "backend_src_admin_media_service_mediaservice_uploadfile", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_service_mediaservice", - "target": "backend_src_admin_media_service_mediaservice_deletemedia", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_service_mediaservice", - "target": "backend_src_admin_media_service_mediaservice_deletemanymedia", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_service_mediaservice", - "target": "backend_src_admin_media_service_mediaservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/media.service.ts", - "source_location": "L92", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_service_mediaservice", - "target": "backend_src_admin_media_service_mediaservice_updatemedia", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_controller_petscontroller", - "target": "backend_src_admin_pets_controller_petscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_controller_petscontroller", - "target": "backend_src_admin_pets_controller_petscontroller_getpets", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.controller.ts", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_controller_petscontroller", - "target": "backend_src_admin_pets_controller_petscontroller_deletepet", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_service_petsservice", - "target": "backend_src_admin_pets_service_petsservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_service_petsservice", - "target": "backend_src_admin_pets_service_petsservice_getpets", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/pets.service.ts", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_pets_service_petsservice", - "target": "backend_src_admin_pets_service_petsservice_deletepet", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_reports_controller_reportscontroller", - "target": "backend_src_admin_reports_controller_reportscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_reports_controller_reportscontroller", - "target": "backend_src_admin_reports_controller_reportscontroller_getreports", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_reports_service_reportsservice", - "target": "backend_src_admin_reports_service_reportsservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/reports.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_reports_service_reportsservice", - "target": "backend_src_admin_reports_service_reportsservice_getdashboardreports", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_sslcontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_sslcontroller_getstatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L98", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller", - "target": "backend_src_admin_ssl_controller_sslcontroller_testdomain", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L113", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_updatecertificates", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L177", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_getcertpath", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_getkeypath", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_toshamsi", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/ssl.service.ts", - "source_location": "L62", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_service_sslservice", - "target": "backend_src_admin_ssl_service_sslservice_getstatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_wikicontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_wikicontroller_getterms", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_wikicontroller_createterm", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_wikicontroller_updateterm", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.controller.ts", - "source_location": "L59", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_controller_wikicontroller", - "target": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_service_wikiservice", - "target": "backend_src_admin_wiki_service_wikiservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_service_wikiservice", - "target": "backend_src_admin_wiki_service_wikiservice_getterms", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_service_wikiservice", - "target": "backend_src_admin_wiki_service_wikiservice_createterm", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_service_wikiservice", - "target": "backend_src_admin_wiki_service_wikiservice_updateterm", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/admin/wiki.service.ts", - "source_location": "L57", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_wiki_service_wikiservice", - "target": "backend_src_admin_wiki_service_wikiservice_deleteterm", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.controller.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_controller_appcontroller", - "target": "backend_src_app_controller_appcontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.controller.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_controller_appcontroller", - "target": "backend_src_app_controller_appcontroller_gethello", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L90", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module_appmodule", - "target": "backend_src_app_module_appmodule_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.module.ts", - "source_location": "L92", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_module_appmodule", - "target": "backend_src_app_module_appmodule_configure", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/app.service.ts", - "source_location": "L5", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_service_appservice", - "target": "backend_src_app_service_appservice_gethello", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L107", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_refresh", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L120", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_logout", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L57", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_sendotp", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L68", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_verifyotp", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L79", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_register", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L88", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_login", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.controller.ts", - "source_location": "L97", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_controller_authcontroller", - "target": "backend_src_auth_auth_controller_authcontroller_adminlogin", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L126", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_verifyotp", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L167", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_register", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L222", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_login", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L263", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_adminlogin", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L319", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_refresh", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice", - "target": "backend_src_auth_auth_service_authservice_sendotp", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/jwt-auth.guard.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_jwt_auth_guard_jwtauthguard", - "target": "backend_src_auth_jwt_auth_guard_jwtauthguard_handlerequest", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_jwt_strategy_jwtstrategy", - "target": "backend_src_auth_jwt_strategy_jwtstrategy_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_auth_jwt_strategy_jwtstrategy", - "target": "backend_src_auth_jwt_strategy_jwtstrategy_validate", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L53", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L64", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L73", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L86", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller", - "target": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_service_b2bservice", - "target": "backend_src_b2b_b2b_service_b2bservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_service_b2bservice", - "target": "backend_src_b2b_b2b_service_b2bservice_createinquiry", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_service_b2bservice", - "target": "backend_src_b2b_b2b_service_b2bservice_findallinquiries", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_service_b2bservice", - "target": "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_service_b2bservice", - "target": "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L67", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_service_b2bservice", - "target": "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/b2b/b2b.service.ts", - "source_location": "L95", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_service_b2bservice", - "target": "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller", - "target": "backend_src_banners_banners_controller_bannerscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller", - "target": "backend_src_banners_banners_controller_bannerscontroller_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller", - "target": "backend_src_banners_banners_controller_bannerscontroller_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller", - "target": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L53", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller", - "target": "backend_src_banners_banners_controller_bannerscontroller_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L62", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller", - "target": "backend_src_banners_banners_controller_bannerscontroller_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_service_bannersservice", - "target": "backend_src_banners_banners_service_bannersservice_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_service_bannersservice", - "target": "backend_src_banners_banners_service_bannersservice_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_service_bannersservice", - "target": "backend_src_banners_banners_service_bannersservice_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_service_bannersservice", - "target": "backend_src_banners_banners_service_bannersservice_reorder", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_service_bannersservice", - "target": "backend_src_banners_banners_service_bannersservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/banners/banners.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_service_bannersservice", - "target": "backend_src_banners_banners_service_bannersservice_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "backend_src_blogs_blogs_controller_blogscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "backend_src_blogs_blogs_controller_blogscontroller_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "backend_src_blogs_blogs_controller_blogscontroller_findcategories", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "backend_src_blogs_blogs_controller_blogscontroller_findtags", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "backend_src_blogs_blogs_controller_blogscontroller_findhomepage", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L63", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "backend_src_blogs_blogs_controller_blogscontroller_findone", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L69", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "backend_src_blogs_blogs_controller_blogscontroller_findcomments", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.controller.ts", - "source_location": "L77", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_controller_blogscontroller", - "target": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_service_blogsservice", - "target": "backend_src_blogs_blogs_service_blogsservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L140", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_service_blogsservice", - "target": "backend_src_blogs_blogs_service_blogsservice_findonebyslug", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_service_blogsservice", - "target": "backend_src_blogs_blogs_service_blogsservice_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L302", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_service_blogsservice", - "target": "backend_src_blogs_blogs_service_blogsservice_getcategories", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L316", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_service_blogsservice", - "target": "backend_src_blogs_blogs_service_blogsservice_gettags", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L329", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_service_blogsservice", - "target": "backend_src_blogs_blogs_service_blogsservice_findcommentsbyslug", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L342", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_service_blogsservice", - "target": "backend_src_blogs_blogs_service_blogsservice_addcomment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/blogs/blogs.service.ts", - "source_location": "L99", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_blogs_blogs_service_blogsservice", - "target": "backend_src_blogs_blogs_service_blogsservice_findhomepage", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L101", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L110", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_getherobanners", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_createherobanner", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L67", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L73", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L82", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L89", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L95", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller", - "target": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_getherobanners", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_createherobanner", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_updateherobanner", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_deleteherobanner", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_getvettestimonials", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_createvettestimonial", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_updatevettestimonial", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L56", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_deletevettestimonial", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_getsmartadvisorrules", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L67", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L71", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/cms/cms.service.ts", - "source_location": "L82", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_service_cmsservice", - "target": "backend_src_cms_cms_service_cmsservice_deletesmartadvisorrule", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L117", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_deriveerrorcode", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_catch", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/filters/http-exception.filter.ts", - "source_location": "L91", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter", - "target": "backend_src_common_filters_http_exception_filter_customhttpexceptionfilter_translategenericmessage", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/filters/prisma-exception.filter.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter", - "target": "backend_src_common_filters_prisma_exception_filter_prismaexceptionfilter_catch", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_guards_roles_guard_rolesguard", - "target": "backend_src_common_guards_roles_guard_rolesguard_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/guards/roles.guard.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_guards_roles_guard_rolesguard", - "target": "backend_src_common_guards_roles_guard_rolesguard_canactivate", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_intercept", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/interceptors/decimal.interceptor.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor", - "target": "backend_src_common_interceptors_decimal_interceptor_decimalinterceptor_transform", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L11", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_metrics_controller_metricscontroller", - "target": "backend_src_common_metrics_controller_metricscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L13", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_metrics_controller_metricscontroller", - "target": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/metrics.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_metrics_controller_metricscontroller", - "target": "backend_src_common_metrics_controller_metricscontroller_getmetrics", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L115", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatesettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_secret", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatetag", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L50", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidatepath", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_frontendurl", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L79", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/revalidation/revalidation.service.ts", - "source_location": "L99", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_revalidation_revalidation_service_revalidationservice", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L1015", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_sendsms", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L123", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_postasmx", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L159", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_recordlog", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L191", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_getsmslogs", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L248", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_deletesmslog", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L255", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_clearallsmslogs", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L262", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_parsepatternsxml", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L300", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_getcredit", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L370", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_getpatterns", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L477", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_addpattern", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L556", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_editpattern", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L59", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L611", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_savelocalpattern", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L639", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_updatelocalpattern", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L679", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L807", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_testsms", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L932", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_sendotp", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L945", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L964", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L981", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/common/services/sms.service.ts", - "source_location": "L997", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_common_services_sms_service_smsservice", - "target": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_submitcontact", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L57", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L71", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller", - "target": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L125", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_service_contactservice", - "target": "backend_src_contact_contact_service_contactservice_getallsubmissions", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L148", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_service_contactservice", - "target": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L159", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_service_contactservice", - "target": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_service_contactservice", - "target": "backend_src_contact_contact_service_contactservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_service_contactservice", - "target": "backend_src_contact_contact_service_contactservice_submitcontactform", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/contact/contact.service.ts", - "source_location": "L77", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_service_contactservice", - "target": "backend_src_contact_contact_service_contactservice_getcontactinfo", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller", - "target": "backend_src_doctors_doctors_controller_doctorscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller", - "target": "backend_src_doctors_doctors_controller_doctorscontroller_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller", - "target": "backend_src_doctors_doctors_controller_doctorscontroller_findone", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller", - "target": "backend_src_doctors_doctors_controller_doctorscontroller_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller", - "target": "backend_src_doctors_doctors_controller_doctorscontroller_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller", - "target": "backend_src_doctors_doctors_controller_doctorscontroller_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_service_doctorsservice", - "target": "backend_src_doctors_doctors_service_doctorsservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_service_doctorsservice", - "target": "backend_src_doctors_doctors_service_doctorsservice_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L59", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_service_doctorsservice", - "target": "backend_src_doctors_doctors_service_doctorsservice_findone", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L76", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_service_doctorsservice", - "target": "backend_src_doctors_doctors_service_doctorsservice_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L82", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_service_doctorsservice", - "target": "backend_src_doctors_doctors_service_doctorsservice_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/doctors/doctors.service.ts", - "source_location": "L91", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_doctors_doctors_service_doctorsservice", - "target": "backend_src_doctors_doctors_service_doctorsservice_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller", - "target": "backend_src_faq_faq_controller_faqcontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller", - "target": "backend_src_faq_faq_controller_faqcontroller_findactive", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L33", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller", - "target": "backend_src_faq_faq_controller_faqcontroller_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller", - "target": "backend_src_faq_faq_controller_faqcontroller_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L59", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller", - "target": "backend_src_faq_faq_controller_faqcontroller_reorder", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L68", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller", - "target": "backend_src_faq_faq_controller_faqcontroller_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L86", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller", - "target": "backend_src_faq_faq_controller_faqcontroller_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_service_faqservice", - "target": "backend_src_faq_faq_service_faqservice_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_service_faqservice", - "target": "backend_src_faq_faq_service_faqservice_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_service_faqservice", - "target": "backend_src_faq_faq_service_faqservice_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_service_faqservice", - "target": "backend_src_faq_faq_service_faqservice_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_service_faqservice", - "target": "backend_src_faq_faq_service_faqservice_reorder", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_service_faqservice", - "target": "backend_src_faq_faq_service_faqservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/faq/faq.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_faq_faq_service_faqservice", - "target": "backend_src_faq_faq_service_faqservice_findactive", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_home_controller_homecontroller", - "target": "backend_src_home_home_controller_homecontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_home_controller_homecontroller", - "target": "backend_src_home_home_controller_homecontroller_gethomedata", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_home_service_homeservice", - "target": "backend_src_home_home_service_homeservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/home/home.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_home_home_service_homeservice", - "target": "backend_src_home_home_service_homeservice_gethomedata", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller", - "target": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_service_ingredientsservice", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice_findone", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_service_ingredientsservice", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_service_ingredientsservice", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_service_ingredientsservice", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_service_ingredientsservice", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/ingredients/ingredients.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_ingredients_ingredients_service_ingredientsservice", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L114", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller", - "target": "backend_src_menu_menu_controller_menucontroller_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller", - "target": "backend_src_menu_menu_controller_menucontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller", - "target": "backend_src_menu_menu_controller_menucontroller_findbytype", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller", - "target": "backend_src_menu_menu_controller_menucontroller_findbytypeparam", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller", - "target": "backend_src_menu_menu_controller_menucontroller_findalladmin", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L60", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller", - "target": "backend_src_menu_menu_controller_menucontroller_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L82", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller", - "target": "backend_src_menu_menu_controller_menucontroller_reorder", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.controller.ts", - "source_location": "L91", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_controller_menucontroller", - "target": "backend_src_menu_menu_controller_menucontroller_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_service_menuservice", - "target": "backend_src_menu_menu_service_menuservice_onmoduleinit", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L181", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_service_menuservice", - "target": "backend_src_menu_menu_service_menuservice_findbytype", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L195", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_service_menuservice", - "target": "backend_src_menu_menu_service_menuservice_findalladmin", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L207", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_service_menuservice", - "target": "backend_src_menu_menu_service_menuservice_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_service_menuservice", - "target": "backend_src_menu_menu_service_menuservice_seedifempty", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L221", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_service_menuservice", - "target": "backend_src_menu_menu_service_menuservice_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L240", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_service_menuservice", - "target": "backend_src_menu_menu_service_menuservice_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L248", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_service_menuservice", - "target": "backend_src_menu_menu_service_menuservice_reorder", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/menu/menu.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_menu_menu_service_menuservice", - "target": "backend_src_menu_menu_service_menuservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L110", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L146", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_orderscontroller_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L196", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L208", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_orderscontroller_findone", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_orderscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L85", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller", - "target": "backend_src_orders_orders_controller_orderscontroller_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L101", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_validatecoupon", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L322", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_updatestatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L353", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_findallbyuser", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L386", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_findone", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L400", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L430", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_releaseexpiredinventoryreservations", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L452", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice", - "target": "backend_src_orders_orders_service_ordersservice_retrypayment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getgatewayname", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L50", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_requestpayment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_verifypayment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_inquirypayment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L53", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_getstarturl", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/interfaces/payment-gateway.interface.ts", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway", - "target": "backend_src_payment_interfaces_payment_gateway_interface_ipaymentgateway_checkhealth", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L116", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L169", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L194", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L224", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L237", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L246", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_createrefund", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L264", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L279", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L300", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L325", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L343", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L356", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L365", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L376", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L391", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L401", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L416", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L439", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L448", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L471", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L485", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L508", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L525", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L534", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L545", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L556", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L580", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L591", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L603", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L618", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L75", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L97", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller", - "target": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L1014", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L139", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L227", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L540", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L635", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_gettransaction", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L685", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_getadmintransactions", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L798", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L845", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L896", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_gettransactionbytrackid", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L902", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L925", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_adminmanualverify", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L988", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice", - "target": "backend_src_payment_payment_service_paymentservice_adminmanualreject", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L152", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_createcheckout", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L179", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquirecheckout", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L198", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getcheckoutlist", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L222", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_cancelcheckout", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L240", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountlist", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L252", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountbalance", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L266", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getstatementlist", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L294", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getidentifiedpaymentlist", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L318", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_changeidentifiedpaymentstatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L340", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquireidentifiedpayment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L53", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccesstoken", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L71", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal-ebank.service.ts", - "source_location": "L86", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_ebank_service_zibalebankservice", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L111", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getfrontendurl", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L130", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getbackendurl", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L156", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_requestpayment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L211", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getstarturl", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L218", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_verifypayment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L260", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_inquirypayment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L304", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_checkhealth", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L368", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_requestlazypayment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L422", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_verifylazypayment", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L465", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getaccesstoken", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getgatewayname", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L516", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_apirequest", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L56", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_callwithretry", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L575", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getwalletlist", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L582", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getwalletbalance", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L589", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_requestrefund", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L625", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_inquirerefund", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L643", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getrefundlist", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L667", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getgatewaytransactionsreport", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L701", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getcheckoutreport", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L722", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getcheckoutqueuereport", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L731", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_inquirecheckoutreport", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L746", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_createsubmerchant", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L761", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getsubmerchantlist", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L768", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_editsubmerchant", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L779", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getresultmessage", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L816", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getstatusmessage", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/payment/zibal.service.ts", - "source_location": "L93", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_zibal_service_zibalservice", - "target": "backend_src_payment_zibal_service_zibalservice_getmerchant", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L119", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L155", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L192", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_findone", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L223", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L253", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L259", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_addreminder", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L269", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_togglereminder", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L285", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_addhealthlog", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L56", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.controller.ts", - "source_location": "L81", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_controller_petscontroller", - "target": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L109", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_findallbyuser", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L150", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_findone", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L161", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L191", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L198", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_addreminder", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L211", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_togglereminder", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L260", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_addhealthlog", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/pets/pets.service.ts", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_pets_pets_service_petsservice", - "target": "backend_src_pets_pets_service_petsservice_findalladmin", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L51", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L71", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller", - "target": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L108", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findone", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L125", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L94", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prisma_prisma_service_prismaservice", - "target": "backend_src_prisma_prisma_service_prismaservice_ensuretablesexist", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prisma_prisma_service_prismaservice", - "target": "backend_src_prisma_prisma_service_prismaservice_onmoduleinit", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/prisma/prisma.service.ts", - "source_location": "L96", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prisma_prisma_service_prismaservice", - "target": "backend_src_prisma_prisma_service_prismaservice_onmoduledestroy", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_productscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_productscontroller_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_productscontroller_getactivefilters", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_productscontroller_getnavigationfilters", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L53", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_productscontroller_getdosageconfig", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L63", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L72", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller", - "target": "backend_src_products_products_controller_productscontroller_findone", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L132", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_findone", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L193", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_getactivefilters", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L228", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_getnavigationfilters", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L263", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_getdosageconfig", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L274", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_updatedosageconfig", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/products/products.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service_productsservice", - "target": "backend_src_products_products_service_productsservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_redis_redis_service_redisservice", - "target": "backend_src_redis_redis_service_redisservice_onmoduledestroy", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_redis_redis_service_redisservice", - "target": "backend_src_redis_redis_service_redisservice_set", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_redis_redis_service_redisservice", - "target": "backend_src_redis_redis_service_redisservice_get", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_redis_redis_service_redisservice", - "target": "backend_src_redis_redis_service_redisservice_del", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_redis_redis_service_redisservice", - "target": "backend_src_redis_redis_service_redisservice_incr", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_redis_redis_service_redisservice", - "target": "backend_src_redis_redis_service_redisservice_ttl", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/redis/redis.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_redis_redis_service_redisservice", - "target": "backend_src_redis_redis_service_redisservice_onmoduleinit", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L104", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L89", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller", - "target": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L137", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L207", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_createreview", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L243", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_deletereview", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L81", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_reviews_reviews_service_reviewsservice", - "target": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L12", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_controller_seocontroller", - "target": "backend_src_seo_seo_controller_seocontroller_getsitemap", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_controller_seocontroller", - "target": "backend_src_seo_seo_controller_seocontroller_getproductschema", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.controller.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_controller_seocontroller", - "target": "backend_src_seo_seo_controller_seocontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_service_seoservice", - "target": "backend_src_seo_seo_service_seoservice_getproductschema", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L6", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_service_seoservice", - "target": "backend_src_seo_seo_service_seoservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/seo/seo.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_seo_seo_service_seoservice", - "target": "backend_src_seo_seo_service_seoservice_getsitemapurls", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L102", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L111", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L123", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L130", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getseosettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L139", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L149", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L158", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L168", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L177", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L187", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L196", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L205", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", "source_location": "L214", "weight": 1.0, "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_testsms", - "confidence_score": 1.0 + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_b2bportal_b2bportal" }, { - "relation": "method", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L229", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getpatterns", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L238", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L253", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L265", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L274", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L283", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getuitexts", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L65", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L80", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L86", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_getfinancial", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L96", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller", - "target": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L148", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L153", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_onmoduleinit", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L157", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L184", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getuitexts", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L229", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_updateuitext", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L261", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L270", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L326", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L372", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getscientificterms", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L376", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_upsertscientificterm", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L397", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_deletescientificterm", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L403", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getcategorysetting", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L499", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_updatecategorysetting", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L583", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getsmssettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L587", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getsmscredit", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L591", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_updatesmssettings", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L600", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_testsms", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L604", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getpatterns", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L608", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_addpattern", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L612", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_editpattern", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L616", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_getsmslogs", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L620", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_deletesmslog", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L624", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice", - "target": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller", - "target": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findhomepage", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L58", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller", - "target": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_service_testimonialsservice", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_findhomepage", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_service_testimonialsservice", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L28", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_service_testimonialsservice", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_service_testimonialsservice", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L7", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_service_testimonialsservice", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/testimonials/testimonials.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_service_testimonialsservice", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L42", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L53", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L73", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L89", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L98", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller", - "target": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L100", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", + "confidence_score": 1.0, + "source_file": "frontend/application/components/BlogPreviewSection.tsx", "source_location": "L142", "weight": 1.0, "_origin": "ast", - "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_replytoticket", - "confidence_score": 1.0 + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_blogpreviewsection_blogpreviewsection" }, { - "relation": "method", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L207", + "confidence_score": 1.0, + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L139", "weight": 1.0, "_origin": "ast", - "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets", - "confidence_score": 1.0 + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_cartdrawer_cartdrawer" }, { - "relation": "method", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L23", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L279", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_createticket", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/tickets/tickets.service.ts", - "source_location": "L79", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_service_ticketsservice", - "target": "backend_src_tickets_tickets_service_ticketsservice_getusertickets", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L103", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_userscontroller_updateprofile", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L131", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_userscontroller_addaddress", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L159", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_userscontroller_updateaddress", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L179", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_userscontroller_deleteaddress", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L198", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L223", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_userscontroller_topupwallet", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L44", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_userscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L68", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller", - "target": "backend_src_users_users_controller_userscontroller_getprofile", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L125", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L210", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_addaddress", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L232", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_updateaddress", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L25", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L258", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_deleteaddress", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L264", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_setdefaultaddress", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_findbyid", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L275", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_topupwallet", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/users/users.service.ts", - "source_location": "L299", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_service_usersservice", - "target": "backend_src_users_users_service_usersservice_findbyphone", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller", - "target": "backend_src_videos_videos_controller_videoscontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", + "source_file": "frontend/application/components/Hero.tsx", "source_location": "L34", "weight": 1.0, "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller", - "target": "backend_src_videos_videos_controller_videoscontroller_findall", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_hero_statcounter" }, { - "relation": "method", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L40", + "confidence_score": 1.0, + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L297", "weight": 1.0, "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller", - "target": "backend_src_videos_videos_controller_videoscontroller_findone", - "confidence_score": 1.0 + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_loginmodal_loginmodal" }, { - "relation": "method", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L48", + "confidence_score": 1.0, + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L378", "weight": 1.0, "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller", - "target": "backend_src_videos_videos_controller_videoscontroller_create", - "confidence_score": 1.0 + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_petprofile_petprofile" }, { - "relation": "method", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L56", + "confidence_score": 1.0, + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L492", "weight": 1.0, "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller", - "target": "backend_src_videos_videos_controller_videoscontroller_update", - "confidence_score": 1.0 + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_productpage_productpage" }, { - "relation": "method", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L67", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller", - "target": "backend_src_videos_videos_controller_videoscontroller_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L105", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_service_videosservice", - "target": "backend_src_videos_videos_service_videosservice_remove", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L15", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_service_videosservice", - "target": "backend_src_videos_videos_service_videosservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L17", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_service_videosservice", - "target": "backend_src_videos_videos_service_videosservice_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L60", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_service_videosservice", - "target": "backend_src_videos_videos_service_videosservice_findone", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L75", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_service_videosservice", - "target": "backend_src_videos_videos_service_videosservice_create", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/videos/videos.service.ts", - "source_location": "L93", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_service_videosservice", - "target": "backend_src_videos_videos_service_videosservice_update", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L21", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L63", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller", - "target": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L14", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_service_wholesaleservice", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_service_wholesaleservice", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L63", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_service_wholesaleservice", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L77", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_service_wholesaleservice", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/wholesale/wholesale.service.ts", - "source_location": "L9", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wholesale_wholesale_service_wholesaleservice", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L19", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller_wikicontroller", - "target": "backend_src_wiki_wiki_controller_wikicontroller_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L24", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller_wikicontroller", - "target": "backend_src_wiki_wiki_controller_wikicontroller_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.controller.ts", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_controller_wikicontroller", - "target": "backend_src_wiki_wiki_controller_wikicontroller_findone", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_service_wikiservice", - "target": "backend_src_wiki_wiki_service_wikiservice_findall", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_service_wikiservice", - "target": "backend_src_wiki_wiki_service_wikiservice_findonebykey", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "backend/src/wiki/wiki.service.ts", - "source_location": "L8", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_wiki_wiki_service_wikiservice", - "target": "backend_src_wiki_wiki_service_wikiservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L22", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", - "target": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_getderivedstatefromerror", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", - "target": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_componentdidcatch", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L53", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", - "target": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_handlereload", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L57", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", - "target": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_handlegohome", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/admin-panel/src/components/RouteErrorBoundary.tsx", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary", - "target": "frontend_admin_panel_src_components_routeerrorboundary_routeerrorboundary_render", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L18", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_errorboundary_errorboundary", - "target": "frontend_application_components_errorboundary_errorboundary_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_errorboundary_errorboundary", - "target": "frontend_application_components_errorboundary_errorboundary_getderivedstatefromerror", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_errorboundary_errorboundary", - "target": "frontend_application_components_errorboundary_errorboundary_componentdidcatch", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_errorboundary_errorboundary", - "target": "frontend_application_components_errorboundary_errorboundary_handleretry", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/components/ErrorBoundary.tsx", - "source_location": "L39", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_components_errorboundary_errorboundary", - "target": "frontend_application_components_errorboundary_errorboundary_render", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L103", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_login", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L121", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_getprofile", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/authService.ts", + "confidence_score": 1.0, + "source_file": "frontend/application/components/ProductReviews.tsx", "source_location": "L138", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_updateprofile", - "confidence_score": 1.0 + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_productreviews_productreviews" }, { - "relation": "method", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L152", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L13", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_logout", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_app_homeclient" }, { - "relation": "method", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L41", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L17", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_constructor", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_app_payment_verify_page" }, { - "relation": "method", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L43", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L3", "weight": 1.0, "_origin": "ast", - "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_getinstance", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_archivepage" }, { - "relation": "method", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L53", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_sendotp", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L67", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_verifyotp", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/authService.ts", - "source_location": "L85", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_authservice_authservice", - "target": "frontend_application_lib_services_authservice_authservice_register", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_orderservice_orderservice", - "target": "frontend_application_lib_services_orderservice_orderservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_orderservice_orderservice", - "target": "frontend_application_lib_services_orderservice_orderservice_getinstance", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_orderservice_orderservice", - "target": "frontend_application_lib_services_orderservice_orderservice_createorder", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L70", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_orderservice_orderservice", - "target": "frontend_application_lib_services_orderservice_orderservice_getuserorders", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/orderService.ts", - "source_location": "L84", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_orderservice_orderservice", - "target": "frontend_application_lib_services_orderservice_orderservice_getorderbyid", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L235", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_serverfetch", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L246", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getproducts", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L285", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getproductbyid", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L299", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getproductbyslug", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L313", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L343", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getactivefilters", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L357", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getnavigationfilters", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L372", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getbanners", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L74", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_constructor", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L76", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_getinstance", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "frontend/application/lib/services/productService.ts", - "source_location": "L83", - "weight": 1.0, - "_origin": "ast", - "source": "frontend_application_lib_services_productservice_productservice", - "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L248", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration_health_logs", - "target": "backend_prisma_migrations_20260526145407_init_migration_pets", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L257", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration_order_items", - "target": "backend_prisma_migrations_20260526145407_init_migration_orders", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L260", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration_order_items", - "target": "backend_prisma_migrations_20260526145407_init_migration_products", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L251", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration_orders", - "target": "backend_prisma_migrations_20260526145407_init_migration_users", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L254", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration_orders", - "target": "backend_prisma_migrations_20260526145407_init_migration_coupons", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L236", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions", - "target": "backend_prisma_migrations_20260526145407_init_migration_pets", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L233", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration_pets", - "target": "backend_prisma_migrations_20260526145407_init_migration_users", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L227", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients", - "target": "backend_prisma_migrations_20260526145407_init_migration_products", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L230", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms", - "target": "backend_prisma_migrations_20260526145407_init_migration_products", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L245", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions", - "target": "backend_prisma_migrations_20260526145407_init_migration_reminders", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L239", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration_reminders", - "target": "backend_prisma_migrations_20260526145407_init_migration_pets", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L242", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration_reminders", - "target": "backend_prisma_migrations_20260526145407_init_migration_products", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L221", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration_user_addresses", - "target": "backend_prisma_migrations_20260526145407_init_migration_users", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", - "source_location": "L224", - "weight": 1.0, - "_origin": "ast", - "source": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions", - "target": "backend_prisma_migrations_20260526145407_init_migration_users", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "docs/README.md", - "source_location": "L20", - "weight": 1.0, - "_origin": "ast", - "source": "docs_readme", - "target": "docs_04_setup_and_deployment", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "docs/README.md", + "source_file": "frontend/application/components/AuthModal.tsx", "source_location": "L23", "weight": 1.0, "_origin": "ast", - "source": "docs_readme", - "target": "docs_05_devops_and_monitoring", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_authmodal" }, { - "relation": "references", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "docs/README.md", - "source_location": "L26", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L20", "weight": 1.0, "_origin": "ast", - "source": "docs_readme", - "target": "docs_06_testing", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_b2bportal" }, { - "relation": "indirect_call", - "confidence": "INFERRED", - "source_file": "frontend/application/components/Header.tsx", - "source_location": "L185", + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_location": "L9", "weight": 1.0, "_origin": "ast", - "context": "argument", - "source": "frontend_application_components_header_header", - "target": "frontend_application_components_header_header_handleclickoutside", - "confidence_score": 0.5 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_blogpreviewsection" }, { - "relation": "indirect_call", - "confidence": "INFERRED", - "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", - "source_location": "L56", + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L5", "weight": 1.0, "_origin": "ast", - "context": "argument", - "source": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", - "target": "frontend_application_components_podcastinlineplayer_podcastinlineplayer_handleclickoutside", - "confidence_score": 0.5 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_cartdrawer" }, { - "relation": "indirect_call", - "confidence": "INFERRED", - "source_file": "frontend/application/components/PodcastPlayerModal.tsx", - "source_location": "L62", + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L19", "weight": 1.0, "_origin": "ast", - "context": "argument", - "source": "frontend_application_components_podcastplayermodal_podcastplayermodal", - "target": "frontend_application_components_podcastplayermodal_podcastplayermodal_handleclickoutside", - "confidence_score": 0.5 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_checkoutpage" }, { - "relation": "indirect_call", - "confidence": "INFERRED", - "source_file": "frontend/application/components/VideoModalPlayer.tsx", - "source_location": "L67", + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/HeaderButton.tsx", + "source_location": "L4", "weight": 1.0, "_origin": "ast", - "context": "argument", - "source": "frontend_application_components_videomodalplayer_videomodalplayer", - "target": "frontend_application_components_videomodalplayer_videomodalplayer_handleclickoutside", - "confidence_score": 0.5 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_headerbutton" }, { - "relation": "indirect_call", - "confidence": "INFERRED", - "source_file": "scripts/start-dev.js", - "source_location": "L31", + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L6", "weight": 1.0, "_origin": "ast", - "context": "argument", - "source": "scripts_start_dev_waitforbackend", - "target": "scripts_start_dev_waitforbackend_check", - "confidence_score": 0.5 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_hero" }, { - "relation": "indirect_call", - "context": "collection", - "confidence": "INFERRED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L182", + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L8", "weight": 1.0, "_origin": "ast", - "source": "ai_agency_orchestrate_main", - "target": "ai_agency_orchestrate_cmd_status", - "confidence_score": 0.5 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_loginmodal" }, { - "relation": "indirect_call", - "context": "collection", - "confidence": "INFERRED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L183", + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L24", "weight": 1.0, "_origin": "ast", - "source": "ai_agency_orchestrate_main", - "target": "ai_agency_orchestrate_cmd_progress", - "confidence_score": 0.5 + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_orderdetailsmodal" }, { - "relation": "indirect_call", - "context": "collection", - "confidence": "INFERRED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L184", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_orchestrate_main", - "target": "ai_agency_orchestrate_cmd_next_task", - "confidence_score": 0.5 - }, - { - "relation": "indirect_call", - "context": "collection", - "confidence": "INFERRED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L185", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_orchestrate_main", - "target": "ai_agency_orchestrate_cmd_unblock", - "confidence_score": 0.5 - }, - { - "relation": "indirect_call", - "context": "collection", - "confidence": "INFERRED", - "source_file": ".ai_agency/orchestrate.py", - "source_location": "L186", - "weight": 1.0, - "_origin": "ast", - "source": "ai_agency_orchestrate_main", - "target": "ai_agency_orchestrate_cmd_reset", - "confidence_score": 0.5 - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L103", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_adjustwallet", - "target": "backend_src_admin_admin_service_adminservice_adjustuserwallet" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L210", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createcoupon", - "target": "backend_src_admin_admin_service_adminservice_createcoupon" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L257", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createdoctor", - "target": "backend_src_admin_admin_service_adminservice_createdoctor" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L129", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createproduct", - "target": "backend_src_admin_admin_service_adminservice_createproduct" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L52", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_createuser", - "target": "backend_src_admin_admin_service_adminservice_createuser" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L234", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_deletecoupon", - "target": "backend_src_admin_admin_service_adminservice_deletecoupon" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L281", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_deletedoctor", - "target": "backend_src_admin_admin_service_adminservice_deletedoctor" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L146", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_deleteproduct", - "target": "backend_src_admin_admin_service_adminservice_deleteproduct" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L81", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_deleteuser", - "target": "backend_src_admin_admin_service_adminservice_deleteuser" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L203", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getcoupons", - "target": "backend_src_admin_admin_service_adminservice_getcoupons" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", "source_location": "L35", "weight": 1.0, "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getdashboardstats", - "target": "backend_src_admin_admin_service_adminservice_getdashboardstats" + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_petprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_productreviews" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_topupmodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_components_userdashboard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/utils.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils_topersian", + "target": "frontend_application_lib_utils" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L241", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/src/app.module.ts", + "source_location": "L95", "weight": 1.0, "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getdoctors", - "target": "backend_src_admin_admin_service_adminservice_getdoctors" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L163", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getorderbyid", - "target": "backend_src_admin_admin_service_adminservice_getorderbyid" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L156", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getorders", - "target": "backend_src_admin_admin_service_adminservice_getorders" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L122", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getproducts", - "target": "backend_src_admin_admin_service_adminservice_getproducts" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L288", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getsettings", - "target": "backend_src_admin_admin_service_adminservice_getsettings" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L63", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getuserdetails", - "target": "backend_src_admin_admin_service_adminservice_getuserdetails" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_getusers", - "target": "backend_src_admin_admin_service_adminservice_getusers" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L189", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_refundordertowallet", - "target": "backend_src_admin_admin_service_adminservice_refundordertowallet" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L227", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_togglecoupon", - "target": "backend_src_admin_admin_service_adminservice_togglecoupon" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L217", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatecoupon", - "target": "backend_src_admin_admin_service_adminservice_updatecoupon" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L274", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatedoctor", - "target": "backend_src_admin_admin_service_adminservice_updatedoctor" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L174", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateorderstatus", - "target": "backend_src_admin_admin_service_adminservice_updateorderstatus" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L136", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateproduct", - "target": "backend_src_admin_admin_service_adminservice_updateproduct" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L295", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updatesettings", - "target": "backend_src_admin_admin_service_adminservice_updatesettings" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L70", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateuser", - "target": "backend_src_admin_admin_service_adminservice_updateuser" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.controller.ts", - "source_location": "L91", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_controller_admincontroller_updateuserrole", - "target": "backend_src_admin_admin_service_adminservice_updateuserrole" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L461", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice_createproduct", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L565", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice_deleteproduct", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L75", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice_getdashboardstats", - "target": "backend_src_redis_redis_service_redisservice_get" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/admin.service.ts", - "source_location": "L552", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_admin_service_adminservice_updateproduct", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L140", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice_createblog", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L213", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice_deleteblog", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L340", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice_deletecomment", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L205", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice_updateblog", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/blogs.service.ts", - "source_location": "L327", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_blogs_service_blogsservice_updatecommentstatus", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateblog" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L50", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_createcategory", - "target": "backend_src_admin_categories_service_categoriesservice_createcategory" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L67", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", - "target": "backend_src_admin_categories_service_categoriesservice_deletecategory" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L43", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", - "target": "backend_src_admin_categories_service_categoriesservice_getallcategoriesraw" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L37", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_getcategories", - "target": "backend_src_admin_categories_service_categoriesservice_getcategories" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/categories.controller.ts", - "source_location": "L60", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", - "target": "backend_src_admin_categories_service_categoriesservice_updatecategory" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", - "target": "backend_src_admin_media_service_mediaservice_deletemanymedia" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L57", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_deletemedia", - "target": "backend_src_admin_media_service_mediaservice_deletemedia" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L29", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_getallmedia", - "target": "backend_src_admin_media_service_mediaservice_getallmedia" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L76", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_updatemedia", - "target": "backend_src_admin_media_service_mediaservice_updatemedia" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/media.controller.ts", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_media_controller_mediacontroller_uploadfile", - "target": "backend_src_admin_media_service_mediaservice_uploadfile" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/reports.controller.ts", - "source_location": "L16", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_reports_controller_reportscontroller_getreports", - "target": "backend_src_admin_reports_service_reportsservice_getdashboardreports" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L30", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_getstatus", - "target": "backend_src_admin_ssl_service_sslservice_getstatus" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L102", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_testdomain", - "target": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", - "target": "backend_src_admin_ssl_service_sslservice_updatecertificates" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/admin/ssl.controller.ts", - "source_location": "L91", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", - "target": "backend_src_admin_ssl_service_sslservice_updatecertificates" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/app.controller.ts", - "source_location": "L10", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_app_controller_appcontroller_gethello", - "target": "backend_src_app_service_appservice_gethello" + "source": "backend_src_app_module_appmodule_configure", + "target": "backend_src_common_metrics_controller_metricscontroller_incrementrequestcount" }, { "relation": "calls", @@ -128210,437 +82884,1299 @@ "source": "backend_src_app_module_appmodule_configure", "target": "backend_src_redis_redis_service_redisservice_incr" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L17", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_metrics_controller_metricscontroller_getmetrics", + "target": "backend_src_common_metrics_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L18", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_metrics_controller_metricscontroller_getmetrics", + "target": "backend_src_common_metrics_controller_ts_res" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-ui-texts.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_ui_texts_main", + "target": "backend_prisma_seed_ui_texts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-wiki.ts", + "source_location": "L370", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_wiki_main", + "target": "backend_prisma_seed_wiki" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L29", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_findall", + "target": "backend_src_products_products_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L30", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_findall", + "target": "backend_src_products_products_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_findall", + "target": "backend_src_products_products_controller_ts_query" + }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L103", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L32", "weight": 1.0, "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice_sendotp", + "source": "backend_src_products_products_controller_productscontroller_findall", + "target": "backend_src_products_products_service_productsservice_findall" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L70", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_findone", + "target": "backend_src_products_products_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L71", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_findone", + "target": "backend_src_products_products_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L72", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_findone", + "target": "backend_src_products_products_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_products_products_controller_productscontroller_findone", + "target": "backend_src_products_products_service_productsservice_findone" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L35", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_getactivefilters", + "target": "backend_src_products_products_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L36", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_getactivefilters", + "target": "backend_src_products_products_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_products_products_controller_productscontroller_getactivefilters", + "target": "backend_src_products_products_service_productsservice_getactivefilters" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L51", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_getdosageconfig", + "target": "backend_src_products_products_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L52", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_getdosageconfig", + "target": "backend_src_products_products_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L53", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_getdosageconfig", + "target": "backend_src_products_products_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_products_products_controller_productscontroller_getdosageconfig", + "target": "backend_src_products_products_service_productsservice_getdosageconfig" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L43", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_getnavigationfilters", + "target": "backend_src_products_products_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L44", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_getnavigationfilters", + "target": "backend_src_products_products_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_products_products_controller_productscontroller_getnavigationfilters", + "target": "backend_src_products_products_service_productsservice_getnavigationfilters" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L57", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", + "target": "backend_src_products_products_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L59", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", + "target": "backend_src_products_products_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L60", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", + "target": "backend_src_products_products_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L64", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", + "target": "backend_src_products_products_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L65", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", + "target": "backend_src_products_products_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", + "target": "backend_src_products_products_service_productsservice_updatedosageconfig" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L100", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", + "target": "backend_src_auth_auth_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L95", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", + "target": "backend_src_auth_auth_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L96", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", + "target": "httpcode" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L97", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", + "target": "backend_src_auth_auth_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L98", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", + "target": "backend_src_auth_auth_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L99", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_adminlogin", + "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L86", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_login", + "target": "backend_src_auth_auth_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L87", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_login", + "target": "httpcode" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L88", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_login", + "target": "backend_src_auth_auth_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L89", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_login", + "target": "backend_src_auth_auth_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L90", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_login", + "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L91", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_login", + "target": "backend_src_auth_auth_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L119", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_logout", + "target": "backend_src_auth_auth_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L120", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_logout", + "target": "httpcode" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L121", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_logout", + "target": "backend_src_auth_auth_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L122", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_logout", + "target": "backend_src_auth_auth_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L104", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_refresh", + "target": "backend_src_auth_auth_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L105", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_refresh", + "target": "backend_src_auth_auth_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L106", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_refresh", + "target": "backend_src_auth_auth_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L107", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_refresh", + "target": "httpcode" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L108", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_refresh", + "target": "backend_src_auth_auth_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L109", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_refresh", + "target": "backend_src_auth_auth_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L111", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_refresh", + "target": "backend_src_auth_auth_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L75", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_register", + "target": "backend_src_auth_auth_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L76", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_register", + "target": "httpcode" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L77", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_register", + "target": "backend_src_auth_auth_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L78", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_register", + "target": "backend_src_auth_auth_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L79", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_register", + "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L82", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_register", + "target": "backend_src_auth_auth_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L45", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_sendotp", + "target": "backend_src_auth_auth_controller_ts_throttle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L46", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_sendotp", + "target": "backend_src_auth_auth_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L47", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_sendotp", + "target": "httpcode" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_sendotp", + "target": "backend_src_auth_auth_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L49", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_sendotp", + "target": "backend_src_auth_auth_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_sendotp", + "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L59", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_sendotp", + "target": "backend_src_auth_auth_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L63", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", + "target": "backend_src_auth_auth_controller_ts_throttle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L64", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", + "target": "backend_src_auth_auth_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L65", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", + "target": "httpcode" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L66", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", + "target": "backend_src_auth_auth_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L67", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", + "target": "backend_src_auth_auth_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L68", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", + "target": "backend_src_auth_auth_controller_ts_apibadrequestresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L71", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller_authcontroller_verifyotp", + "target": "backend_src_auth_auth_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L482", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_addpattern", + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L492", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_addpattern", + "target": "backend_src_common_services_sms_service_smsservice_postasmx" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L505", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_addpattern", + "target": "backend_src_common_services_sms_service_smsservice_savelocalpattern" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L609", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice_addpattern", + "target": "backend_src_settings_settings_service_settingsservice_addpattern" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L625", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice_clearallsmslogs", + "target": "backend_src_settings_settings_service_settingsservice_clearallsmslogs" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L621", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice_deletesmslog", + "target": "backend_src_settings_settings_service_settingsservice_deletesmslog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L560", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_editpattern", + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L570", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_editpattern", + "target": "backend_src_common_services_sms_service_smsservice_postasmx" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L582", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_editpattern", + "target": "backend_src_common_services_sms_service_smsservice_updatelocalpattern" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L613", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice_editpattern", + "target": "backend_src_settings_settings_service_settingsservice_editpattern" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_getcredit", + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L588", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice_getcredit", + "target": "backend_src_settings_settings_service_settingsservice_getsmscredit" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L371", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_getpatterns", + "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L376", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_getpatterns", + "target": "backend_src_common_services_sms_service_smsservice_postasmx" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L380", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_getpatterns", + "target": "backend_src_common_services_sms_service_smsservice_parsepatternsxml" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L605", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_common_services_sms_service_smsservice_getpatterns", + "target": "backend_src_settings_settings_service_settingsservice_getpatterns" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L985", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_getsmsconfig", + "target": "backend_src_common_services_sms_service_smsservice_sendb2bnotification" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L951", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_getsmsconfig", + "target": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L933", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_getsmsconfig", "target": "backend_src_common_services_sms_service_smsservice_sendotp" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L107", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L680", "weight": 1.0, "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice_sendotp", - "target": "backend_src_redis_redis_service_redisservice_del" + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_getsmsconfig", + "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1002", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_getsmsconfig", + "target": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L969", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_getsmsconfig", + "target": "backend_src_common_services_sms_service_smsservice_sendshippingnotification" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1016", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_getsmsconfig", + "target": "backend_src_common_services_sms_service_smsservice_sendsms" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L816", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_getsmsconfig", + "target": "backend_src_common_services_sms_service_smsservice_testsms" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L50", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L584", "weight": 1.0, "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice_sendotp", - "target": "backend_src_redis_redis_service_redisservice_get" + "source": "backend_src_common_services_sms_service_smsservice_getsmsconfig", + "target": "backend_src_settings_settings_service_settingsservice_getsmssettings" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L52", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L617", "weight": 1.0, "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice_sendotp", - "target": "backend_src_redis_redis_service_redisservice_ttl" + "source": "backend_src_common_services_sms_service_smsservice_getsmslogs", + "target": "backend_src_settings_settings_service_settingsservice_getsmslogs" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L685", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_recordlog", + "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1018", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_recordlog", + "target": "backend_src_common_services_sms_service_smsservice_sendsms" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L820", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_recordlog", + "target": "backend_src_common_services_sms_service_smsservice_testsms" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L986", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_sendb2bnotification", + "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L953", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", + "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L67", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L260", "weight": 1.0, "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice_sendotp", - "target": "backend_src_redis_redis_service_redisservice_incr" + "source": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", + "target": "backend_src_orders_orders_service_ordersservice_create" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L130", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L518", "weight": 1.0, "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice_verifyotp", - "target": "backend_src_redis_redis_service_redisservice_get" + "source": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", + "target": "backend_src_orders_orders_service_ordersservice_retrypayment" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/auth/auth.service.ts", - "source_location": "L139", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L500", "weight": 1.0, "_origin": "ast", - "source": "backend_src_auth_auth_service_authservice_verifyotp", - "target": "backend_src_redis_redis_service_redisservice_del" + "source": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation", + "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/auth/jwt.strategy.ts", - "source_location": "L30", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L934", "weight": 1.0, "_origin": "ast", - "source": "backend_src_auth_jwt_strategy_jwtstrategy_validate", - "target": "backend_src_users_users_service_usersservice_findbyid" + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_sendotp", + "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L36", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L1004", "weight": 1.0, "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", - "target": "backend_src_b2b_b2b_service_b2bservice_createinquiry" + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_sendpatternsms", + "target": "backend_src_common_services_sms_service_smsservice_sendpetcarereminder" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L78", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L970", "weight": 1.0, "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", - "target": "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", - "target": "backend_src_b2b_b2b_service_b2bservice_findallinquiries" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L87", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", - "target": "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L66", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", - "target": "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/b2b/b2b.controller.ts", - "source_location": "L57", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", - "target": "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_create", - "target": "backend_src_banners_banners_service_bannersservice_create" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L27", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_findall", - "target": "backend_src_banners_banners_service_bannersservice_findall" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L63", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_remove", - "target": "backend_src_banners_banners_service_bannersservice_remove" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L45", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", - "target": "backend_src_banners_banners_service_bannersservice_reorder" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/banners/banners.controller.ts", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_banners_banners_controller_bannerscontroller_update", - "target": "backend_src_banners_banners_service_bannersservice_update" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L40", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_createherobanner", - "target": "backend_src_cms_cms_service_cmsservice_createherobanner" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L96", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", - "target": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L68", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", - "target": "backend_src_cms_cms_service_cmsservice_createvettestimonial" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", - "target": "backend_src_cms_cms_service_cmsservice_deleteherobanner" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L111", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", - "target": "backend_src_cms_cms_service_cmsservice_deletesmartadvisorrule" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L83", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", - "target": "backend_src_cms_cms_service_cmsservice_deletevettestimonial" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L34", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_getherobanners", - "target": "backend_src_cms_cms_service_cmsservice_getherobanners" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L90", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", - "target": "backend_src_cms_cms_service_cmsservice_getsmartadvisorrules" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L62", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", - "target": "backend_src_cms_cms_service_cmsservice_getvettestimonials" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", - "target": "backend_src_cms_cms_service_cmsservice_updateherobanner" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L105", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", - "target": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/cms/cms.controller.ts", - "source_location": "L77", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", - "target": "backend_src_cms_cms_service_cmsservice_updatevettestimonial" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", - "target": "backend_src_contact_contact_service_contactservice_getallsubmissions" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L36", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo", - "target": "backend_src_contact_contact_service_contactservice_getcontactinfo" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L31", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_submitcontact", - "target": "backend_src_contact_contact_service_contactservice_submitcontactform" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L83", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", - "target": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/contact/contact.controller.ts", - "source_location": "L61", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", - "target": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus" + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service_smsservice_sendpatternsms", + "target": "backend_src_common_services_sms_service_smsservice_sendshippingnotification" }, { "relation": "calls", @@ -128651,212 +84187,2956 @@ "source_location": "L47", "weight": 1.0, "_origin": "ast", - "source": "backend_src_contact_contact_service_contactservice_submitcontactform", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" + "source": "backend_src_common_services_sms_service_smsservice_sendpatternsms", + "target": "backend_src_contact_contact_service_contactservice_submitcontactform" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L40", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L29", "weight": 1.0, "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_create", - "target": "backend_src_doctors_doctors_service_doctorsservice_create" + "source": "backend_src_common_services_sms_service_smsservice_sendpatternsms", + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L26", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L345", "weight": 1.0, "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_findall", - "target": "backend_src_doctors_doctors_service_doctorsservice_findall" + "source": "backend_src_common_services_sms_service_smsservice_sendshippingnotification", + "target": "backend_src_orders_orders_service_ordersservice_updatestatus" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L32", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L417", "weight": 1.0, "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_findone", - "target": "backend_src_doctors_doctors_service_doctorsservice_findone" + "source": "backend_src_common_services_sms_service_smsservice_sendsms", + "target": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L59", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L154", "weight": 1.0, "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_remove", - "target": "backend_src_doctors_doctors_service_doctorsservice_remove" + "source": "backend_src_common_services_sms_service_smsservice_sendsms", + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/doctors/doctors.controller.ts", - "source_location": "L51", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L601", "weight": 1.0, "_origin": "ast", - "source": "backend_src_doctors_doctors_controller_doctorscontroller_update", - "target": "backend_src_doctors_doctors_service_doctorsservice_update" + "source": "backend_src_common_services_sms_service_smsservice_testsms", + "target": "backend_src_settings_settings_service_settingsservice_testsms" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L233", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L235", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L236", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", + "target": "backend_src_settings_settings_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L237", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L241", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", + "target": "backend_src_settings_settings_controller_ts_body" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L51", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L243", "weight": 1.0, "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_create", - "target": "backend_src_faq_faq_service_faqservice_create" + "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", + "target": "backend_src_settings_settings_service_settingsservice_addpattern" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L278", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L280", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L281", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", + "target": "backend_src_settings_settings_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L282", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", + "target": "backend_src_settings_settings_controller_ts_apioperation" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L25", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L284", "weight": 1.0, "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_findactive", - "target": "backend_src_faq_faq_service_faqservice_findactive" + "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", + "target": "backend_src_settings_settings_service_settingsservice_clearallsmslogs" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L118", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L120", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L121", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "target": "backend_src_settings_settings_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L122", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L123", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "target": "backend_src_settings_settings_controller_ts_param" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/faq/faq.controller.ts", - "source_location": "L34", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L124", "weight": 1.0, "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_findall", - "target": "backend_src_faq_faq_service_faqservice_findall" + "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", + "target": "backend_src_settings_settings_service_settingsservice_deletescientificterm" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L269", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L271", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L272", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", + "target": "backend_src_settings_settings_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L273", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L274", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", + "target": "backend_src_settings_settings_controller_ts_param" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/faq/faq.controller.ts", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L275", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", + "target": "backend_src_settings_settings_service_settingsservice_deletesmslog" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L246", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L248", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L249", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "target": "backend_src_settings_settings_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L250", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L253", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "target": "backend_src_settings_settings_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L253", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "target": "backend_src_settings_settings_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", + "target": "backend_src_settings_settings_service_settingsservice_editpattern" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L84", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getfinancial", + "target": "backend_src_settings_settings_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L85", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getfinancial", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", "source_location": "L87", "weight": 1.0, "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_remove", - "target": "backend_src_faq_faq_service_faqservice_remove" + "source": "backend_src_settings_settings_controller_settingscontroller_getfinancial", + "target": "backend_src_settings_settings_service_settingsservice_getfinancialsettings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L144", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L146", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L147", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", + "target": "backend_src_settings_settings_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L148", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", + "target": "backend_src_settings_settings_controller_ts_apioperation" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/faq/faq.controller.ts", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", + "target": "backend_src_settings_settings_service_settingsservice_getcategorysetting" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L222", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L224", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L225", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", + "target": "backend_src_settings_settings_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L226", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", + "target": "backend_src_settings_settings_service_settingsservice_getpatterns" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L100", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", + "target": "backend_src_settings_settings_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L101", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", + "target": "backend_src_settings_settings_service_settingsservice_getscientificterms" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L128", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getseosettings", + "target": "backend_src_settings_settings_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L129", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getseosettings", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getseosettings", + "target": "backend_src_settings_settings_service_settingsservice_getcategorysetting" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L191", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L193", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L194", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", + "target": "backend_src_settings_settings_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L195", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L197", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", + "target": "backend_src_settings_settings_service_settingsservice_getsmscredit" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L258", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L260", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L261", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "target": "backend_src_settings_settings_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L262", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L265", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "target": "backend_src_settings_settings_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L266", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", + "target": "backend_src_settings_settings_service_settingsservice_getsmslogs" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L182", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L184", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L185", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", + "target": "backend_src_settings_settings_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L186", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", + "target": "backend_src_settings_settings_service_settingsservice_getsmssettings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L163", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L165", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L166", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", + "target": "backend_src_settings_settings_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L167", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", + "target": "backend_src_settings_settings_service_settingsservice_getcategorysetting" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getuitexts", + "target": "backend_src_settings_settings_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L32", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getuitexts", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L33", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_getuitexts", + "target": "backend_src_settings_settings_controller_ts_apiokresponse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_getuitexts", + "target": "backend_src_settings_settings_service_settingsservice_getuitexts" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", "source_location": "L60", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_reorder", - "target": "backend_src_faq_faq_service_faqservice_reorder" + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L61", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", + "target": "backend_src_settings_settings_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L62", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L65", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", + "target": "backend_src_settings_settings_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L65", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", + "target": "backend_src_settings_settings_controller_ts_param" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/faq/faq.controller.ts", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", + "target": "backend_src_settings_settings_service_settingsservice_updateuitext" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L75", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L77", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", "source_location": "L78", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_faq_faq_controller_faqcontroller_update", - "target": "backend_src_faq_faq_service_faqservice_update" + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", + "target": "backend_src_settings_settings_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L79", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L80", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", + "target": "backend_src_settings_settings_controller_ts_body" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/home/home.controller.ts", - "source_location": "L25", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L81", "weight": 1.0, "_origin": "ast", - "source": "backend_src_home_home_controller_homecontroller_gethomedata", - "target": "backend_src_home_home_service_homeservice_gethomedata" + "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", + "target": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L41", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L43", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L44", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", + "target": "backend_src_settings_settings_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L45", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", + "target": "backend_src_settings_settings_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", + "target": "backend_src_settings_settings_controller_ts_param" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", + "target": "backend_src_settings_settings_service_settingsservice_updateuitext" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L209", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_testsms", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L211", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_testsms", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L212", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_testsms", + "target": "backend_src_settings_settings_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L213", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_testsms", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L217", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_testsms", + "target": "backend_src_settings_settings_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_testsms", + "target": "backend_src_settings_settings_service_settingsservice_testsms" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L90", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L92", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L93", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "target": "backend_src_settings_settings_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L94", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "target": "backend_src_settings_settings_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L95", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L96", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "target": "backend_src_settings_settings_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", + "target": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L153", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L155", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L156", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "target": "backend_src_settings_settings_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L157", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L158", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "target": "backend_src_settings_settings_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", + "target": "backend_src_settings_settings_service_settingsservice_updatecategorysetting" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L134", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L136", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L137", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "target": "backend_src_settings_settings_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L138", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L139", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "target": "backend_src_settings_settings_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", + "target": "backend_src_settings_settings_service_settingsservice_updatecategorysetting" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L200", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L202", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L203", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", + "target": "backend_src_settings_settings_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L204", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L205", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", + "target": "backend_src_settings_settings_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", + "target": "backend_src_settings_settings_service_settingsservice_updatesmssettings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L172", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L174", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L175", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "target": "backend_src_settings_settings_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L176", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L177", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "target": "backend_src_settings_settings_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", + "target": "backend_src_settings_settings_service_settingsservice_updatecategorysetting" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L106", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "target": "backend_src_settings_settings_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L108", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "target": "backend_src_settings_settings_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L109", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "target": "backend_src_settings_settings_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L110", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "target": "backend_src_settings_settings_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L112", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "target": "backend_src_settings_settings_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L113", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "target": "backend_src_settings_settings_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", + "target": "backend_src_settings_settings_service_settingsservice_upsertscientificterm" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L405", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice_getcategorysetting", + "target": "backend_src_settings_settings_service_settingsservice_getuitexts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L271", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", + "target": "backend_src_settings_settings_service_settingsservice_getuitexts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L369", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice_getfinancialsettings", + "target": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice_getuitexts", + "target": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L154", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice_onmoduleinit", + "target": "backend_src_settings_settings_service_settingsservice_seeddefaultuitexts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L265", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", + "target": "backend_src_settings_settings_service_settingsservice_updateuitext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L532", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", + "target": "backend_src_settings_settings_service_settingsservice_updatecategorysetting" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L368", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts", + "target": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L44", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_create", + "target": "backend_src_videos_videos_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L45", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_create", + "target": "backend_src_videos_videos_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L46", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_create", + "target": "backend_src_videos_videos_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L47", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_create", + "target": "backend_src_videos_videos_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_create", + "target": "backend_src_videos_videos_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_videos_videos_controller_videoscontroller_create", + "target": "backend_src_videos_videos_service_videosservice_create" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L28", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_findall", + "target": "backend_src_videos_videos_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L29", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_findall", + "target": "backend_src_videos_videos_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L33", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_findall", + "target": "backend_src_videos_videos_controller_ts_apiquery" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L34", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_findall", + "target": "backend_src_videos_videos_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_videos_videos_controller_videoscontroller_findall", + "target": "backend_src_videos_videos_service_videosservice_findall" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L38", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_findone", + "target": "backend_src_videos_videos_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L39", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_findone", + "target": "backend_src_videos_videos_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_findone", + "target": "backend_src_videos_videos_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/videos/videos.controller.ts", "source_location": "L41", "weight": 1.0, "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice_create" + "source": "backend_src_videos_videos_controller_videoscontroller_findone", + "target": "backend_src_videos_videos_service_videosservice_findone" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L63", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_remove", + "target": "backend_src_videos_videos_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L64", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_remove", + "target": "backend_src_videos_videos_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L65", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_remove", + "target": "backend_src_videos_videos_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L66", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_remove", + "target": "backend_src_videos_videos_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L67", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_remove", + "target": "backend_src_videos_videos_controller_ts_param" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L26", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L68", "weight": 1.0, "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice_findall" + "source": "backend_src_videos_videos_controller_videoscontroller_remove", + "target": "backend_src_videos_videos_service_videosservice_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L52", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_update", + "target": "backend_src_videos_videos_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L53", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_update", + "target": "backend_src_videos_videos_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L54", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_update", + "target": "backend_src_videos_videos_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L55", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_update", + "target": "backend_src_videos_videos_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L57", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_update", + "target": "backend_src_videos_videos_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller_videoscontroller_update", + "target": "backend_src_videos_videos_controller_ts_body" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_videos_videos_controller_videoscontroller_update", + "target": "backend_src_videos_videos_service_videosservice_update" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_service_videosservice_findone", + "target": "backend_src_videos_videos_service_videosservice_remove" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_service_videosservice_findone", + "target": "backend_src_videos_videos_service_videosservice_update" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-blogs.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_blogs_main", + "target": "backend_prisma_seed_blogs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-custom.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_custom_main", + "target": "backend_prisma_seed_custom" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_components_ui_mediaselector" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_b2bmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_bannersmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_blogs" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_categories" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_coupons" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_doctorsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_faqmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_financialsettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_ingredientsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_menumanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", "source_location": "L32", "weight": 1.0, "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice_findone" + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_paymentgatewayspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_pets" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_products" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_reports" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_reviews" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_seosettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Settings.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_settings" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_shippingsettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_smartadvisormanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_smssettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_sslsettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_systemsettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_testimonialsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_wiki" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_pages_zibalportalpage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Spinner.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner_spinner", + "target": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_doctorsmanager_doctorsmanager", + "target": "frontend_admin_panel_src_pages_doctorsmanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_faqmanager_faqmanager", + "target": "frontend_admin_panel_src_pages_faqmanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_paymentgatewayspage_paymentgatewayspage", + "target": "frontend_admin_panel_src_pages_paymentgatewayspage" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/ingredients/ingredients.controller.ts", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_reviews_reviews", + "target": "frontend_admin_panel_src_pages_reviews_topersiandigits" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_reviews_reviews", + "target": "frontend_admin_panel_src_pages_reviews" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_reviews_topersiandigits", + "target": "frontend_admin_panel_src_pages_reviews" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Settings.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_settings_settings", + "target": "frontend_admin_panel_src_pages_settings" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_shippingsettingspage_shippingsettingspage", + "target": "frontend_admin_panel_src_pages_shippingsettingspage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_sslsettingspage_sslsettingspage", + "target": "frontend_admin_panel_src_pages_sslsettingspage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/FormField.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_formfield_formfield", + "target": "frontend_admin_panel_src_components_ui_formfield" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L319", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_payment_verify_page_paymentverifypage", + "target": "frontend_application_app_payment_verify_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_payment_verify_page_verifycontent", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_payment_verify_page_verifycontent", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_payment_verify_page_verifycontent", + "target": "frontend_application_app_payment_verify_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_b2bportal_b2bportal", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_b2bportal_b2bportal", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_b2bportal_b2bportal", + "target": "frontend_application_lib_services_api" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_b2bportal_b2bportal", + "target": "frontend_application_components_b2bportal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_loginmodal_loginmodal", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_loginmodal_loginmodal", + "target": "frontend_application_components_loginmodal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", + "target": "frontend_application_lib_services_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", + "target": "frontend_application_components_header" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_prescriptionuploadmodal_prescriptionuploadmodal", + "target": "frontend_application_components_prescriptionuploadmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_getbaseurl", + "target": "frontend_application_lib_services_api" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L55", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_create", + "target": "backend_src_menu_menu_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L57", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_create", + "target": "backend_src_menu_menu_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_create", + "target": "backend_src_menu_menu_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", "source_location": "L59", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice_remove" + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_create", + "target": "backend_src_menu_menu_controller_ts_apioperation" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/ingredients/ingredients.controller.ts", - "source_location": "L50", + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L61", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", - "target": "backend_src_ingredients_ingredients_service_ingredientsservice_update" + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_create", + "target": "backend_src_menu_menu_controller_ts_body" }, { "relation": "calls", @@ -128870,6 +87150,78 @@ "source": "backend_src_menu_menu_controller_menucontroller_create", "target": "backend_src_menu_menu_service_menuservice_create" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L45", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_findalladmin", + "target": "backend_src_menu_menu_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L47", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_findalladmin", + "target": "backend_src_menu_menu_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_findalladmin", + "target": "backend_src_menu_menu_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L49", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_findalladmin", + "target": "backend_src_menu_menu_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L50", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_findalladmin", + "target": "backend_src_menu_menu_controller_ts_apiquery" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L51", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_findalladmin", + "target": "backend_src_menu_menu_controller_ts_query" + }, { "relation": "calls", "context": "call", @@ -128882,6 +87234,54 @@ "source": "backend_src_menu_menu_controller_menucontroller_findalladmin", "target": "backend_src_menu_menu_service_menuservice_findalladmin" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L28", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_findbytype", + "target": "backend_src_menu_menu_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L29", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_findbytype", + "target": "backend_src_menu_menu_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L30", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_findbytype", + "target": "backend_src_menu_menu_controller_ts_apiquery" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L35", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_findbytype", + "target": "backend_src_menu_menu_controller_ts_query" + }, { "relation": "calls", "context": "call", @@ -128894,6 +87294,42 @@ "source": "backend_src_menu_menu_controller_menucontroller_findbytype", "target": "backend_src_menu_menu_service_menuservice_findbytype" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L39", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_findbytypeparam", + "target": "backend_src_menu_menu_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_findbytypeparam", + "target": "backend_src_menu_menu_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L41", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_findbytypeparam", + "target": "backend_src_menu_menu_controller_ts_param" + }, { "relation": "calls", "context": "call", @@ -128906,6 +87342,66 @@ "source": "backend_src_menu_menu_controller_menucontroller_findbytypeparam", "target": "backend_src_menu_menu_service_menuservice_findbytype" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L109", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_remove", + "target": "backend_src_menu_menu_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L111", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_remove", + "target": "backend_src_menu_menu_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L112", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_remove", + "target": "backend_src_menu_menu_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L113", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_remove", + "target": "backend_src_menu_menu_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L114", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_remove", + "target": "backend_src_menu_menu_controller_ts_param" + }, { "relation": "calls", "context": "call", @@ -128918,6 +87414,66 @@ "source": "backend_src_menu_menu_controller_menucontroller_remove", "target": "backend_src_menu_menu_service_menuservice_remove" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L77", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_reorder", + "target": "backend_src_menu_menu_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L79", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_reorder", + "target": "backend_src_menu_menu_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L80", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_reorder", + "target": "backend_src_menu_menu_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L81", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_reorder", + "target": "backend_src_menu_menu_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L82", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_reorder", + "target": "backend_src_menu_menu_controller_ts_body" + }, { "relation": "calls", "context": "call", @@ -128930,6 +87486,78 @@ "source": "backend_src_menu_menu_controller_menucontroller_reorder", "target": "backend_src_menu_menu_service_menuservice_reorder" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L86", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_update", + "target": "backend_src_menu_menu_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L88", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_update", + "target": "backend_src_menu_menu_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L89", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_update", + "target": "backend_src_menu_menu_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L90", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_update", + "target": "backend_src_menu_menu_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L92", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_update", + "target": "backend_src_menu_menu_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L93", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_controller_menucontroller_update", + "target": "backend_src_menu_menu_controller_ts_body" + }, { "relation": "calls", "context": "call", @@ -128945,110 +87573,49 @@ { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L89", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L137", "weight": 1.0, "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_create", - "target": "backend_src_orders_orders_service_ordersservice_create" + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menuservice_create", + "target": "backend_src_menu_menu_service_menuservice_seedifempty" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L147", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L12", "weight": 1.0, "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_findall", - "target": "backend_src_orders_orders_service_ordersservice_findallbyuser" + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menuservice_onmoduleinit", + "target": "backend_src_menu_menu_service_menuservice_seedifempty" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L209", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L251", "weight": 1.0, "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_findone", - "target": "backend_src_orders_orders_service_ordersservice_findone" + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service_menuservice_reorder", + "target": "backend_src_menu_menu_service_menuservice_update" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L201", + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/robots.ts", + "source_location": "L3", "weight": 1.0, "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", - "target": "backend_src_orders_orders_service_ordersservice_retrypayment" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/orders/orders.controller.ts", - "source_location": "L114", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", - "target": "backend_src_orders_orders_service_ordersservice_validatecoupon" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L417", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice_checkandsendrefillreminders", - "target": "backend_src_common_services_sms_service_smsservice_sendsms" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L260", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice_create", - "target": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L518", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice_retrypayment", - "target": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/orders/orders.service.ts", - "source_location": "L345", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_orders_orders_service_ordersservice_updatestatus", - "target": "backend_src_common_services_sms_service_smsservice_sendshippingnotification" + "confidence_score": 1.0, + "source": "frontend_application_app_robots_robots", + "target": "frontend_application_app_robots" }, { "relation": "calls", @@ -129056,11 +87623,59 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L474", + "source_location": "L82", "weight": 1.0, "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_cancelebankcheckout", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_cancelcheckout" + "source": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", + "target": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", + "target": "backend_src_payment_zibal_service_zibalservice_getstarturl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", + "target": "backend_src_payment_zibal_service_zibalservice_getbackendurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", + "target": "backend_src_payment_zibal_service_zibalservice_requestpayment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", + "target": "backend_src_payment_zibal_service_zibalservice_getresultmessage" }, { "relation": "calls", @@ -129068,239 +87683,323 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L511", + "source_location": "L104", "weight": 1.0, "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_changeidentifiedpaymentstatus", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_changeidentifiedpaymentstatus" + "source": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", + "target": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L440", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L155", "weight": 1.0, "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createebankcheckout", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_createcheckout" + "source": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", + "target": "backend_src_payment_zibal_service_zibalservice_getbackendurl" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L256", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L183", "weight": 1.0, "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createrefund", - "target": "backend_src_payment_zibal_service_zibalservice_requestrefund" + "source": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", + "target": "backend_src_payment_zibal_service_zibalservice_requestpayment" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L368", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L186", "weight": 1.0, "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_createsubmerchant", + "source": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", + "target": "backend_src_payment_zibal_service_zibalservice_getresultmessage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L214", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", + "target": "backend_src_payment_zibal_service_zibalservice_getstarturl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L521", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_apirequest", + "target": "backend_src_payment_zibal_service_zibalservice_getaccesstoken" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L522", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_apirequest", + "target": "backend_src_payment_zibal_service_zibalservice_getmerchant" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L751", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_apirequest", "target": "backend_src_payment_zibal_service_zibalservice_createsubmerchant" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L379", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L773", "weight": 1.0, "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_editsubmerchant", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_apirequest", "target": "backend_src_payment_zibal_service_zibalservice_editsubmerchant" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L535", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L723", "weight": 1.0, "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminstats", - "target": "backend_src_payment_payment_service_paymentservice_getadmintransactionstats" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L526", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadmintransactions", - "target": "backend_src_payment_payment_service_paymentservice_getadmintransactions" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L238", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getadminwallets", - "target": "backend_src_payment_zibal_service_zibalservice_getwalletlist" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L344", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutqueuereport", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_apirequest", "target": "backend_src_payment_zibal_service_zibalservice_getcheckoutqueuereport" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L335", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L709", "weight": 1.0, "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getcheckoutreport", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_apirequest", "target": "backend_src_payment_zibal_service_zibalservice_getcheckoutreport" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L393", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L682", "weight": 1.0, "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankaccounts", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountlist" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L405", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankbalance", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountbalance" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L456", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankcheckoutlist", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getcheckoutlist" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L493", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankidentifiedpayments", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getidentifiedpaymentlist" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L424", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getebankstatements", - "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getstatementlist" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L315", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getgatewayreport", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_apirequest", "target": "backend_src_payment_zibal_service_zibalservice_getgatewaytransactionsreport" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L619", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L652", "weight": 1.0, "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_gethealth", - "target": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L290", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getrefundlist", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_apirequest", "target": "backend_src_payment_zibal_service_zibalservice_getrefundlist" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L357", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L762", "weight": 1.0, "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_getsubmerchants", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_apirequest", "target": "backend_src_payment_zibal_service_zibalservice_getsubmerchantlist" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L583", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_apirequest", + "target": "backend_src_payment_zibal_service_zibalservice_getwalletbalance" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L576", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_apirequest", + "target": "backend_src_payment_zibal_service_zibalservice_getwalletlist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L736", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_apirequest", + "target": "backend_src_payment_zibal_service_zibalservice_inquirecheckoutreport" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L630", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_apirequest", + "target": "backend_src_payment_zibal_service_zibalservice_inquirerefund" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L619", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_apirequest", + "target": "backend_src_payment_zibal_service_zibalservice_requestrefund" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_callwithretry", + "target": "backend_src_payment_zibal_service_zibalservice_inquirypayment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L388", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_callwithretry", + "target": "backend_src_payment_zibal_service_zibalservice_requestlazypayment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_callwithretry", + "target": "backend_src_payment_zibal_service_zibalservice_requestpayment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L431", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_callwithretry", + "target": "backend_src_payment_zibal_service_zibalservice_verifylazypayment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L226", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_callwithretry", + "target": "backend_src_payment_zibal_service_zibalservice_verifypayment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L305", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_checkhealth", + "target": "backend_src_payment_zibal_service_zibalservice_getmerchant" + }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L225", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L1015", "weight": 1.0, "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_gettransactionstatus", - "target": "backend_src_payment_payment_service_paymentservice_gettransaction" + "source": "backend_src_payment_zibal_service_zibalservice_checkhealth", + "target": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_getbackendurl", + "target": "backend_src_payment_zibal_service_zibalservice_getfrontendurl" }, { "relation": "calls", @@ -129311,8 +88010,488 @@ "source_location": "L129", "weight": 1.0, "_origin": "ast", + "source": "backend_src_payment_zibal_service_zibalservice_getfrontendurl", + "target": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L681", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_getgatewaytransactionsreport", + "target": "backend_src_payment_zibal_service_zibalservice_getmerchant" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L651", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "target": "backend_src_payment_zibal_service_zibalservice_getrefundlist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L629", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "target": "backend_src_payment_zibal_service_zibalservice_inquirerefund" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L263", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "target": "backend_src_payment_zibal_service_zibalservice_inquirypayment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L375", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "target": "backend_src_payment_zibal_service_zibalservice_requestlazypayment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "target": "backend_src_payment_zibal_service_zibalservice_requestpayment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L597", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "target": "backend_src_payment_zibal_service_zibalservice_requestrefund" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L425", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "target": "backend_src_payment_zibal_service_zibalservice_verifylazypayment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L219", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_service_zibalservice_getmerchant", + "target": "backend_src_payment_zibal_service_zibalservice_verifypayment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_payment_zibal_service_zibalservice_verifypayment", + "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L223", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_cancelcheckout", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_cancelcheckout", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L323", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_changeidentifiedpaymentstatus", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L324", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_changeidentifiedpaymentstatus", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_createcheckout", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L170", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_createcheckout", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccesstoken", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L253", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountbalance", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountbalance", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L241", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getaccountlist", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getcheckoutlist", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getcheckoutlist", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L295", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getidentifiedpaymentlist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L267", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_getstatementlist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L184", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquirecheckout" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L341", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getdefaultaccountid", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquireidentifiedpayment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getidentifiedpaymentlist", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L274", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_getstatementlist", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquirecheckout", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L342", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service_zibalebankservice_inquireidentifiedpayment", + "target": "backend_src_payment_zibal_ebank_service_zibalebankservice_request" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", + "target": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", + "target": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_extractrealclientip", + "target": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L112", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", - "target": "backend_src_payment_zibal_service_zibalservice_getfrontendurl" + "target": "backend_src_payment_payment_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L113", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L117", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", + "target": "backend_src_payment_payment_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L118", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", + "target": "backend_src_payment_payment_controller_ts_query" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L119", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", + "target": "backend_src_payment_payment_controller_ts_res" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L120", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", + "target": "ip" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L121", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", + "target": "headers" }, { "relation": "calls", @@ -129326,6 +88505,78 @@ "source": "backend_src_payment_payment_controller_paymentcontroller_handlezibalcallback", "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L192", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", + "target": "backend_src_payment_payment_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L193", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L195", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", + "target": "backend_src_payment_payment_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L196", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", + "target": "backend_src_payment_payment_controller_ts_res" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L197", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", + "target": "ip" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L198", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_handleziballazycallback", + "target": "headers" + }, { "relation": "calls", "context": "call", @@ -129339,124 +88590,292 @@ "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, + "relation": "references", + "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L82", + "source_location": "L65", "weight": 1.0, + "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", - "target": "backend_src_payment_payment_service_paymentservice_initiateorderpayment" + "target": "backend_src_payment_payment_controller_ts_useguards" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, + "relation": "references", + "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L104", + "source_location": "L66", "weight": 1.0, + "context": "decorator", "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L67", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", + "target": "backend_src_payment_payment_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L68", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L69", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", + "target": "backend_src_payment_payment_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L72", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", + "target": "backend_src_payment_payment_controller_ts_apibadrequestresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L76", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", + "target": "backend_src_payment_payment_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L77", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", + "target": "backend_src_payment_payment_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L78", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", + "target": "ip" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L79", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_initiateorderpayment", + "target": "headers" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L100", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", - "target": "backend_src_payment_payment_service_paymentservice_initiatewallettopup" + "target": "ip" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, + "relation": "references", + "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L271", + "source_location": "L101", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_inquirerefund", - "target": "backend_src_payment_zibal_service_zibalservice_inquirerefund" + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", + "target": "headers" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, + "relation": "references", + "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L581", + "source_location": "L90", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquiry", - "target": "backend_src_payment_payment_service_paymentservice_adminliveinquiry" + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", + "target": "backend_src_payment_payment_controller_ts_useguards" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, + "relation": "references", + "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L560", + "source_location": "L91", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", - "target": "backend_src_payment_payment_service_paymentservice_adminliveinquiry" + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", + "target": "backend_src_payment_payment_controller_ts_apibearerauth" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, + "relation": "references", + "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L563", + "source_location": "L92", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", - "target": "backend_src_payment_payment_service_paymentservice_gettransactionbytrackid" + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", + "target": "backend_src_payment_payment_controller_ts_post" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, + "relation": "references", + "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L570", + "source_location": "L93", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_liveinquirypost", - "target": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal" + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", + "target": "backend_src_payment_payment_controller_ts_apioperation" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, + "relation": "references", + "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L607", + "source_location": "L94", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualreject", - "target": "backend_src_payment_payment_service_paymentservice_adminmanualreject" + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", + "target": "backend_src_payment_payment_controller_ts_apiokresponse" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, + "relation": "references", + "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L595", + "source_location": "L98", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_manualverify", - "target": "backend_src_payment_payment_service_paymentservice_adminmanualverify" + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", + "target": "backend_src_payment_payment_controller_ts_req" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, + "relation": "references", + "confidence": "EXTRACTED", "source_file": "backend/src/payment/payment.controller.ts", - "source_location": "L546", + "source_location": "L99", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_controller_paymentcontroller_reconcilepending", - "target": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions" + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_initiatewallettopup", + "target": "backend_src_payment_payment_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L167", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", + "target": "backend_src_payment_payment_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L168", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", + "target": "backend_src_payment_payment_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L173", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", + "target": "backend_src_payment_payment_controller_ts_query" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L174", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", + "target": "ip" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L175", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", + "target": "headers" }, { "relation": "calls", @@ -129470,6 +88889,8909 @@ "source": "backend_src_payment_payment_controller_paymentcontroller_verifypaymentdirect", "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/feed.xml/route.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_shop_feed_xml_route_get", + "target": "frontend_application_app_shop_feed_xml_route" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_sitemap_categories_xml_route_get", + "target": "frontend_application_app_sitemap_categories_xml_route" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap-products.xml/route.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_sitemap_products_xml_route_get", + "target": "frontend_application_app_sitemap_products_xml_route" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_sitemap_sitemap", + "target": "frontend_application_app_sitemap" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L325", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", + "target": "frontend_application_components_catalog_catalogpagespread_getformbadge" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L326", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", + "target": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", + "target": "frontend_application_components_catalog_flipbookcatalog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_catalogpagespread_catalogpagespread", + "target": "frontend_application_components_catalog_catalogpagespread" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_catalogpagespread_getformbadge", + "target": "frontend_application_components_catalog_catalogpagespread" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_catalogpagespread_getspeciesbadge", + "target": "frontend_application_components_catalog_catalogpagespread" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_location": "L206", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", + "target": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/catalog/CatalogClient.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", + "target": "frontend_application_app_catalog_catalogclient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_flipbookcatalog_flipbookcatalog", + "target": "frontend_application_components_catalog_flipbookcatalog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_flipbookcatalog_normalizesearchtext", + "target": "frontend_application_components_catalog_flipbookcatalog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ingredientwiki_formatingredientdisplayname", + "target": "frontend_application_components_ingredientwiki_ingredientwiki" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ingredientwiki_formatingredientdisplayname", + "target": "frontend_application_components_ingredientwiki" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ingredientwiki_ingredientwiki", + "target": "frontend_application_app_wiki_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ingredientwiki_ingredientwiki", + "target": "frontend_application_components_ingredientwiki" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L316", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice_getfeaturedproducts", + "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L288", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice_getproductbyid", + "target": "frontend_application_lib_services_productservice_productservice_serverfetch" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L289", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice_getproductbyid", + "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice_getproductbyslug", + "target": "frontend_application_lib_services_productservice_productservice_serverfetch" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L303", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice_getproductbyslug", + "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice_getproducts", + "target": "frontend_application_lib_services_productservice_productservice_serverfetch" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L270", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice_productservice_getproducts", + "target": "frontend_application_lib_services_productservice_productservice_mapbackendtofrontend" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_b2bmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_bannersmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_blogs" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_categories" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_contactsubmissions" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_coupons" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_doctorsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_faqmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_ingredientsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_menumanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_pets" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_reviews" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_smartadvisormanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_testimonialsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_tickets" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_users" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_videos" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_wiki" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_pages_zibalportalpage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal_modal", + "target": "frontend_admin_panel_src_components_ui_modal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_contactsubmissions_contactsubmissions", + "target": "frontend_admin_panel_src_pages_contactsubmissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_menumanager_menumanager", + "target": "frontend_admin_panel_src_pages_menumanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_tickets_tickets", + "target": "frontend_admin_panel_src_pages_tickets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_wiki_wiki", + "target": "frontend_admin_panel_src_pages_wiki" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_zibalportalpage_zibalportalpage", + "target": "frontend_admin_panel_src_pages_zibalportalpage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/api/revalidate/route.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_api_revalidate_route_get", + "target": "frontend_application_app_api_revalidate_route_handlerevalidate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/api/revalidate/route.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_api_revalidate_route_get", + "target": "frontend_application_app_api_revalidate_route" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/api/revalidate/route.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_api_revalidate_route_handlerevalidate", + "target": "frontend_application_app_api_revalidate_route_post" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/api/revalidate/route.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_api_revalidate_route_handlerevalidate", + "target": "frontend_application_app_api_revalidate_route" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/api/revalidate/route.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_api_revalidate_route_post", + "target": "frontend_application_app_api_revalidate_route" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MaskableField.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_maskablefield_maskablefield", + "target": "frontend_admin_panel_src_components_ui_maskablefield" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/main.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_app_app", + "target": "frontend_admin_panel_src_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/App.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_app_app", + "target": "frontend_admin_panel_src_app" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/App.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_app_suspensefallback", + "target": "frontend_admin_panel_src_app" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_cms_cms", + "target": "frontend_admin_panel_src_pages_cms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_dashboard_dashboard", + "target": "frontend_admin_panel_src_pages_dashboard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_reports_customtooltip", + "target": "frontend_admin_panel_src_pages_reports" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_reports_reports", + "target": "frontend_admin_panel_src_pages_reports" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_utils_lazywithretry_lazywithretry", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/utils/lazyWithRetry.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_utils_lazywithretry_lazywithretry", + "target": "frontend_admin_panel_src_utils_lazywithretry" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", + "target": "backend_src_wholesale_wholesale_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L24", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", + "target": "backend_src_wholesale_wholesale_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L25", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", + "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L26", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", + "target": "backend_src_wholesale_wholesale_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L30", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", + "target": "backend_src_wholesale_wholesale_controller_ts_request" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", + "target": "backend_src_wholesale_wholesale_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L47", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", + "target": "backend_src_wholesale_wholesale_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", + "target": "backend_src_wholesale_wholesale_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L50", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", + "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L51", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", + "target": "backend_src_wholesale_wholesale_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L54", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", + "target": "backend_src_wholesale_wholesale_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L36", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", + "target": "backend_src_wholesale_wholesale_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L37", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", + "target": "backend_src_wholesale_wholesale_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L39", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", + "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", + "target": "backend_src_wholesale_wholesale_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", + "target": "backend_src_wholesale_wholesale_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L59", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", + "target": "backend_src_wholesale_wholesale_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L61", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", + "target": "backend_src_wholesale_wholesale_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L62", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", + "target": "backend_src_wholesale_wholesale_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L63", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", + "target": "backend_src_wholesale_wholesale_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", + "target": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L24", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", + "target": "backend_src_b2b_b2b_controller_ts_throttle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L25", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", + "target": "backend_src_b2b_b2b_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L26", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", + "target": "backend_src_b2b_b2b_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L28", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", + "target": "backend_src_b2b_b2b_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_b2b_b2b_controller_b2bcontroller_createinquiry", + "target": "backend_src_b2b_b2b_service_b2bservice_createinquiry" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L72", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", + "target": "backend_src_b2b_b2b_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L73", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", + "target": "backend_src_b2b_b2b_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L74", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", + "target": "backend_src_b2b_b2b_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L75", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", + "target": "backend_src_b2b_b2b_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L77", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", + "target": "backend_src_b2b_b2b_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L78", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", + "target": "backend_src_b2b_b2b_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_b2b_b2b_controller_b2bcontroller_createwholesaleorder", + "target": "backend_src_b2b_b2b_service_b2bservice_createwholesaleorder" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L42", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", + "target": "backend_src_b2b_b2b_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L44", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", + "target": "backend_src_b2b_b2b_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L45", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", + "target": "backend_src_b2b_b2b_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L46", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", + "target": "backend_src_b2b_b2b_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_b2b_b2b_controller_b2bcontroller_findallinquiries", + "target": "backend_src_b2b_b2b_service_b2bservice_findallinquiries" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L84", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", + "target": "backend_src_b2b_b2b_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L86", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", + "target": "backend_src_b2b_b2b_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L87", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", + "target": "backend_src_b2b_b2b_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L88", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", + "target": "backend_src_b2b_b2b_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_b2b_b2b_controller_b2bcontroller_getallpartneraccounts", + "target": "backend_src_b2b_b2b_service_b2bservice_getallpartneraccounts" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L63", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", + "target": "backend_src_b2b_b2b_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L64", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", + "target": "backend_src_b2b_b2b_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L65", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", + "target": "backend_src_b2b_b2b_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L66", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", + "target": "backend_src_b2b_b2b_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L67", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", + "target": "backend_src_b2b_b2b_controller_ts_req" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_b2b_b2b_controller_b2bcontroller_getpartnerprofile", + "target": "backend_src_b2b_b2b_service_b2bservice_getpartnerprofile" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L51", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", + "target": "backend_src_b2b_b2b_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L53", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", + "target": "backend_src_b2b_b2b_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L54", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", + "target": "backend_src_b2b_b2b_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L55", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", + "target": "backend_src_b2b_b2b_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L57", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", + "target": "backend_src_b2b_b2b_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", + "target": "backend_src_b2b_b2b_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_b2b_b2b_controller_b2bcontroller_updateinquirystatus", + "target": "backend_src_b2b_b2b_service_b2bservice_updateinquirystatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/loading.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_loading_blogloading", + "target": "frontend_application_app_blog_loading" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/loading.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_loading_globalloading", + "target": "frontend_application_app_loading" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/loading.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_shop_loading_shoploading", + "target": "frontend_application_app_shop_loading" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_archivepage_archiveproductcard", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_archivepage_archiveproductcard", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_archivepage_archiveproductcard", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L145", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_featuredproducts_featuredproducts", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_featuredproducts_featuredproducts", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_featuredproducts_featuredproducts", + "target": "frontend_application_components_tests_featuredproducts_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_featuredproducts_featuredproducts", + "target": "frontend_application_components_featuredproducts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_featuredproducts_productcard", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_featuredproducts_productcard", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_featuredproducts_productcard", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_featuredproducts_productcard", + "target": "frontend_application_components_featuredproducts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_petprofile_petprofile", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_petprofile_petprofile", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/profile/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_petprofile_petprofile", + "target": "frontend_application_app_profile_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_petprofile_petprofile", + "target": "frontend_application_components_userdashboard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_petprofile_petprofile", + "target": "frontend_application_components_petprofile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/SearchResultsPage.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_searchresultspage_searchresultspage", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/search/page.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_searchresultspage_searchresultspage", + "target": "frontend_application_app_search_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SearchResultsPage.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_searchresultspage_searchresultspage", + "target": "frontend_application_components_searchresultspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_skeleton_orderrowskeleton", + "target": "frontend_application_components_userdashboard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_skeleton_orderrowskeleton", + "target": "frontend_application_components_skeleton" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_skeleton_petprofileskeleton", + "target": "frontend_application_components_petprofile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_skeleton_petprofileskeleton", + "target": "frontend_application_components_skeleton" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_skeleton_productcardskeleton", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_skeleton_productcardskeleton", + "target": "frontend_application_components_featuredproducts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_skeleton_productcardskeleton", + "target": "frontend_application_components_skeleton" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/loading.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_skeleton_skeleton", + "target": "frontend_application_app_blog_loading" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/loading.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_skeleton_skeleton", + "target": "frontend_application_app_loading" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/loading.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_skeleton_skeleton", + "target": "frontend_application_app_shop_loading" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Skeleton.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_skeleton_skeleton", + "target": "frontend_application_components_skeleton" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L37", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_create", + "target": "backend_src_faq_faq_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L39", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_create", + "target": "backend_src_faq_faq_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_create", + "target": "backend_src_faq_faq_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L41", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_create", + "target": "backend_src_faq_faq_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L43", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_create", + "target": "backend_src_faq_faq_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_faq_faq_controller_faqcontroller_create", + "target": "backend_src_faq_faq_service_faqservice_create" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L22", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_findactive", + "target": "backend_src_faq_faq_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_findactive", + "target": "backend_src_faq_faq_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_faq_faq_controller_faqcontroller_findactive", + "target": "backend_src_faq_faq_service_faqservice_findactive" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L28", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_findall", + "target": "backend_src_faq_faq_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L30", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_findall", + "target": "backend_src_faq_faq_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_findall", + "target": "backend_src_faq_faq_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L32", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_findall", + "target": "backend_src_faq_faq_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_faq_faq_controller_faqcontroller_findall", + "target": "backend_src_faq_faq_service_faqservice_findall" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L81", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_remove", + "target": "backend_src_faq_faq_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L83", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_remove", + "target": "backend_src_faq_faq_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L84", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_remove", + "target": "backend_src_faq_faq_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L85", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_remove", + "target": "backend_src_faq_faq_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L86", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_remove", + "target": "backend_src_faq_faq_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_faq_faq_controller_faqcontroller_remove", + "target": "backend_src_faq_faq_service_faqservice_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L54", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_reorder", + "target": "backend_src_faq_faq_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L56", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_reorder", + "target": "backend_src_faq_faq_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L57", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_reorder", + "target": "backend_src_faq_faq_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_reorder", + "target": "backend_src_faq_faq_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L59", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_reorder", + "target": "backend_src_faq_faq_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_faq_faq_controller_faqcontroller_reorder", + "target": "backend_src_faq_faq_service_faqservice_reorder" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L63", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_update", + "target": "backend_src_faq_faq_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L65", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_update", + "target": "backend_src_faq_faq_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L66", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_update", + "target": "backend_src_faq_faq_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L67", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_update", + "target": "backend_src_faq_faq_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L69", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_update", + "target": "backend_src_faq_faq_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L70", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_controller_faqcontroller_update", + "target": "backend_src_faq_faq_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_faq_faq_controller_faqcontroller_update", + "target": "backend_src_faq_faq_service_faqservice_update" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_service_faqservice_reorder", + "target": "backend_src_faq_faq_service_faqservice_update" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodal", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_transactionreceiptmodal_transactionreceiptmodal", + "target": "frontend_admin_panel_src_components_transactionreceiptmodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_components_transactionreceiptmodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_b2bmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_bannersmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_blogs" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_categories" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_cms" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_contactsubmissions" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_coupons" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_doctorsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_faqmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_financialsettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_ingredientsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_menumanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_monitoringpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_paymentgatewayspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_pets" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_products" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_reports" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_reviews" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_seosettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Settings.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_settings" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_shippingsettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_smartadvisormanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_smssettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_sslsettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_systemsettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_testimonialsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_tickets" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_users" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_videos" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_wholesaleapplications" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_wiki" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_pages_zibalportalpage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button_button", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_thsort_thsort", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/ThSort.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_thsort_thsort", + "target": "frontend_admin_panel_src_components_ui_thsort" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_admin_panel_src_pages_transactions_transactions", + "target": "frontend_admin_panel_src_utils_usetableparams_usetableparams" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_transactions_transactions", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_utils_usetableparams_usetableparams", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/utils/useTableParams.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_utils_usetableparams_usetableparams", + "target": "frontend_admin_panel_src_utils_usetableparams" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L47", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller_createcategory", + "target": "backend_src_admin_categories_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller_createcategory", + "target": "backend_src_admin_categories_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L49", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller_createcategory", + "target": "backend_src_admin_categories_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_categories_controller_categoriescontroller_createcategory", + "target": "backend_src_admin_categories_service_categoriesservice_createcategory" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L64", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", + "target": "backend_src_admin_categories_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L65", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", + "target": "backend_src_admin_categories_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L66", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", + "target": "backend_src_admin_categories_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_categories_controller_categoriescontroller_deletecategory", + "target": "backend_src_admin_categories_service_categoriesservice_deletecategory" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", + "target": "backend_src_admin_categories_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L41", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", + "target": "backend_src_admin_categories_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_categories_controller_categoriescontroller_getallcategoriesraw", + "target": "backend_src_admin_categories_service_categoriesservice_getallcategoriesraw" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller_getcategories", + "target": "backend_src_admin_categories_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L32", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller_getcategories", + "target": "backend_src_admin_categories_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L35", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller_getcategories", + "target": "backend_src_admin_categories_controller_ts_apiquery" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L36", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller_getcategories", + "target": "backend_src_admin_categories_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_categories_controller_categoriescontroller_getcategories", + "target": "backend_src_admin_categories_service_categoriesservice_getcategories" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L54", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", + "target": "backend_src_admin_categories_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L55", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", + "target": "backend_src_admin_categories_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L57", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", + "target": "backend_src_admin_categories_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", + "target": "backend_src_admin_categories_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_categories_controller_categoriescontroller_updatecategory", + "target": "backend_src_admin_categories_service_categoriesservice_updatecategory" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_blogpreviewsection_blogpreviewsection", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "contains", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_blogpreviewsection_blogpreviewsection", + "target": "frontend_application_components_blogpreviewsection_blogpreviewsection_loadblogs" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_blogpreviewsection_blogpreviewsection", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_blogpreviewsection_blogpreviewsection", + "target": "frontend_application_components_blogpreviewsection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_productdetailmodal_productdetailmodal", + "target": "frontend_application_components_catalog_productdetailmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PodcastPlayerModal.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_podcastplayermodal_podcastplayermodal", + "target": "frontend_application_components_podcastplayermodal" + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "frontend/application/components/PodcastPlayerModal.tsx", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "context": "argument", + "confidence_score": 0.85, + "source": "frontend_application_components_podcastplayermodal_podcastplayermodal", + "target": "frontend_application_components_podcastplayermodal_podcastplayermodal_handleclickoutside" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_app_wiki_slug_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_b2bportal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_bannerplacement" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPage.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_blogpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPostClient.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_blogpostclient" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_blogpreviewsection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_cartdrawer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_catalog_catalogpagespread" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_catalog_productdetailmodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_featuredproducts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_orderdetailsmodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_petprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_podcastinlineplayer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PodcastPlayerModal.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_podcastplayermodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_testimonialssection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_vetgallery" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_videospage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SafeImage.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage_safeimage", + "target": "frontend_application_components_safeimage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_testimonialssection_testimonialssection", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "contains", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_testimonialssection_testimonialssection", + "target": "frontend_application_components_testimonialssection_testimonialssection_loadtestimonials" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_testimonialssection_testimonialssection", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_testimonialssection_testimonialssection", + "target": "frontend_application_components_testimonialssection" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_vetgallery_vetgallery", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_vetgallery_vetgallery", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_vetgallery_vetgallery", + "target": "frontend_application_components_vetgallery" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_videomodalplayer_videomodalplayer", + "target": "frontend_application_components_vetgallery" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_videomodalplayer_videomodalplayer", + "target": "frontend_application_components_videospage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VideoModalPlayer.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_videomodalplayer_videomodalplayer", + "target": "frontend_application_components_videomodalplayer" + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "frontend/application/components/VideoModalPlayer.tsx", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "context": "argument", + "confidence_score": 0.85, + "source": "frontend_application_components_videomodalplayer_videomodalplayer", + "target": "frontend_application_components_videomodalplayer_videomodalplayer_handleclickoutside" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L42", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", + "target": "backend_src_admin_media_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L43", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", + "target": "backend_src_admin_media_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L44", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", + "target": "backend_src_admin_media_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L45", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", + "target": "backend_src_admin_media_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_media_controller_mediacontroller_deletemanymedia", + "target": "backend_src_admin_media_service_mediaservice_deletemanymedia" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L53", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_deletemedia", + "target": "backend_src_admin_media_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L54", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_deletemedia", + "target": "backend_src_admin_media_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L55", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_deletemedia", + "target": "backend_src_admin_media_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L56", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_deletemedia", + "target": "backend_src_admin_media_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_media_controller_mediacontroller_deletemedia", + "target": "backend_src_admin_media_service_mediaservice_deletemedia" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L25", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_getallmedia", + "target": "backend_src_admin_media_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L26", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_getallmedia", + "target": "backend_src_admin_media_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L27", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_getallmedia", + "target": "backend_src_admin_media_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_media_controller_mediacontroller_getallmedia", + "target": "backend_src_admin_media_service_mediaservice_getallmedia" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L61", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_updatemedia", + "target": "backend_src_admin_media_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L62", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_updatemedia", + "target": "backend_src_admin_media_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L63", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_updatemedia", + "target": "backend_src_admin_media_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L67", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_updatemedia", + "target": "backend_src_admin_media_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L68", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_updatemedia", + "target": "backend_src_admin_media_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_media_controller_mediacontroller_updatemedia", + "target": "backend_src_admin_media_service_mediaservice_updatemedia" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L33", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_uploadfile", + "target": "backend_src_admin_media_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L34", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_uploadfile", + "target": "backend_src_admin_media_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L35", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_uploadfile", + "target": "backend_src_admin_media_controller_ts_useinterceptors" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L36", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller_mediacontroller_uploadfile", + "target": "backend_src_admin_media_controller_ts_uploadedfile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_media_controller_mediacontroller_uploadfile", + "target": "backend_src_admin_media_service_mediaservice_uploadfile" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L27", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller_getstatus", + "target": "backend_src_admin_ssl_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L28", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller_getstatus", + "target": "backend_src_admin_ssl_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_ssl_controller_sslcontroller_getstatus", + "target": "backend_src_admin_ssl_service_sslservice_getstatus" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L94", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller_testdomain", + "target": "backend_src_admin_ssl_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L95", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller_testdomain", + "target": "backend_src_admin_ssl_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L98", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller_testdomain", + "target": "backend_src_admin_ssl_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_ssl_controller_sslcontroller_testdomain", + "target": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L34", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", + "target": "backend_src_admin_ssl_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L35", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", + "target": "backend_src_admin_ssl_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L38", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", + "target": "backend_src_admin_ssl_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_ssl_controller_sslcontroller_updatebytext", + "target": "backend_src_admin_ssl_service_sslservice_updatecertificates" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L43", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", + "target": "backend_src_admin_ssl_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L44", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", + "target": "backend_src_admin_ssl_controller_ts_useinterceptors" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L45", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", + "target": "backend_src_admin_ssl_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L49", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", + "target": "uploadedfiles" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L51", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", + "target": "backend_src_admin_ssl_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_admin_ssl_controller_sslcontroller_uploadfiles", + "target": "backend_src_admin_ssl_service_sslservice_updatecertificates" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice_getcertpath", + "target": "backend_src_admin_ssl_service_sslservice_getstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice_getcertpath", + "target": "backend_src_admin_ssl_service_sslservice_updatecertificates" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice_getkeypath", + "target": "backend_src_admin_ssl_service_sslservice_updatecertificates" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice_getstatus", + "target": "backend_src_admin_ssl_service_sslservice_toshamsi" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice_getstatus", + "target": "backend_src_admin_ssl_service_sslservice_updatecertificates" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.service.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_service_sslservice_testonlinedomainssl", + "target": "backend_src_admin_ssl_service_sslservice_toshamsi" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L30", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_create", + "target": "backend_src_banners_banners_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L32", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_create", + "target": "backend_src_banners_banners_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L33", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_create", + "target": "backend_src_banners_banners_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L34", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_create", + "target": "backend_src_banners_banners_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L35", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_create", + "target": "backend_src_banners_banners_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_banners_banners_controller_bannerscontroller_create", + "target": "backend_src_banners_banners_service_bannersservice_create" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L24", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_findall", + "target": "backend_src_banners_banners_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L25", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_findall", + "target": "backend_src_banners_banners_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_banners_banners_controller_bannerscontroller_findall", + "target": "backend_src_banners_banners_service_bannersservice_findall" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L57", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_remove", + "target": "backend_src_banners_banners_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L59", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_remove", + "target": "backend_src_banners_banners_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L60", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_remove", + "target": "backend_src_banners_banners_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L61", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_remove", + "target": "backend_src_banners_banners_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L62", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_remove", + "target": "backend_src_banners_banners_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_banners_banners_controller_bannerscontroller_remove", + "target": "backend_src_banners_banners_service_bannersservice_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L39", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", + "target": "backend_src_banners_banners_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L41", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", + "target": "backend_src_banners_banners_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L42", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", + "target": "backend_src_banners_banners_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L43", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", + "target": "backend_src_banners_banners_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L44", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", + "target": "backend_src_banners_banners_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_banners_banners_controller_bannerscontroller_reorder", + "target": "backend_src_banners_banners_service_bannersservice_reorder" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_update", + "target": "backend_src_banners_banners_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L50", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_update", + "target": "backend_src_banners_banners_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L51", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_update", + "target": "backend_src_banners_banners_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L52", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_update", + "target": "backend_src_banners_banners_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L53", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_update", + "target": "backend_src_banners_banners_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L53", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller_bannerscontroller_update", + "target": "backend_src_banners_banners_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_banners_banners_controller_bannerscontroller_update", + "target": "backend_src_banners_banners_service_bannersservice_update" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_service_bannersservice_reorder", + "target": "backend_src_banners_banners_service_bannersservice_update" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L35", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", + "target": "backend_src_testimonials_testimonials_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L37", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", + "target": "backend_src_testimonials_testimonials_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L38", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", + "target": "backend_src_testimonials_testimonials_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L39", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", + "target": "backend_src_testimonials_testimonials_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", + "target": "backend_src_testimonials_testimonials_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_create" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", + "target": "backend_src_testimonials_testimonials_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L24", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", + "target": "backend_src_testimonials_testimonials_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_findall" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L29", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findhomepage", + "target": "backend_src_testimonials_testimonials_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L30", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findhomepage", + "target": "backend_src_testimonials_testimonials_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findhomepage", + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_findhomepage" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L53", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", + "target": "backend_src_testimonials_testimonials_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L55", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", + "target": "backend_src_testimonials_testimonials_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L56", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", + "target": "backend_src_testimonials_testimonials_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L57", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", + "target": "backend_src_testimonials_testimonials_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", + "target": "backend_src_testimonials_testimonials_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L44", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", + "target": "backend_src_testimonials_testimonials_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L46", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", + "target": "backend_src_testimonials_testimonials_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L47", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", + "target": "backend_src_testimonials_testimonials_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", + "target": "backend_src_testimonials_testimonials_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L49", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", + "target": "backend_src_testimonials_testimonials_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L49", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", + "target": "backend_src_testimonials_testimonials_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", + "target": "backend_src_testimonials_testimonials_service_testimonialsservice_update" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L19", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_controller_homecontroller_gethomedata", + "target": "backend_src_home_home_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L20", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_controller_homecontroller_gethomedata", + "target": "backend_src_home_home_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L21", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_controller_homecontroller_gethomedata", + "target": "backend_src_home_home_controller_ts_apiokresponse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_home_home_controller_homecontroller_gethomedata", + "target": "backend_src_home_home_service_homeservice_gethomedata" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L35", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", + "target": "backend_src_ingredients_ingredients_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L37", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", + "target": "backend_src_ingredients_ingredients_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L38", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", + "target": "backend_src_ingredients_ingredients_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L39", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", + "target": "backend_src_ingredients_ingredients_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", + "target": "backend_src_ingredients_ingredients_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_create", + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_create" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", + "target": "backend_src_ingredients_ingredients_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L24", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", + "target": "backend_src_ingredients_ingredients_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findall", + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_findall" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L29", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", + "target": "backend_src_ingredients_ingredients_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L30", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", + "target": "backend_src_ingredients_ingredients_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", + "target": "backend_src_ingredients_ingredients_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_findone", + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_findone" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L53", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", + "target": "backend_src_ingredients_ingredients_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L55", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", + "target": "backend_src_ingredients_ingredients_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L56", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", + "target": "backend_src_ingredients_ingredients_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L57", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", + "target": "backend_src_ingredients_ingredients_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", + "target": "backend_src_ingredients_ingredients_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_remove", + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L44", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", + "target": "backend_src_ingredients_ingredients_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L46", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", + "target": "backend_src_ingredients_ingredients_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L47", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", + "target": "backend_src_ingredients_ingredients_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", + "target": "backend_src_ingredients_ingredients_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L49", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", + "target": "backend_src_ingredients_ingredients_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L49", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", + "target": "backend_src_ingredients_ingredients_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_ingredients_ingredients_controller_ingredientscontroller_update", + "target": "backend_src_ingredients_ingredients_service_ingredientsservice_update" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_checkout_success_id_page_successpage", + "target": "frontend_application_app_checkout_success_id_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_cartdrawer_cartdrawer", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_cartdrawer_cartdrawer", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_cartdrawer_cartdrawer", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_cartdrawer_cartdrawer", + "target": "frontend_application_components_tests_cartdrawer_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_cartdrawer_cartdrawer", + "target": "frontend_application_components_cartdrawer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_header_header", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L142", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_header_header", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_header_header", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_header_header", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header_header", + "target": "frontend_application_app_clientlayout" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Header.test.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header_header", + "target": "frontend_application_components_tests_header_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header_header", + "target": "frontend_application_components_header" + }, + { + "relation": "indirect_call", + "confidence": "INFERRED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L185", + "weight": 1.0, + "_origin": "ast", + "context": "argument", + "confidence_score": 0.85, + "source": "frontend_application_components_header_header", + "target": "frontend_application_components_header_header_handleclickoutside" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/OrderSuccess.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_ordersuccess_ordersuccess", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/OrderSuccess.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_ordersuccess_ordersuccess", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ordersuccess_ordersuccess", + "target": "frontend_application_app_checkout_success_id_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderSuccess.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ordersuccess_ordersuccess", + "target": "frontend_application_components_ordersuccess" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/OrderTracking.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_ordertracking_ordertracking", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ordertracking_ordertracking", + "target": "frontend_application_app_track_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderTracking.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ordertracking_ordertracking", + "target": "frontend_application_components_ordertracking" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L37", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_createherobanner", + "target": "backend_src_cms_cms_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L38", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_createherobanner", + "target": "backend_src_cms_cms_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L39", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_createherobanner", + "target": "backend_src_cms_cms_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_cms_cms_controller_cmscontroller_createherobanner", + "target": "backend_src_cms_cms_service_cmsservice_createherobanner" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L93", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", + "target": "backend_src_cms_cms_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L94", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", + "target": "backend_src_cms_cms_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L95", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", + "target": "backend_src_cms_cms_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_cms_cms_controller_cmscontroller_createsmartadvisorrule", + "target": "backend_src_cms_cms_service_cmsservice_createsmartadvisorrule" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L65", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", + "target": "backend_src_cms_cms_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L66", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", + "target": "backend_src_cms_cms_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L67", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", + "target": "backend_src_cms_cms_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_cms_cms_controller_cmscontroller_createvettestimonial", + "target": "backend_src_cms_cms_service_cmsservice_createvettestimonial" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L52", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", + "target": "backend_src_cms_cms_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L53", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", + "target": "backend_src_cms_cms_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L54", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", + "target": "backend_src_cms_cms_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_cms_cms_controller_cmscontroller_deleteherobanner", + "target": "backend_src_cms_cms_service_cmsservice_deleteherobanner" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L108", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", + "target": "backend_src_cms_cms_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L109", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", + "target": "backend_src_cms_cms_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L110", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", + "target": "backend_src_cms_cms_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_cms_cms_controller_cmscontroller_deletesmartadvisorrule", + "target": "backend_src_cms_cms_service_cmsservice_deletesmartadvisorrule" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L80", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", + "target": "backend_src_cms_cms_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L81", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", + "target": "backend_src_cms_cms_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L82", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", + "target": "backend_src_cms_cms_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_cms_cms_controller_cmscontroller_deletevettestimonial", + "target": "backend_src_cms_cms_service_cmsservice_deletevettestimonial" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_getherobanners", + "target": "backend_src_cms_cms_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L32", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_getherobanners", + "target": "backend_src_cms_cms_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_cms_cms_controller_cmscontroller_getherobanners", + "target": "backend_src_cms_cms_service_cmsservice_getherobanners" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L87", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", + "target": "backend_src_cms_cms_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L88", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", + "target": "backend_src_cms_cms_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_cms_cms_controller_cmscontroller_getsmartadvisorrules", + "target": "backend_src_cms_cms_service_cmsservice_getsmartadvisorrules" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L59", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", + "target": "backend_src_cms_cms_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L60", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", + "target": "backend_src_cms_cms_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_cms_cms_controller_cmscontroller_getvettestimonials", + "target": "backend_src_cms_cms_service_cmsservice_getvettestimonials" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L43", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", + "target": "backend_src_cms_cms_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L44", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", + "target": "backend_src_cms_cms_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L46", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", + "target": "backend_src_cms_cms_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L47", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", + "target": "backend_src_cms_cms_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_cms_cms_controller_cmscontroller_updateherobanner", + "target": "backend_src_cms_cms_service_cmsservice_updateherobanner" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L100", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", + "target": "backend_src_cms_cms_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L102", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", + "target": "backend_src_cms_cms_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L103", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", + "target": "backend_src_cms_cms_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L99", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", + "target": "backend_src_cms_cms_controller_ts_put" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_cms_cms_controller_cmscontroller_updatesmartadvisorrule", + "target": "backend_src_cms_cms_service_cmsservice_updatesmartadvisorrule" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L71", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", + "target": "backend_src_cms_cms_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L72", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", + "target": "backend_src_cms_cms_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L74", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", + "target": "backend_src_cms_cms_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L75", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", + "target": "backend_src_cms_cms_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_cms_cms_controller_cmscontroller_updatevettestimonial", + "target": "backend_src_cms_cms_service_cmsservice_updatevettestimonial" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L116", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_createblog", + "target": "backend_src_admin_blogs_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L117", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_createblog", + "target": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L119", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_createblog", + "target": "backend_src_admin_blogs_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L120", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_createblog", + "target": "backend_src_admin_blogs_controller_ts_request" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L64", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_createblogcategory", + "target": "backend_src_admin_blogs_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L65", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_createblogcategory", + "target": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L66", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_createblogcategory", + "target": "backend_src_admin_blogs_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L95", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_createblogtag", + "target": "backend_src_admin_blogs_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L96", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_createblogtag", + "target": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L97", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_createblogtag", + "target": "backend_src_admin_blogs_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L133", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", + "target": "backend_src_admin_blogs_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L134", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", + "target": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L135", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblog", + "target": "backend_src_admin_blogs_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L81", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblogcategory", + "target": "backend_src_admin_blogs_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L82", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblogcategory", + "target": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L83", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblogcategory", + "target": "backend_src_admin_blogs_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L102", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblogtag", + "target": "backend_src_admin_blogs_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L103", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblogtag", + "target": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L104", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_deleteblogtag", + "target": "backend_src_admin_blogs_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L172", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_deletecomment", + "target": "backend_src_admin_blogs_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L173", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_deletecomment", + "target": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L174", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_deletecomment", + "target": "backend_src_admin_blogs_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L50", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_getauthors", + "target": "backend_src_admin_blogs_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L51", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_getauthors", + "target": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L109", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_getblogbyid", + "target": "backend_src_admin_blogs_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L110", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_getblogbyid", + "target": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L111", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_getblogbyid", + "target": "backend_src_admin_blogs_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L57", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_getblogcategories", + "target": "backend_src_admin_blogs_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_getblogcategories", + "target": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L32", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_getblogs", + "target": "backend_src_admin_blogs_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L33", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_getblogs", + "target": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L38", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_getblogs", + "target": "backend_src_admin_blogs_controller_ts_apiquery" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_getblogs", + "target": "backend_src_admin_blogs_controller_ts_query" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L88", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_getblogtags", + "target": "backend_src_admin_blogs_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L89", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_getblogtags", + "target": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L141", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_getcomments", + "target": "backend_src_admin_blogs_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L142", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_getcomments", + "target": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L150", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_getcomments", + "target": "backend_src_admin_blogs_controller_ts_apiquery" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L152", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_getcomments", + "target": "backend_src_admin_blogs_controller_ts_query" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L126", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_updateblog", + "target": "backend_src_admin_blogs_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L127", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_updateblog", + "target": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L128", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_updateblog", + "target": "backend_src_admin_blogs_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L128", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_updateblog", + "target": "backend_src_admin_blogs_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L71", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory", + "target": "backend_src_admin_blogs_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L72", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory", + "target": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L74", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory", + "target": "backend_src_admin_blogs_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L75", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_updateblogcategory", + "target": "backend_src_admin_blogs_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L163", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus", + "target": "backend_src_admin_blogs_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L164", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus", + "target": "backend_src_admin_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L166", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus", + "target": "backend_src_admin_blogs_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L167", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller_blogscontroller_updatecommentstatus", + "target": "backend_src_admin_blogs_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L30", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", + "target": "backend_src_prescriptions_prescriptions_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", + "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L33", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", + "target": "backend_src_prescriptions_prescriptions_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L34", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", + "target": "backend_src_prescriptions_prescriptions_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L47", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", + "target": "backend_src_prescriptions_prescriptions_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", + "target": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L49", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", + "target": "backend_src_prescriptions_prescriptions_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L50", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", + "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L51", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", + "target": "backend_src_prescriptions_prescriptions_controller_ts_req" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findall" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L57", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", + "target": "backend_src_prescriptions_prescriptions_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", + "target": "backend_src_prescriptions_prescriptions_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L59", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", + "target": "backend_src_prescriptions_prescriptions_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L60", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", + "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L61", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", + "target": "backend_src_prescriptions_prescriptions_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L61", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", + "target": "backend_src_prescriptions_prescriptions_controller_ts_req" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findone" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L67", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", + "target": "backend_src_prescriptions_prescriptions_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L69", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", + "target": "backend_src_prescriptions_prescriptions_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L70", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", + "target": "backend_src_prescriptions_prescriptions_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L72", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", + "target": "backend_src_prescriptions_prescriptions_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L73", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", + "target": "backend_src_prescriptions_prescriptions_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", + "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L29", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L32", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L33", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L34", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_create" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L24", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_findall" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L50", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L52", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L53", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L54", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L55", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L38", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L41", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L42", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L44", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L45", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", + "target": "backend_src_smart_advisor_smart_advisor_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", + "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.constants.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_constants_getjwtrefreshsecret", + "target": "backend_src_auth_auth_constants" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_auth_auth_constants_getjwtsecret", + "target": "backend_src_auth_jwt_strategy_jwtstrategy_constructor" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.module.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_constants_getjwtsecret", + "target": "backend_src_auth_auth_module" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_constants_getjwtsecret", + "target": "backend_src_auth_jwt_strategy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.constants.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_constants_getjwtsecret", + "target": "backend_src_auth_auth_constants" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_auth_jwt_strategy_jwtstrategy_validate", + "target": "backend_src_users_users_service_usersservice_findbyid" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L110", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_addaddress", + "target": "backend_src_users_users_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L111", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_addaddress", + "target": "backend_src_users_users_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L112", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_addaddress", + "target": "backend_src_users_users_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L113", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_addaddress", + "target": "backend_src_users_users_controller_ts_apicreatedresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L132", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_addaddress", + "target": "backend_src_users_users_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L133", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_addaddress", + "target": "backend_src_users_users_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_users_users_controller_userscontroller_addaddress", + "target": "backend_src_users_users_service_usersservice_addaddress" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L167", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_deleteaddress", + "target": "backend_src_users_users_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L168", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_deleteaddress", + "target": "backend_src_users_users_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L169", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_deleteaddress", + "target": "backend_src_users_users_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L170", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_deleteaddress", + "target": "backend_src_users_users_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L180", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_deleteaddress", + "target": "backend_src_users_users_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L181", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_deleteaddress", + "target": "backend_src_users_users_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L183", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_users_users_controller_userscontroller_deleteaddress", + "target": "backend_src_users_users_service_usersservice_deleteaddress" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L46", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_getprofile", + "target": "backend_src_users_users_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L47", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_getprofile", + "target": "backend_src_users_users_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_getprofile", + "target": "backend_src_users_users_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L49", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_getprofile", + "target": "backend_src_users_users_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L68", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_getprofile", + "target": "backend_src_users_users_controller_ts_req" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_users_users_controller_userscontroller_getprofile", + "target": "backend_src_users_users_service_usersservice_findbyid" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L186", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", + "target": "backend_src_users_users_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L187", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", + "target": "backend_src_users_users_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L188", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", + "target": "backend_src_users_users_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L189", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", + "target": "backend_src_users_users_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L199", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", + "target": "backend_src_users_users_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L200", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", + "target": "backend_src_users_users_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", + "target": "backend_src_users_users_service_usersservice_setdefaultaddress" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L205", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_topupwallet", + "target": "backend_src_users_users_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L206", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_topupwallet", + "target": "backend_src_users_users_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L207", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_topupwallet", + "target": "backend_src_users_users_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L208", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_topupwallet", + "target": "backend_src_users_users_controller_ts_apicreatedresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L222", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_topupwallet", + "target": "backend_src_users_users_controller_ts_apibadrequestresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L224", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_topupwallet", + "target": "backend_src_users_users_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L225", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_topupwallet", + "target": "backend_src_users_users_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_users_users_controller_userscontroller_topupwallet", + "target": "backend_src_users_users_service_usersservice_topupwallet" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L138", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_updateaddress", + "target": "backend_src_users_users_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L139", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_updateaddress", + "target": "backend_src_users_users_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L140", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_updateaddress", + "target": "backend_src_users_users_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L141", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_updateaddress", + "target": "backend_src_users_users_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L160", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_updateaddress", + "target": "backend_src_users_users_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L161", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_updateaddress", + "target": "backend_src_users_users_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L162", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_updateaddress", + "target": "backend_src_users_users_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L164", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_users_users_controller_userscontroller_updateaddress", + "target": "backend_src_users_users_service_usersservice_updateaddress" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L104", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_updateprofile", + "target": "backend_src_users_users_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L105", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_updateprofile", + "target": "backend_src_users_users_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L72", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_updateprofile", + "target": "backend_src_users_users_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L73", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_updateprofile", + "target": "backend_src_users_users_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L74", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_updateprofile", + "target": "backend_src_users_users_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L75", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_updateprofile", + "target": "backend_src_users_users_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L90", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller_userscontroller_updateprofile", + "target": "backend_src_users_users_controller_ts_apibadrequestresponse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_users_users_controller_userscontroller_updateprofile", + "target": "backend_src_users_users_service_usersservice_update" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L269", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice_setdefaultaddress", + "target": "backend_src_users_users_service_usersservice_update" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L290", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice_topupwallet", + "target": "backend_src_users_users_service_usersservice_update" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L243", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service_usersservice_update", + "target": "backend_src_users_users_service_usersservice_updateaddress" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_iconpickermodal_iconpickermodal", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_iconpickermodal_iconpickermodal", + "target": "frontend_admin_panel_src_components_ui_iconpickermodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditor", + "target": "frontend_admin_panel_src_pages_blogs" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditor", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_richtexteditor_richtexteditor", + "target": "frontend_admin_panel_src_components_ui_richtexteditor" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitch", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_toggleswitch_toggleswitch", + "target": "frontend_admin_panel_src_components_ui_toggleswitch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_uitexts_createseosection", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L678", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_uitexts_uitexts", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_badge_badge", + "target": "frontend_admin_panel_src_pages_monitoringpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_badge_badge", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_badge_badge", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_badge_badge", + "target": "frontend_admin_panel_src_components_ui_badge" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_skeleton_skeleton", + "target": "frontend_admin_panel_src_pages_monitoringpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_skeleton_skeleton", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_skeleton_skeleton", + "target": "frontend_admin_panel_src_pages_users" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Skeleton.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_skeleton_skeleton", + "target": "frontend_admin_panel_src_components_ui_skeleton" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_monitoringpage_monitoringpage", + "target": "frontend_admin_panel_src_pages_monitoringpage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L727", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel", + "target": "frontend_admin_panel_src_pages_orders_orders" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_orders_getpaymentmethodlabel", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_orders_getpaymentstatusbadge", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L135", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_orders_getshippingmethodlabel", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L427", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_orders_orders", + "target": "frontend_admin_panel_src_pages_orders_topersiandigits" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_orders_orders", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_orders_topersiandigits", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_users_users", + "target": "frontend_admin_panel_src_pages_users" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L42", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", + "target": "backend_src_contact_contact_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L44", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", + "target": "backend_src_contact_contact_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", + "target": "backend_src_contact_contact_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_contact_contact_controller_contactcontroller_getallsubmissions", + "target": "backend_src_contact_contact_service_contactservice_getallsubmissions" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L37", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo", + "target": "backend_src_contact_contact_controller_ts_get" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_contact_contact_controller_contactcontroller_getcontactinfo", + "target": "backend_src_contact_contact_service_contactservice_getcontactinfo" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L22", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller_submitcontact", + "target": "backend_src_contact_contact_controller_ts_throttle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller_submitcontact", + "target": "backend_src_contact_contact_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L25", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller_submitcontact", + "target": "backend_src_contact_contact_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_contact_contact_controller_contactcontroller_submitcontact", + "target": "backend_src_contact_contact_service_contactservice_submitcontactform" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L71", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", + "target": "backend_src_contact_contact_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L73", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", + "target": "backend_src_contact_contact_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L75", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", + "target": "backend_src_contact_contact_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_contact_contact_controller_contactcontroller_updatecontactinfo", + "target": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L57", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", + "target": "backend_src_contact_contact_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L59", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", + "target": "backend_src_contact_contact_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L61", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", + "target": "backend_src_contact_contact_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L62", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", + "target": "backend_src_contact_contact_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_contact_contact_controller_contactcontroller_updatesubmissionstatus", + "target": "backend_src_contact_contact_service_contactservice_updatesubmissionstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L178", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_service_contactservice_getcontactinfo", + "target": "backend_src_contact_contact_service_contactservice_updatecontactinfoitems" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L36", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", + "target": "backend_src_tickets_tickets_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L37", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L38", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", + "target": "backend_src_tickets_tickets_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L39", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", + "target": "backend_src_tickets_tickets_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L43", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", + "target": "backend_src_tickets_tickets_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L44", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", + "target": "backend_src_tickets_tickets_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", + "target": "backend_src_tickets_tickets_service_ticketsservice_createticket" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L84", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", + "target": "backend_src_tickets_tickets_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L86", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L87", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", + "target": "backend_src_tickets_tickets_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L88", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", + "target": "backend_src_tickets_tickets_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L89", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", + "target": "backend_src_tickets_tickets_controller_ts_query" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", + "target": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L49", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", + "target": "backend_src_tickets_tickets_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L50", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L51", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", + "target": "backend_src_tickets_tickets_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L52", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", + "target": "backend_src_tickets_tickets_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L53", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", + "target": "backend_src_tickets_tickets_controller_ts_req" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", + "target": "backend_src_tickets_tickets_service_ticketsservice_getusertickets" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L57", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", + "target": "backend_src_tickets_tickets_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L59", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", + "target": "backend_src_tickets_tickets_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L60", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", + "target": "backend_src_tickets_tickets_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L62", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", + "target": "backend_src_tickets_tickets_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L63", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", + "target": "backend_src_tickets_tickets_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", + "target": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L69", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", + "target": "backend_src_tickets_tickets_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L70", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L71", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", + "target": "backend_src_tickets_tickets_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L72", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", + "target": "backend_src_tickets_tickets_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L74", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", + "target": "backend_src_tickets_tickets_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L75", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", + "target": "backend_src_tickets_tickets_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L76", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", + "target": "backend_src_tickets_tickets_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", + "target": "backend_src_tickets_tickets_service_ticketsservice_replytoticket" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L100", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", + "target": "backend_src_tickets_tickets_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L93", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", + "target": "backend_src_tickets_tickets_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L95", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", + "target": "backend_src_tickets_tickets_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L96", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", + "target": "backend_src_tickets_tickets_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L97", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", + "target": "backend_src_tickets_tickets_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L99", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", + "target": "backend_src_tickets_tickets_controller_ts_param" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", + "target": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_service_ticketsservice_createticket", + "target": "backend_src_tickets_tickets_service_ticketsservice_generateticketnumber" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L873", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", + "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess" + }, { "relation": "calls", "context": "call", @@ -129506,114 +97828,6 @@ "source": "backend_src_payment_payment_service_paymentservice_adminliveinquiry", "target": "backend_src_payment_zibal_service_zibalservice_getresultmessage" }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L1015", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice_checkgatewayhealth", - "target": "backend_src_payment_zibal_service_zibalservice_checkhealth" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L119", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", - "target": "backend_src_payment_zibal_service_zibalservice_getstarturl" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L59", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", - "target": "backend_src_payment_zibal_service_zibalservice_getbackendurl" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L90", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", - "target": "backend_src_payment_zibal_service_zibalservice_requestpayment" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L93", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice_initiateorderpayment", - "target": "backend_src_payment_zibal_service_zibalservice_getresultmessage" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L155", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", - "target": "backend_src_payment_zibal_service_zibalservice_getbackendurl" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L183", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", - "target": "backend_src_payment_zibal_service_zibalservice_requestpayment" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L186", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", - "target": "backend_src_payment_zibal_service_zibalservice_getresultmessage" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L214", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice_initiatewallettopup", - "target": "backend_src_payment_zibal_service_zibalservice_getstarturl" - }, { "relation": "calls", "context": "call", @@ -129650,6 +97864,18 @@ "source": "backend_src_payment_payment_service_paymentservice_inquirydirectzibal", "target": "backend_src_payment_zibal_service_zibalservice_getresultmessage" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L581", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service_paymentservice_reconcilependingtransactions", + "target": "backend_src_payment_payment_service_paymentservice_verifyandprocess" + }, { "relation": "calls", "context": "call", @@ -129686,18 +97912,6 @@ "source": "backend_src_payment_payment_service_paymentservice_verifyandprocess", "target": "backend_src_payment_zibal_service_zibalservice_getstatusmessage" }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L324", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice_verifyandprocess", - "target": "backend_src_payment_zibal_service_zibalservice_verifypayment" - }, { "relation": "calls", "context": "call", @@ -129711,160 +97925,76 @@ "target": "backend_src_payment_zibal_service_zibalservice_getresultmessage" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/payment/payment.service.ts", - "source_location": "L500", + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L30", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_payment_payment_service_paymentservice_verifyandprocess", - "target": "backend_src_common_services_sms_service_smsservice_sendorderconfirmation" + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", + "target": "backend_src_reviews_reviews_controller_ts_throttle" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L44", + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L31", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_create", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_create" + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", + "target": "backend_src_reviews_reviews_controller_ts_post" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findall", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findall" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L64", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_findone", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_findone" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/prescriptions/prescriptions.controller.ts", - "source_location": "L76", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_controller_prescriptionscontroller_review", - "target": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/prescriptions/prescriptions.service.ts", - "source_location": "L154", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_prescriptions_prescriptions_service_prescriptionsservice_review", - "target": "backend_src_common_services_sms_service_smsservice_sendsms" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/products/products.controller.ts", + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", "source_location": "L32", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_findall", - "target": "backend_src_products_products_service_productsservice_findall" + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", + "target": "backend_src_reviews_reviews_controller_ts_apioperation" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L73", + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L34", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_findone", - "target": "backend_src_products_products_service_productsservice_findone" + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", + "target": "backend_src_reviews_reviews_controller_ts_param" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L40", + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L35", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_getactivefilters", - "target": "backend_src_products_products_service_productsservice_getactivefilters" + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", + "target": "backend_src_reviews_reviews_controller_ts_body" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L54", + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L36", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_getdosageconfig", - "target": "backend_src_products_products_service_productsservice_getdosageconfig" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L48", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_getnavigationfilters", - "target": "backend_src_products_products_service_productsservice_getnavigationfilters" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/products/products.controller.ts", - "source_location": "L67", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_controller_productscontroller_updatedosageconfig", - "target": "backend_src_products_products_service_productsservice_updatedosageconfig" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/products/products.service.ts", - "source_location": "L283", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_products_products_service_productsservice_updatedosageconfig", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct" + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", + "target": "backend_src_reviews_reviews_controller_ts_req" }, { "relation": "calls", @@ -129872,83 +98002,1832 @@ "confidence": "INFERRED", "confidence_score": 0.8, "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L37", + "source_location": "L39", "weight": 1.0, "_origin": "ast", "source": "backend_src_reviews_reviews_controller_reviewscontroller_createreview", "target": "backend_src_reviews_reviews_service_reviewsservice_createreview" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L105", + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L8", "weight": 1.0, "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_deletereview", - "target": "backend_src_reviews_reviews_service_reviewsservice_deletereview" + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", + "target": "frontend_admin_panel_src_components_ui_mediaselector" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_imagepreviewmodal_imagepreviewmodal", + "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L72", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L259", "weight": 1.0, "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_getadminreviews", - "target": "backend_src_reviews_reviews_service_reviewsservice_getadminreviews" + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_media_getfiletype", + "target": "frontend_admin_panel_src_pages_media_mediamanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_media_getfiletype", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_media_mediamanager", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_prescriptionsmanager_prescriptionsmanager", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L21", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller_wikicontroller_findall", + "target": "backend_src_wiki_wiki_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L22", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller_wikicontroller_findall", + "target": "backend_src_wiki_wiki_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L23", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller_wikicontroller_findall", + "target": "backend_src_wiki_wiki_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L24", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller_wikicontroller_findall", + "target": "backend_src_wiki_wiki_controller_ts_query" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L28", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller_wikicontroller_findone", + "target": "backend_src_wiki_wiki_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L29", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller_wikicontroller_findone", + "target": "backend_src_wiki_wiki_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L30", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller_wikicontroller_findone", + "target": "backend_src_wiki_wiki_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller_wikicontroller_findone", + "target": "backend_src_wiki_wiki_controller_ts_apinotfoundresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L32", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller_wikicontroller_findone", + "target": "backend_src_wiki_wiki_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L36", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller_petscontroller_deletepet", + "target": "backend_src_admin_pets_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L37", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller_petscontroller_deletepet", + "target": "backend_src_admin_pets_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L38", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller_petscontroller_deletepet", + "target": "backend_src_admin_pets_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L27", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller_petscontroller_getpets", + "target": "backend_src_admin_pets_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L28", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller_petscontroller_getpets", + "target": "backend_src_admin_pets_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller_petscontroller_getpets", + "target": "backend_src_admin_pets_controller_ts_apiquery" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L32", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller_petscontroller_getpets", + "target": "backend_src_admin_pets_controller_ts_query" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/reviews/reviews.controller.ts", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L261", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice_addhealthlog", + "target": "backend_src_pets_pets_service_petsservice_findone" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L262", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice_addhealthlog", + "target": "backend_src_pets_pets_service_petsservice_create" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice_addreminder", + "target": "backend_src_pets_pets_service_petsservice_findone" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice_addreminder", + "target": "backend_src_pets_pets_service_petsservice_create" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L250", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice_create", + "target": "backend_src_pets_pets_service_petsservice_togglereminder" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice_findone", + "target": "backend_src_pets_pets_service_petsservice_remove" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L217", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice_findone", + "target": "backend_src_pets_pets_service_petsservice_togglereminder" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_petsservice_findone", + "target": "backend_src_pets_pets_service_petsservice_update" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/about/page.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_about_page_aboutpage", + "target": "frontend_application_app_about_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/about/page.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_about_page_generatemetadata", + "target": "frontend_application_lib_seo_getpagemetadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/about/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_about_page_generatemetadata", + "target": "frontend_application_app_about_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/checkout/page.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_checkout_page_checkout", + "target": "frontend_application_app_checkout_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/checkout/page.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_checkout_page_generatemetadata", + "target": "frontend_application_lib_seo_getpagemetadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/checkout/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_checkout_page_generatemetadata", + "target": "frontend_application_app_checkout_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/dashboard/page.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_dashboard_page_dashboardpage", + "target": "frontend_application_app_dashboard_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/dashboard/page.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_dashboard_page_generatemetadata", + "target": "frontend_application_lib_seo_getpagemetadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/dashboard/page.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_dashboard_page_generatemetadata", + "target": "frontend_application_app_dashboard_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/page.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_page_generatemetadata", + "target": "frontend_application_lib_seo_getpagemetadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_page_generatemetadata", + "target": "frontend_application_app_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/privacy/page.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_privacy_page_generatemetadata", + "target": "frontend_application_lib_seo_getpagemetadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/privacy/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_privacy_page_generatemetadata", + "target": "frontend_application_app_privacy_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/privacy/page.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_privacy_page_privacypage", + "target": "frontend_application_app_privacy_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/profile/page.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_profile_page_generatemetadata", + "target": "frontend_application_lib_seo_getpagemetadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/profile/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_profile_page_generatemetadata", + "target": "frontend_application_app_profile_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/profile/page.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_profile_page_profilepage", + "target": "frontend_application_app_profile_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/search/page.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_search_page_generatemetadata", + "target": "frontend_application_lib_seo_getpagemetadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/search/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_search_page_generatemetadata", + "target": "frontend_application_app_search_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/search/page.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_search_page_searchpage", + "target": "frontend_application_app_search_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/shop/page.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_shop_page_generatemetadata", + "target": "frontend_application_lib_seo_getpagemetadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_shop_page_generatemetadata", + "target": "frontend_application_app_shop_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/page.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_shop_page_shop", + "target": "frontend_application_app_shop_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_track_page_generatemetadata", + "target": "frontend_application_lib_seo_getpagemetadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_track_page_generatemetadata", + "target": "frontend_application_app_track_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_track_page_trackpage", + "target": "frontend_application_app_track_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_trust_seals_page_generatemetadata", + "target": "frontend_application_lib_seo_getpagemetadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_trust_seals_page_generatemetadata", + "target": "frontend_application_app_trust_seals_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_trust_seals_page_trustsealspage", + "target": "frontend_application_app_trust_seals_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/wiki/page.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_wiki_page_generatemetadata", + "target": "frontend_application_lib_seo_getpagemetadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/page.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_wiki_page_generatemetadata", + "target": "frontend_application_app_wiki_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/page.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_wiki_page_wikipage", + "target": "frontend_application_app_wiki_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_archivepage_archivepage", + "target": "frontend_application_app_shop_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L237", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_archivepage_archivepage", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/b2b/page.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_b2b_page_generatemetadata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_contact_page_generatemetadata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/seo.ts", + "source_location": "L177", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_lib_seo_getseoconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/seo.ts", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_lib_seo_formatpagetitle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/about/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_about_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/b2b/page.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_b2b_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_blog_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/catalog/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_catalog_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/checkout/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_checkout_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_contact_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/dashboard/page.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_dashboard_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/privacy/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_privacy_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/profile/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_profile_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/search/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_search_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_shop_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_track_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_trust_seals_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_videos_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/page.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_app_wiki_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/seo.ts", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getpagemetadata", + "target": "frontend_application_lib_seo" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L40", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller_createterm", + "target": "backend_src_admin_wiki_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L41", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller_createterm", + "target": "backend_src_admin_wiki_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L42", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller_createterm", + "target": "backend_src_admin_wiki_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L57", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", + "target": "backend_src_admin_wiki_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", + "target": "backend_src_admin_wiki_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L59", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller_deleteterm", + "target": "backend_src_admin_wiki_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L31", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller_getterms", + "target": "backend_src_admin_wiki_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L32", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller_getterms", + "target": "backend_src_admin_wiki_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L35", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller_getterms", + "target": "backend_src_admin_wiki_controller_ts_apiquery" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L36", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller_getterms", + "target": "backend_src_admin_wiki_controller_ts_query" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L47", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller_updateterm", + "target": "backend_src_admin_wiki_controller_ts_put" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller_updateterm", + "target": "backend_src_admin_wiki_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", "source_location": "L50", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_getproductreviews", - "target": "backend_src_reviews_reviews_service_reviewsservice_getproductreviews" + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller_updateterm", + "target": "backend_src_admin_wiki_controller_ts_param" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/reviews/reviews.controller.ts", - "source_location": "L93", + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L51", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_reviews_reviews_controller_reviewscontroller_updatereviewstatus", - "target": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus" + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller_wikicontroller_updateterm", + "target": "backend_src_admin_wiki_controller_ts_body" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L256", + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L283", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_reviews_reviews_service_reviewsservice_deletereview", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct" + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", + "target": "backend_src_pets_pets_controller_ts_post" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/reviews/reviews.service.ts", - "source_location": "L227", + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L284", "weight": 1.0, + "context": "decorator", "_origin": "ast", - "source": "backend_src_reviews_reviews_service_reviewsservice_updatereviewstatus", - "target": "backend_src_common_revalidation_revalidation_service_revalidationservice_revalidateproduct" + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", + "target": "backend_src_pets_pets_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L286", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", + "target": "backend_src_pets_pets_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L287", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", + "target": "backend_src_pets_pets_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L288", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_addhealthlog", + "target": "backend_src_pets_pets_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L257", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_addreminder", + "target": "backend_src_pets_pets_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L258", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_addreminder", + "target": "backend_src_pets_pets_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L260", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_addreminder", + "target": "backend_src_pets_pets_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L261", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_addreminder", + "target": "backend_src_pets_pets_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L262", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_addreminder", + "target": "backend_src_pets_pets_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L108", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_create", + "target": "backend_src_pets_pets_controller_ts_apibadrequestresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L120", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_create", + "target": "backend_src_pets_pets_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L121", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_create", + "target": "backend_src_pets_pets_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L89", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_create", + "target": "backend_src_pets_pets_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L90", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_create", + "target": "backend_src_pets_pets_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L91", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_create", + "target": "backend_src_pets_pets_controller_ts_apicreatedresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L126", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_findall", + "target": "backend_src_pets_pets_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L127", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_findall", + "target": "backend_src_pets_pets_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L128", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_findall", + "target": "backend_src_pets_pets_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L155", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_findall", + "target": "backend_src_pets_pets_controller_ts_query" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L155", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_findall", + "target": "backend_src_pets_pets_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L159", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_findone", + "target": "backend_src_pets_pets_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L160", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_findone", + "target": "backend_src_pets_pets_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L161", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_findone", + "target": "backend_src_pets_pets_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L181", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_findone", + "target": "backend_src_pets_pets_controller_ts_apinotfoundresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L192", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_findone", + "target": "backend_src_pets_pets_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L192", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_findone", + "target": "backend_src_pets_pets_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L231", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_remove", + "target": "backend_src_pets_pets_controller_ts_delete" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L232", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_remove", + "target": "backend_src_pets_pets_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L233", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_remove", + "target": "backend_src_pets_pets_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L242", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_remove", + "target": "backend_src_pets_pets_controller_ts_apinotfoundresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L253", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_remove", + "target": "backend_src_pets_pets_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L253", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_remove", + "target": "backend_src_pets_pets_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L267", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_togglereminder", + "target": "backend_src_pets_pets_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L268", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_togglereminder", + "target": "backend_src_pets_pets_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L270", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_togglereminder", + "target": "backend_src_pets_pets_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L272", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_togglereminder", + "target": "backend_src_pets_pets_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L273", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_togglereminder", + "target": "backend_src_pets_pets_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L196", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_update", + "target": "backend_src_pets_pets_controller_ts_patch" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L197", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_update", + "target": "backend_src_pets_pets_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L198", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_update", + "target": "backend_src_pets_pets_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L212", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_update", + "target": "backend_src_pets_pets_controller_ts_apinotfoundresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L224", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_update", + "target": "backend_src_pets_pets_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L225", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_update", + "target": "backend_src_pets_pets_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L226", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_update", + "target": "backend_src_pets_pets_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", + "target": "backend_src_pets_pets_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L59", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", + "target": "backend_src_pets_pets_controller_ts_useinterceptors" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L80", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", + "target": "backend_src_pets_pets_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L81", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_petscontroller_uploadpetimage", + "target": "backend_src_pets_pets_controller_ts_uploadedfile" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L16", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_controller_seocontroller_getproductschema", + "target": "backend_src_seo_seo_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L17", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_controller_seocontroller_getproductschema", + "target": "backend_src_seo_seo_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L20", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_controller_seocontroller_getproductschema", + "target": "backend_src_seo_seo_controller_ts_param" }, { "relation": "calls", @@ -129962,6 +99841,30 @@ "source": "backend_src_seo_seo_controller_seocontroller_getproductschema", "target": "backend_src_seo_seo_service_seoservice_getproductschema" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L10", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_controller_seocontroller_getsitemap", + "target": "backend_src_seo_seo_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L11", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_controller_seocontroller_getsitemap", + "target": "backend_src_seo_seo_controller_ts_apioperation" + }, { "relation": "calls", "context": "call", @@ -129977,803 +99880,33862 @@ { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L243", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/rss.xml/route.ts", + "source_location": "L23", "weight": 1.0, "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_addpattern", - "target": "backend_src_settings_settings_service_settingsservice_addpattern" + "confidence_score": 1.0, + "source": "frontend_application_app_blog_rss_xml_route_escapexml", + "target": "frontend_application_app_blog_rss_xml_route_get" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/rss.xml/route.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_rss_xml_route_escapexml", + "target": "frontend_application_app_blog_rss_xml_route" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/rss.xml/route.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_rss_xml_route_get", + "target": "frontend_application_app_blog_rss_xml_route" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L17", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_controller_reportscontroller_getreports", + "target": "backend_src_admin_reports_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L18", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_controller_reportscontroller_getreports", + "target": "backend_src_admin_reports_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L19", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_controller_reportscontroller_getreports", + "target": "backend_src_admin_reports_controller_ts_apioperation" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L284", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L30", "weight": 1.0, "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_clearallsmslogs", - "target": "backend_src_settings_settings_service_settingsservice_clearallsmslogs" + "source": "backend_src_admin_reports_controller_reportscontroller_getreports", + "target": "backend_src_admin_reports_service_reportsservice_getdashboardreports" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L124", + "relation": "references", + "_origin": "ast", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "context": "decorator", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L24", + "weight": 1.0, + "source": "backend_src_admin_reports_controller_reportscontroller_getreports", + "target": "backend_src_admin_reports_controller_ts_apiquery" + }, + { + "relation": "references", + "_origin": "ast", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "context": "decorator", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L28", + "weight": 1.0, + "source": "backend_src_admin_reports_controller_reportscontroller_getreports", + "target": "backend_src_admin_reports_controller_ts_query" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L93", "weight": 1.0, "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletescientificterm", - "target": "backend_src_settings_settings_service_settingsservice_deletescientificterm" + "confidence_score": 1.0, + "source": "frontend_application_app_shop_slug_page_shopproductpage", + "target": "frontend_application_app_shop_slug_page" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L275", + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L71", "weight": 1.0, "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_deletesmslog", - "target": "backend_src_settings_settings_service_settingsservice_deletesmslog" + "confidence_score": 1.0, + "source": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", + "target": "frontend_application_components_productpage" }, { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L254", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_editpattern", - "target": "backend_src_settings_settings_service_settingsservice_editpattern" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L87", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getfinancial", - "target": "backend_src_settings_settings_service_settingsservice_getfinancialsettings" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L150", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getfinancialsettings", - "target": "backend_src_settings_settings_service_settingsservice_getcategorysetting" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L230", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getpatterns", - "target": "backend_src_settings_settings_service_settingsservice_getpatterns" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L103", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getscientificterms", - "target": "backend_src_settings_settings_service_settingsservice_getscientificterms" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L131", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getseosettings", - "target": "backend_src_settings_settings_service_settingsservice_getcategorysetting" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L197", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmscredit", - "target": "backend_src_settings_settings_service_settingsservice_getsmscredit" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L266", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmslogs", - "target": "backend_src_settings_settings_service_settingsservice_getsmslogs" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L188", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsmssettings", - "target": "backend_src_settings_settings_service_settingsservice_getsmssettings" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L169", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getsystemsettings", - "target": "backend_src_settings_settings_service_settingsservice_getcategorysetting" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L38", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_getuitexts", - "target": "backend_src_settings_settings_service_settingsservice_getuitexts" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L72", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_patchuitext", - "target": "backend_src_settings_settings_service_settingsservice_updateuitext" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L81", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_putbulkuitexts", - "target": "backend_src_settings_settings_service_settingsservice_updatebulkuitexts" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L55", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_putuitext", - "target": "backend_src_settings_settings_service_settingsservice_updateuitext" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L219", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_testsms", - "target": "backend_src_settings_settings_service_settingsservice_testsms" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L97", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancial", - "target": "backend_src_settings_settings_service_settingsservice_updatefinancialsettings" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L159", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatefinancialsettings", - "target": "backend_src_settings_settings_service_settingsservice_updatecategorysetting" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L140", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updateseosettings", - "target": "backend_src_settings_settings_service_settingsservice_updatecategorysetting" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L206", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesmssettings", - "target": "backend_src_settings_settings_service_settingsservice_updatesmssettings" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L178", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_updatesystemsettings", - "target": "backend_src_settings_settings_service_settingsservice_updatecategorysetting" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.controller.ts", - "source_location": "L115", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_controller_settingscontroller_upsertscientificterm", - "target": "backend_src_settings_settings_service_settingsservice_upsertscientificterm" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L609", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_addpattern", - "target": "backend_src_common_services_sms_service_smsservice_addpattern" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L625", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_clearallsmslogs", - "target": "backend_src_common_services_sms_service_smsservice_clearallsmslogs" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L621", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_deletesmslog", - "target": "backend_src_common_services_sms_service_smsservice_deletesmslog" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L613", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_editpattern", - "target": "backend_src_common_services_sms_service_smsservice_editpattern" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L605", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_getpatterns", - "target": "backend_src_common_services_sms_service_smsservice_getpatterns" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L588", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_getsmscredit", - "target": "backend_src_common_services_sms_service_smsservice_getcredit" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L617", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_getsmslogs", - "target": "backend_src_common_services_sms_service_smsservice_getsmslogs" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L584", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_getsmssettings", - "target": "backend_src_common_services_sms_service_smsservice_getsmsconfig" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/settings/settings.service.ts", - "source_location": "L601", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_settings_settings_service_settingsservice_testsms", - "target": "backend_src_common_services_sms_service_smsservice_testsms" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_create", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_create" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_findall", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_findall" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L56", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_remove", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_remove" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", - "source_location": "L47", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_smart_advisor_smart_advisor_controller_smartadvisorcontroller_update", - "target": "backend_src_smart_advisor_smart_advisor_service_smartadvisorservice_update" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_create", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_create" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L26", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findall", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_findall" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L32", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_findhomepage", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_findhomepage" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L59", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_remove", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_remove" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/testimonials/testimonials.controller.ts", - "source_location": "L50", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_testimonials_testimonials_controller_testimonialscontroller_update", - "target": "backend_src_testimonials_testimonials_service_testimonialsservice_update" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L46", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_createticket", - "target": "backend_src_tickets_tickets_service_ticketsservice_createticket" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L90", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getadmintickets", - "target": "backend_src_tickets_tickets_service_ticketsservice_getadmintickets" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L54", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getmytickets", - "target": "backend_src_tickets_tickets_service_ticketsservice_getusertickets" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L66", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_getticketdetails", - "target": "backend_src_tickets_tickets_service_ticketsservice_getticketdetails" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L79", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_replyticket", - "target": "backend_src_tickets_tickets_service_ticketsservice_replytoticket" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/tickets/tickets.controller.ts", - "source_location": "L102", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_tickets_tickets_controller_ticketscontroller_updateticketstatus", - "target": "backend_src_tickets_tickets_service_ticketsservice_updateticketstatus" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L135", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_addaddress", - "target": "backend_src_users_users_service_usersservice_addaddress" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L183", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_deleteaddress", - "target": "backend_src_users_users_service_usersservice_deleteaddress" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L69", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_getprofile", - "target": "backend_src_users_users_service_usersservice_findbyid" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L202", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_setdefaultaddress", - "target": "backend_src_users_users_service_usersservice_setdefaultaddress" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L231", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_topupwallet", - "target": "backend_src_users_users_service_usersservice_topupwallet" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L164", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateaddress", - "target": "backend_src_users_users_service_usersservice_updateaddress" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/users/users.controller.ts", - "source_location": "L107", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_users_users_controller_userscontroller_updateprofile", - "target": "backend_src_users_users_service_usersservice_update" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L49", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_create", - "target": "backend_src_videos_videos_service_videosservice_create" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L35", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_findall", - "target": "backend_src_videos_videos_service_videosservice_findall" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L41", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_findone", - "target": "backend_src_videos_videos_service_videosservice_findone" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L68", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_remove", - "target": "backend_src_videos_videos_service_videosservice_remove" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/videos/videos.controller.ts", - "source_location": "L60", - "weight": 1.0, - "_origin": "ast", - "source": "backend_src_videos_videos_controller_videoscontroller_update", - "target": "backend_src_videos_videos_service_videosservice_update" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/wholesale/wholesale.controller.ts", + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", "source_location": "L33", "weight": 1.0, "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_applyforwholesale", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale" + "confidence_score": 1.0, + "source": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", + "target": "frontend_application_components_podcastinlineplayer" }, { - "relation": "calls", - "context": "call", + "relation": "indirect_call", "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L55", + "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", + "source_location": "L56", "weight": 1.0, "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_approvewholesalerequest", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice_approvewholesalerequest" + "context": "argument", + "confidence_score": 0.85, + "source": "frontend_application_components_podcastinlineplayer_podcastinlineplayer", + "target": "frontend_application_components_podcastinlineplayer_podcastinlineplayer_handleclickoutside" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L44", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L122", "weight": 1.0, "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_getwholesalerequests", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice_getwholesalerequests" + "source": "frontend_application_components_productpage_productpage", + "target": "frontend_application_lib_store_usepetstore_usepetstore" }, { "relation": "calls", "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/src/wholesale/wholesale.controller.ts", - "source_location": "L64", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L124", "weight": 1.0, "_origin": "ast", - "source": "backend_src_wholesale_wholesale_controller_wholesalecontroller_rejectwholesalerequest", - "target": "backend_src_wholesale_wholesale_service_wholesaleservice_rejectwholesalerequest" + "confidence_score": 1.0, + "source": "frontend_application_components_productpage_productpage", + "target": "frontend_application_components_productpage_usecalculatorstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L125", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_productpage_productpage", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_productpage_productpage", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_productpage_productpage", + "target": "frontend_application_app_shop_slug_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_productpage_productpage", + "target": "frontend_application_components_productpage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_productreviews_productreviews", + "target": "frontend_application_components_productreviews" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/Tooltip.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_tooltip_tooltip", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tooltip_tooltip", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tooltip_tooltip", + "target": "frontend_application_components_tests_tooltip_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Tooltip.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tooltip_tooltip", + "target": "frontend_application_components_tooltip" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-home.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_home_main", + "target": "backend_prisma_seed_home" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed.ts", + "source_location": "L471", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_main", + "target": "backend_prisma_seed_products" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed.ts", + "source_location": "L482", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_main", + "target": "backend_prisma_seed_home" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_main", + "target": "backend_prisma_seed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L292", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_products_determinesuitablefor", + "target": "backend_prisma_seed_products_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_products_determinesuitablefor", + "target": "backend_prisma_seed_products" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L304", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_products_findorcreatecategory", + "target": "backend_prisma_seed_products_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L128", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_products_findorcreatecategory", + "target": "backend_prisma_seed_products" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L359", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_products_getproductimageurl", + "target": "backend_prisma_seed_products_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_products_getproductimageurl", + "target": "backend_prisma_seed_products" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L302", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_products_main", + "target": "backend_prisma_seed_products_slugify" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L312", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_products_main", + "target": "backend_prisma_seed_products_parsesize" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L268", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_products_main", + "target": "backend_prisma_seed_products" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_products_parsesize", + "target": "backend_prisma_seed_products" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_products_slugify", + "target": "backend_prisma_seed_products" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_homeclient_homeclient", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_homeclient_homeclient", + "target": "frontend_application_app_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_homeclient_homeclient", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_page_gethomedata", + "target": "frontend_application_app_page_home" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_page_gethomedata", + "target": "frontend_application_app_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_page_home", + "target": "frontend_application_app_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_bannerplacement_bannerplacement", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_bannerplacement_bannerplacement", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_bannerplacement_bannerplacement", + "target": "frontend_application_components_bannerplacement" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/FAQSection.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_faqsection_faqsection", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "contains", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FAQSection.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_faqsection_faqsection", + "target": "frontend_application_components_faqsection_faqsection_loadfaqs" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_faqsection_faqsection", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FAQSection.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_faqsection_faqsection", + "target": "frontend_application_components_faqsection" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_components_hero_hero", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_hero_hero", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Hero.test.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_hero_hero", + "target": "frontend_application_components_tests_hero_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_hero_hero", + "target": "frontend_application_components_hero" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_hero_statcounter", + "target": "frontend_application_components_hero" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L57", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_create", + "target": "backend_src_orders_orders_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L58", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_create", + "target": "backend_src_orders_orders_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L59", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_create", + "target": "backend_src_orders_orders_controller_ts_apicreatedresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L74", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_create", + "target": "backend_src_orders_orders_controller_ts_apibadrequestresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L86", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_create", + "target": "backend_src_orders_orders_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L87", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_create", + "target": "backend_src_orders_orders_controller_ts_body" }, { "relation": "calls", "context": "call", "confidence": "INFERRED", "confidence_score": 0.8, - "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_orders_orders_controller_orderscontroller_create", + "target": "backend_src_orders_orders_service_ordersservice_create" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L121", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_findall", + "target": "backend_src_orders_orders_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L122", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_findall", + "target": "backend_src_orders_orders_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L123", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_findall", + "target": "backend_src_orders_orders_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L146", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_findall", + "target": "backend_src_orders_orders_controller_ts_query" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L146", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_findall", + "target": "backend_src_orders_orders_controller_ts_req" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L147", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_orders_orders_controller_orderscontroller_findall", + "target": "backend_src_orders_orders_service_ordersservice_findallbyuser" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L208", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_findone", + "target": "backend_src_orders_orders_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L208", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_findone", + "target": "backend_src_orders_orders_controller_ts_req" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L209", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_orders_orders_controller_orderscontroller_findone", + "target": "backend_src_orders_orders_service_ordersservice_findone" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L150", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", + "target": "backend_src_orders_orders_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L178", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", + "target": "backend_src_orders_orders_controller_ts_apinotfoundresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L189", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", + "target": "backend_src_orders_orders_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L190", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", + "target": "backend_src_orders_orders_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L193", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", + "target": "backend_src_orders_orders_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L197", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", + "target": "backend_src_orders_orders_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L198", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", + "target": "backend_src_orders_orders_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L199", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", + "target": "backend_src_orders_orders_controller_ts_body" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L201", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_orders_orders_controller_orderscontroller_retrypayment", + "target": "backend_src_orders_orders_service_ordersservice_retrypayment" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L107", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", + "target": "backend_src_orders_orders_controller_ts_apibadrequestresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L111", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", + "target": "backend_src_orders_orders_controller_ts_req" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L112", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", + "target": "backend_src_orders_orders_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L92", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", + "target": "backend_src_orders_orders_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L93", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", + "target": "backend_src_orders_orders_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L94", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", + "target": "backend_src_orders_orders_controller_ts_apiokresponse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "source": "backend_src_orders_orders_controller_orderscontroller_validatecoupon", + "target": "backend_src_orders_orders_service_ordersservice_validatecoupon" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice_create", + "target": "backend_src_orders_orders_service_ordersservice_validatecoupon" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L191", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice_create", + "target": "backend_src_orders_orders_service_ordersservice_generatetrackingnumber" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L486", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_ordersservice_create", + "target": "backend_src_orders_orders_service_ordersservice_retrypayment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/b2b/page.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_b2b_page_b2bpage", + "target": "frontend_application_lib_schema_generateb2bserviceschema" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/b2b/page.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_b2b_page_b2bpage", + "target": "frontend_application_lib_schema_generatebreadcrumbschema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/b2b/page.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_b2b_page_b2bpage", + "target": "frontend_application_app_b2b_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/b2b/page.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_b2b_page_generatemetadata", + "target": "frontend_application_app_b2b_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_contact_page_contactpage", + "target": "frontend_application_lib_schema_generatelocalbusinessschema" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/contact/page.tsx", "source_location": "L29", "weight": 1.0, "_origin": "ast", - "source": "backend_src_wholesale_wholesale_service_wholesaleservice_applyforwholesale", - "target": "backend_src_common_services_sms_service_smsservice_sendpatternsms" + "source": "frontend_application_app_contact_page_contactpage", + "target": "frontend_application_lib_schema_generatebreadcrumbschema" }, { - "relation": "conceptually_related_to", + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_contact_page_contactpage", + "target": "frontend_application_app_contact_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_contact_page_generatemetadata", + "target": "frontend_application_app_contact_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_wiki_slug_page_generatemetadata", + "target": "frontend_application_app_wiki_slug_page_getwikiterm" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_wiki_slug_page_generatemetadata", + "target": "frontend_application_lib_seo_getseoconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_wiki_slug_page_generatemetadata", + "target": "frontend_application_lib_seo_formatpagetitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_wiki_slug_page_generatemetadata", + "target": "frontend_application_app_wiki_slug_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_wiki_slug_page_getrelatedproducts", + "target": "frontend_application_app_wiki_slug_page_wikitermpage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_wiki_slug_page_getrelatedproducts", + "target": "frontend_application_app_wiki_slug_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_wiki_slug_page_getwikiterm", + "target": "frontend_application_app_wiki_slug_page_wikitermpage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_wiki_slug_page_getwikiterm", + "target": "frontend_application_app_wiki_slug_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_wiki_slug_page_wikitermpage", + "target": "frontend_application_lib_schema_generatebreadcrumbschema" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_wiki_slug_page_wikitermpage", + "target": "frontend_application_lib_schema_generatemedicalwebpageschema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_wiki_slug_page_wikitermpage", + "target": "frontend_application_app_wiki_slug_page" + }, + { + "relation": "contains", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ContactFormClient.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_contactformclient_contactformclient", + "target": "frontend_application_components_contactformclient_contactformclient_fetchcontactinfo" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_contactformclient_contactformclient", + "target": "frontend_application_app_contact_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ContactFormClient.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_contactformclient_contactformclient", + "target": "frontend_application_components_contactformclient" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/b2b/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_generateb2bserviceschema", + "target": "frontend_application_app_b2b_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_generateb2bserviceschema", + "target": "frontend_application_lib_schema" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/b2b/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_generatebreadcrumbschema", + "target": "frontend_application_app_b2b_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_generatebreadcrumbschema", + "target": "frontend_application_app_contact_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_generatebreadcrumbschema", + "target": "frontend_application_app_videos_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_generatebreadcrumbschema", + "target": "frontend_application_app_wiki_slug_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L222", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_generatebreadcrumbschema", + "target": "frontend_application_lib_schema" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_generatelocalbusinessschema", + "target": "frontend_application_app_contact_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_generatelocalbusinessschema", + "target": "frontend_application_lib_schema" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_generatemedicalwebpageschema", + "target": "frontend_application_app_wiki_slug_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/schema.ts", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_schema_generatemedicalwebpageschema", + "target": "frontend_application_lib_schema" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_slug_page_blogpostpage", + "target": "frontend_application_app_blog_slug_page_getblog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_blog_slug_page_blogpostpage", + "target": "frontend_application_lib_seo_getseoconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L153", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_slug_page_blogpostpage", + "target": "frontend_application_app_blog_slug_page_safelocaldate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_slug_page_blogpostpage", + "target": "frontend_application_app_blog_slug_page_safeiso" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_slug_page_blogpostpage", + "target": "frontend_application_app_blog_slug_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_slug_page_generatemetadata", + "target": "frontend_application_app_blog_slug_page_getblog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_blog_slug_page_generatemetadata", + "target": "frontend_application_lib_seo_getseoconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_blog_slug_page_generatemetadata", + "target": "frontend_application_lib_seo_formatpagetitle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_slug_page_generatemetadata", + "target": "frontend_application_app_blog_slug_page_safeiso" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_slug_page_generatemetadata", + "target": "frontend_application_app_blog_slug_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_slug_page_getblog", + "target": "frontend_application_app_blog_slug_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_slug_page_safeiso", + "target": "frontend_application_app_blog_slug_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_slug_page_safelocaldate", + "target": "frontend_application_app_blog_slug_page" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_shop_slug_page_generatemetadata", + "target": "frontend_application_lib_seo_getseoconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "source": "frontend_application_app_shop_slug_page_generatemetadata", + "target": "frontend_application_lib_seo_formatpagetitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_shop_slug_page_generatemetadata", + "target": "frontend_application_app_shop_slug_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_blogpostclient_blogpostclient", + "target": "frontend_application_app_blog_slug_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPostClient.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_blogpostclient_blogpostclient", + "target": "frontend_application_components_blogpostclient" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_formatpagetitle", + "target": "frontend_application_app_blog_slug_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_formatpagetitle", + "target": "frontend_application_app_shop_slug_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_formatpagetitle", + "target": "frontend_application_app_wiki_slug_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/seo.ts", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_formatpagetitle", + "target": "frontend_application_lib_seo" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getseoconfig", + "target": "frontend_application_app_blog_slug_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getseoconfig", + "target": "frontend_application_app_layout" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getseoconfig", + "target": "frontend_application_app_shop_slug_page" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getseoconfig", + "target": "frontend_application_app_wiki_slug_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/seo.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo_getseoconfig", + "target": "frontend_application_lib_seo" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L74", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", + "target": "backend_src_blogs_blogs_controller_ts_throttle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L75", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", + "target": "backend_src_blogs_blogs_controller_ts_useguards" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L76", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", + "target": "backend_src_blogs_blogs_controller_ts_apibearerauth" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L77", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", + "target": "backend_src_blogs_blogs_controller_ts_post" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L78", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", + "target": "backend_src_blogs_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L80", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", + "target": "backend_src_blogs_blogs_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L81", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", + "target": "backend_src_blogs_blogs_controller_ts_body" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L82", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_addcomment", + "target": "backend_src_blogs_blogs_controller_ts_request" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L34", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findall", + "target": "backend_src_blogs_blogs_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L35", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findall", + "target": "backend_src_blogs_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L36", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findall", + "target": "backend_src_blogs_blogs_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L37", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findall", + "target": "backend_src_blogs_blogs_controller_ts_query" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L41", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findcategories", + "target": "backend_src_blogs_blogs_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L42", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findcategories", + "target": "backend_src_blogs_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L68", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findcomments", + "target": "backend_src_blogs_blogs_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L69", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findcomments", + "target": "backend_src_blogs_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L70", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findcomments", + "target": "backend_src_blogs_blogs_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L53", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findhomepage", + "target": "backend_src_blogs_blogs_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L54", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findhomepage", + "target": "backend_src_blogs_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L55", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findhomepage", + "target": "backend_src_blogs_blogs_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L60", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findone", + "target": "backend_src_blogs_blogs_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L61", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findone", + "target": "backend_src_blogs_blogs_controller_ts_apioperation" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L62", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findone", + "target": "backend_src_blogs_blogs_controller_ts_apiokresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L63", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findone", + "target": "backend_src_blogs_blogs_controller_ts_apinotfoundresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L64", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findone", + "target": "backend_src_blogs_blogs_controller_ts_param" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L47", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findtags", + "target": "backend_src_blogs_blogs_controller_ts_get" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L48", + "weight": 1.0, + "context": "decorator", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller_blogscontroller_findtags", + "target": "backend_src_blogs_blogs_controller_ts_apioperation" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-openapi.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_scripts_generate_openapi_ts_backend_scripts_generate_openapi" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_settings_settings_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_common_metrics_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_home_home_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_blogs_blogs_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_wiki_wiki_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_seo_seo_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_cms_cms_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_prisma_prisma_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_wholesale_wholesale_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_videos_videos_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_common_sms_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_contact_contact_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_banners_banners_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_smart_advisor_smart_advisor_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_testimonials_testimonials_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_ingredients_ingredients_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_prescriptions_prescriptions_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_b2b_b2b_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_products_products_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_payment_payment_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_tickets_tickets_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_reviews_reviews_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_doctors_doctors_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_faq_faq_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_menu_menu_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_common_revalidation_revalidation_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_users_users_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_redis_redis_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_redis_redis_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_auth_auth_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_pets_pets_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.module.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_orders_orders_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/main.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_src_main" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/test/app.e2e-spec.js", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_test_app_e2e_spec_js_backend_test_app_e2e_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/test/app.e2e-spec.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_module", + "target": "backend_test_app_e2e_spec_ts_backend_test_app_e2e_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_module", + "target": "backend_src_b2b_b2b_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_module", + "target": "backend_src_b2b_b2b_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_module", + "target": "backend_src_prisma_prisma_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_module", + "target": "backend_src_banners_banners_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_module", + "target": "backend_src_banners_banners_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_module", + "target": "backend_src_prisma_prisma_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_module", + "target": "backend_src_cms_cms_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_module", + "target": "backend_src_cms_cms_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_module", + "target": "backend_src_prisma_prisma_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/sms.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_sms_module", + "target": "backend_src_common_services_sms_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_sms_module", + "target": "backend_src_contact_contact_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_sms_module", + "target": "backend_src_payment_payment_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_module", + "target": "backend_src_contact_contact_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_module", + "target": "backend_src_contact_contact_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_module", + "target": "backend_src_doctors_doctors_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_module", + "target": "backend_src_doctors_doctors_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_module", + "target": "backend_src_prisma_prisma_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_module", + "target": "backend_src_faq_faq_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_module", + "target": "backend_src_faq_faq_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_module", + "target": "backend_src_ingredients_ingredients_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_module", + "target": "backend_src_ingredients_ingredients_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_module", + "target": "backend_src_prisma_prisma_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_module", + "target": "backend_src_menu_menu_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_module", + "target": "backend_src_menu_menu_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_module", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_module", + "target": "backend_src_payment_payment_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_module", + "target": "backend_src_payment_zibal_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_module", + "target": "backend_src_payment_zibal_ebank_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.module.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_module", + "target": "backend_src_prisma_prisma_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_module", + "target": "backend_src_prescriptions_prescriptions_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_module", + "target": "backend_src_prescriptions_prescriptions_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_module", + "target": "backend_src_prisma_prisma_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.module.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_module", + "target": "backend_src_common_services_sms_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prisma/prisma.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module", + "target": "backend_src_reviews_reviews_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module", + "target": "backend_src_seo_seo_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module", + "target": "backend_src_settings_settings_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module", + "target": "backend_src_smart_advisor_smart_advisor_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module", + "target": "backend_src_testimonials_testimonials_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module", + "target": "backend_src_tickets_tickets_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_module", + "target": "backend_src_wholesale_wholesale_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_module", + "target": "backend_src_settings_settings_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_module", + "target": "backend_src_settings_settings_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_module", + "target": "backend_src_smart_advisor_smart_advisor_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_module", + "target": "backend_src_smart_advisor_smart_advisor_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_module", + "target": "backend_src_testimonials_testimonials_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_module", + "target": "backend_src_testimonials_testimonials_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_module", + "target": "backend_src_wholesale_wholesale_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_module", + "target": "backend_src_wholesale_wholesale_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_16_deep_audit_summary", + "target": "docs_audit_16_deep_audit_summary_deep_audit_summary_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_16_deep_audit_summary_1_audit_overview", + "target": "docs_audit_16_deep_audit_summary_deep_audit_summary_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_16_deep_audit_summary_2_findings_metrics", + "target": "docs_audit_16_deep_audit_summary_by_severity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_16_deep_audit_summary_2_findings_metrics", + "target": "docs_audit_16_deep_audit_summary_by_confidence" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_16_deep_audit_summary_2_findings_metrics", + "target": "docs_audit_16_deep_audit_summary_by_domain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_16_deep_audit_summary_2_findings_metrics", + "target": "docs_audit_16_deep_audit_summary_deep_audit_summary_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", + "target": "docs_audit_16_deep_audit_summary_inspected_scopes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", + "target": "docs_audit_16_deep_audit_summary_executed_commands_results" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", + "target": "docs_audit_16_deep_audit_summary_blocked_commands_reasons" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_16_deep_audit_summary_3_inspected_scope_command_log", + "target": "docs_audit_16_deep_audit_summary_deep_audit_summary_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_16_deep_audit_summary_4_key_business_integration_questions", + "target": "docs_audit_16_deep_audit_summary_deep_audit_summary_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_16_deep_audit_summary_5_audit_limitations_integrity_confirmation", + "target": "docs_audit_16_deep_audit_summary_deep_audit_summary_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/16-deep-audit-summary.md", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_16_deep_audit_summary_6_exact_next_recommended_phase", + "target": "docs_audit_16_deep_audit_summary_deep_audit_summary_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_04_architect", + "target": "ai_agency_agents_04_architect_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_04_architect_1_stack_detection_brownfield", + "target": "ai_agency_agents_04_architect_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_04_architect_2_stack_selection_greenfield", + "target": "ai_agency_agents_04_architect_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_04_architect_3_single_non_negotiable_stack_choice", + "target": "ai_agency_agents_04_architect_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_04_architect_4_tech_stack_must_be_written_to_state_json", + "target": "ai_agency_agents_04_architect_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_04_architect_5_directory_layout", + "target": "ai_agency_agents_04_architect_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_04_architect_6_openapi_api_contract", + "target": "ai_agency_agents_04_architect_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_04_architect_7_forbidden_actions", + "target": "ai_agency_agents_04_architect_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_04_architect_expected_json_output_schema", + "target": "ai_agency_agents_04_architect_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_04_architect_operational_rules_boundaries", + "target": "ai_agency_agents_04_architect_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_04_architect_required_output_artifacts_what_files_to_write_update", + "target": "ai_agency_agents_04_architect_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/04_architect.md", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_04_architect_role_core_objective", + "target": "ai_agency_agents_04_architect_strict_input_specifications_what_files_to_read" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_jest", + "target": "backend_package" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_jest", + "target": "backend_package_jest_modulefileextensions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_jest", + "target": "backend_package_jest_rootdir" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_jest", + "target": "backend_package_jest_testregex" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_jest", + "target": "backend_package_jest_transform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_jest", + "target": "backend_package_jest_collectcoveragefrom" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_jest", + "target": "backend_package_jest_coveragedirectory" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_jest", + "target": "backend_package_jest_testenvironment" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L90", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_jest_collectcoveragefrom", + "target": "ref_t_j_s" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L80", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_jest_modulefileextensions", + "target": "backend_package_json_ref_ts" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L80", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_jest_modulefileextensions", + "target": "ref_js" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L80", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_jest_modulefileextensions", + "target": "ref_json" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_jest_transform", + "target": "backend_package_transform_t_j_s" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_2_change_log", + "target": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_2_change_log_10_task_verify_001", + "target": "docs_audit_phase3_2_change_log_comprehensive_change_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_2_change_log_1_task_sec_001", + "target": "docs_audit_phase3_2_change_log_comprehensive_change_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_2_change_log_2_task_sec_002", + "target": "docs_audit_phase3_2_change_log_comprehensive_change_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_2_change_log_3_task_sec_003", + "target": "docs_audit_phase3_2_change_log_comprehensive_change_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_2_change_log_4_task_fin_001", + "target": "docs_audit_phase3_2_change_log_comprehensive_change_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_2_change_log_5_task_build_001", + "target": "docs_audit_phase3_2_change_log_comprehensive_change_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_2_change_log_6_task_auth_001", + "target": "docs_audit_phase3_2_change_log_comprehensive_change_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_2_change_log_7_task_fe_001", + "target": "docs_audit_phase3_2_change_log_comprehensive_change_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_2_change_log_8_task_devops_001", + "target": "docs_audit_phase3_2_change_log_comprehensive_change_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_2_change_log_9_task_doc_001", + "target": "docs_audit_phase3_2_change_log_comprehensive_change_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.2-change-log.md", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_2_change_log_comprehensive_change_log", + "target": "docs_audit_phase3_2_change_log_phase_3_2_implementation_readiness_change_log" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_priceinput", + "target": "frontend_admin_panel_src_pages_coupons" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_priceinput", + "target": "frontend_admin_panel_src_pages_financialsettingspage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_priceinput", + "target": "frontend_admin_panel_src_pages_products" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_priceinput", + "target": "frontend_admin_panel_src_pages_shippingsettingspage" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_coupons", + "target": "frontend_admin_panel_src_routes_adminroutes_coupons" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_coupons", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_coupons", + "target": "frontend_admin_panel_src_components_ui_modal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_coupons", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_coupons", + "target": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_coupons", + "target": "frontend_admin_panel_src_components_ui_pagination" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_coupons", + "target": "frontend_admin_panel_src_components_ui_confirmmodal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Coupons.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_coupons", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_coupons", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_financialsettingspage", + "target": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_financialsettingspage", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_financialsettingspage", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_financialsettingspage", + "target": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_financialsettingspage", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_financialsettingspage", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_financialsettingspage", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_coupons", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_financialsettingspage", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_07_qa_engineer", + "target": "ai_agency_agents_07_qa_engineer_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_07_qa_engineer_1_detect_test_runner_from_tech_stack", + "target": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_07_qa_engineer_2_execution_output_capture_mandatory", + "target": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_07_qa_engineer_3_acceptance_criteria_verification", + "target": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_07_qa_engineer_4_failure_routing_protocol", + "target": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_07_qa_engineer_5_success_routing_protocol", + "target": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_07_qa_engineer_6_forbidden_actions", + "target": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_07_qa_engineer_expected_json_output_schema", + "target": "ai_agency_agents_07_qa_engineer_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_07_qa_engineer_operational_rules_boundaries", + "target": "ai_agency_agents_07_qa_engineer_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_07_qa_engineer_required_output_artifacts_what_files_to_write_update", + "target": "ai_agency_agents_07_qa_engineer_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/07_qa_engineer.md", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_07_qa_engineer_role_core_objective", + "target": "ai_agency_agents_07_qa_engineer_strict_input_specifications_what_files_to_read" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/page.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_page", + "target": "frontend_application_components_blogpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_page", + "target": "frontend_application_lib_seo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/page.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_page", + "target": "frontend_application_app_blog_page_revalidate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_layout", + "target": "frontend_application_lib_fonts_lalezar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_layout", + "target": "frontend_application_lib_fonts_vazirmatn" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_layout", + "target": "frontend_application_app_clientlayout" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_layout", + "target": "frontend_application_lib_seo" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_layout", + "target": "frontend_application_lib_fonts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/layout.tsx", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_layout", + "target": "frontend_application_lib_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/fonts.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_fonts", + "target": "frontend_application_lib_fonts_lalezar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/fonts.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_fonts", + "target": "frontend_application_lib_fonts_vazirmatn" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service", + "target": "backend_src_admin_blogs_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service", + "target": "backend_src_common_dto_pagination_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_service", + "target": "backend_src_common_revalidation_revalidation_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_service", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_service", + "target": "backend_src_admin_categories_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_service", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_spec", + "target": "backend_src_auth_auth_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_spec", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.spec.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_spec", + "target": "backend_src_redis_redis_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.spec.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service_spec", + "target": "backend_src_common_services_sms_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_service", + "target": "backend_src_b2b_b2b_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_b2b_b2b_service", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_service", + "target": "backend_src_banners_banners_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_service", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/metrics.controller.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_metrics_controller", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service", + "target": "backend_src_auth_auth_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/services/sms.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service", + "target": "backend_src_contact_contact_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service", + "target": "backend_src_orders_orders_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.spec.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service", + "target": "backend_src_orders_orders_service_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service", + "target": "backend_src_payment_payment_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service", + "target": "backend_src_prescriptions_prescriptions_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service", + "target": "backend_src_settings_settings_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_services_sms_service", + "target": "backend_src_wholesale_wholesale_service" + }, + { + "relation": "imports_from", + "_origin": "ast", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "context": "import", + "source_file": "backend/src/settings/settings.service.spec.ts", + "source_location": "L4", + "weight": 1.0, + "source": "backend_src_common_services_sms_service", + "target": "backend_src_settings_settings_service_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_service", + "target": "backend_src_contact_contact_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_contact_contact_service", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_service", + "target": "backend_src_faq_faq_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_faq_faq_service", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_service", + "target": "backend_src_ingredients_ingredients_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_ingredients_ingredients_service", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service", + "target": "backend_src_menu_menu_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_menu_menu_service", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_spec", + "target": "backend_src_orders_orders_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_service_spec", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service", + "target": "backend_src_payment_dto_admin_transaction_filter_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_service", + "target": "backend_src_payment_zibal_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal-ebank.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_zibal_ebank_service", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_spec", + "target": "backend_src_pets_pets_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_service_spec", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_service", + "target": "backend_src_prescriptions_prescriptions_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prescriptions_prescriptions_service", + "target": "backend_src_prisma_prisma_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_admin_admin_service_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_admin_media_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_admin_pets_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_admin_reports_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_admin_wiki_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_auth_auth_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_blogs_blogs_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_cms_cms_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_doctors_doctors_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_home_home_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_orders_orders_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_payment_zibal_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_pets_pets_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_products_products_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_products_products_service_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_reviews_reviews_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_seo_seo_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_settings_settings_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_settings_settings_service_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_smart_advisor_smart_advisor_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_testimonials_testimonials_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_tickets_tickets_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_users_users_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_users_users_service_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_videos_videos_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_wholesale_wholesale_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_prisma_prisma_service", + "target": "backend_src_wiki_wiki_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_default_ui_texts", + "target": "backend_src_settings_settings_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/default-ui-texts.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_default_ui_texts", + "target": "backend_src_settings_default_ui_texts_default_ui_texts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_default_ui_texts_default_ui_texts", + "target": "backend_src_settings_settings_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service", + "target": "backend_src_settings_settings_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service", + "target": "backend_src_settings_settings_controller_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service", + "target": "backend_src_settings_settings_service_spec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.service.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service", + "target": "backend_src_settings_settings_service_canonical_aliases" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_service_canonical_aliases", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_smart_advisor_smart_advisor_service", + "target": "backend_src_smart_advisor_smart_advisor_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_testimonials_testimonials_service", + "target": "backend_src_testimonials_testimonials_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service", + "target": "backend_src_auth_jwt_strategy" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service", + "target": "backend_src_users_users_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service", + "target": "backend_src_users_users_controller_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service", + "target": "backend_src_users_users_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service", + "target": "backend_src_users_dto_update_profile_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service", + "target": "backend_src_common_utils_phone_utils" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.service.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_service", + "target": "backend_src_users_users_service_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_service", + "target": "backend_src_wholesale_wholesale_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_service", + "target": "backend_src_wholesale_dto_wholesale_apply_dto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_26_phase2_integrity_repair_report", + "target": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_26_phase2_integrity_repair_report_1_1_authoritative_source_file_inventory_rebuilt", + "target": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_26_phase2_integrity_repair_report_1_2_raw_finding_dispositions_reconciled", + "target": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_26_phase2_integrity_repair_report_1_3_finding_identifier_normalization", + "target": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_26_phase2_integrity_repair_report_1_4_rejected_finding_cleanup", + "target": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_26_phase2_integrity_repair_report_1_summary_of_integrity_repairs_performed", + "target": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics", + "target": "docs_audit_26_phase2_integrity_repair_report_by_severity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics", + "target": "docs_audit_26_phase2_integrity_repair_report_by_confidence" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_26_phase2_integrity_repair_report_2_final_verified_finding_metrics", + "target": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_26_phase2_integrity_repair_report_3_reference_and_compiler_integrity_results", + "target": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/26-phase2-integrity-repair-report.md", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_26_phase2_integrity_repair_report_4_quality_gate_conclusion", + "target": "docs_audit_26_phase2_integrity_repair_report_phase_2_6_integrity_repair_audit_quality_gate_report" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal", + "target": "frontend_admin_panel_src_components_ui_mediaselector" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal", + "target": "frontend_admin_panel_src_pages_bannersmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal", + "target": "frontend_admin_panel_src_pages_blogs" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal", + "target": "frontend_admin_panel_src_pages_categories" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal", + "target": "frontend_admin_panel_src_pages_cms" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal", + "target": "frontend_admin_panel_src_pages_doctorsmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal", + "target": "frontend_admin_panel_src_pages_faqmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal", + "target": "frontend_admin_panel_src_pages_ingredientsmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal", + "target": "frontend_admin_panel_src_pages_menumanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal", + "target": "frontend_admin_panel_src_pages_pets" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal", + "target": "frontend_admin_panel_src_pages_products" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal", + "target": "frontend_admin_panel_src_pages_smartadvisormanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal", + "target": "frontend_admin_panel_src_pages_testimonialsmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal", + "target": "frontend_admin_panel_src_pages_videos" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal", + "target": "frontend_admin_panel_src_pages_wholesaleapplications" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_confirmmodal", + "target": "frontend_admin_panel_src_pages_wiki" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector", + "target": "frontend_admin_panel_src_services_api_base_domain" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector", + "target": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector", + "target": "frontend_admin_panel_src_components_ui_pagination" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/MediaSelector.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector", + "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector", + "target": "frontend_admin_panel_src_components_ui_richtexteditor" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector", + "target": "frontend_admin_panel_src_pages_bannersmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector", + "target": "frontend_admin_panel_src_pages_blogs" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector", + "target": "frontend_admin_panel_src_pages_categories" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector", + "target": "frontend_admin_panel_src_pages_doctorsmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector", + "target": "frontend_admin_panel_src_pages_ingredientsmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector", + "target": "frontend_admin_panel_src_pages_products" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector", + "target": "frontend_admin_panel_src_pages_seosettingspage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector", + "target": "frontend_admin_panel_src_pages_testimonialsmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_mediaselector", + "target": "frontend_admin_panel_src_pages_videos" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination", + "target": "frontend_admin_panel_src_pages_blogs" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination", + "target": "frontend_admin_panel_src_pages_categories" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination", + "target": "frontend_admin_panel_src_pages_pets" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination", + "target": "frontend_admin_panel_src_pages_products" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination", + "target": "frontend_admin_panel_src_pages_users" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_pagination", + "target": "frontend_admin_panel_src_pages_wiki" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_bannersmanager", + "target": "frontend_admin_panel_src_routes_adminroutes_bannersmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_bannersmanager", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_bannersmanager", + "target": "frontend_admin_panel_src_services_api_base_domain" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_bannersmanager", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_bannersmanager", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_bannersmanager", + "target": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_bannersmanager", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/BannersManager.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_bannersmanager", + "target": "frontend_admin_panel_src_components_ui_modal" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_bannersmanager", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_blogs", + "target": "frontend_admin_panel_src_routes_adminroutes_blogs" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_blogs", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_blogs", + "target": "frontend_admin_panel_src_services_api_base_domain" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_blogs", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_blogs", + "target": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_blogs", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_blogs", + "target": "frontend_admin_panel_src_components_ui_modal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Blogs.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_blogs", + "target": "frontend_admin_panel_src_components_ui_richtexteditor" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_blogs", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_categories", + "target": "frontend_admin_panel_src_routes_adminroutes_categories" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_categories", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_categories", + "target": "frontend_admin_panel_src_services_api_base_domain" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_categories", + "target": "frontend_admin_panel_src_components_ui_modal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_categories", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_categories", + "target": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Categories.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_categories", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_categories", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_ingredientsmanager", + "target": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_ingredientsmanager", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_ingredientsmanager", + "target": "frontend_admin_panel_src_services_api_base_domain" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_ingredientsmanager", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_ingredientsmanager", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_ingredientsmanager", + "target": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_ingredientsmanager", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/IngredientsManager.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_ingredientsmanager", + "target": "frontend_admin_panel_src_components_ui_modal" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_ingredientsmanager", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_pets", + "target": "frontend_admin_panel_src_routes_adminroutes_pets" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_pets", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_pets", + "target": "frontend_admin_panel_src_services_api_base_domain" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_pets", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_pets", + "target": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_pets", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Pets.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_pets", + "target": "frontend_admin_panel_src_components_ui_modal" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_pets", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_products", + "target": "frontend_admin_panel_src_routes_adminroutes_products" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_products", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_products", + "target": "frontend_admin_panel_src_services_api_base_domain" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_products", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_products", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Products.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_products", + "target": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_products", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_testimonialsmanager", + "target": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_testimonialsmanager", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_testimonialsmanager", + "target": "frontend_admin_panel_src_services_api_base_domain" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_testimonialsmanager", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_testimonialsmanager", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_testimonialsmanager", + "target": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_testimonialsmanager", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/TestimonialsManager.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_testimonialsmanager", + "target": "frontend_admin_panel_src_components_ui_modal" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_testimonialsmanager", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_videos", + "target": "frontend_admin_panel_src_routes_adminroutes_videos" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_videos", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_videos", + "target": "frontend_admin_panel_src_services_api_base_domain" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_videos", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_videos", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Videos.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_videos", + "target": "frontend_admin_panel_src_components_ui_modal" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_videos", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_wholesaleapplications", + "target": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_wholesaleapplications", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_wholesaleapplications", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/WholesaleApplications.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_wholesaleapplications", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_wholesaleapplications", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_bannersmanager", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_blogs", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_categories", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_ingredientsmanager", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_pets", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_products", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_testimonialsmanager", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_videos", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_wholesaleapplications", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_base_domain", + "target": "frontend_admin_panel_src_pages_doctorsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_base_domain", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_base_domain", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_base_domain", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_base_domain", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_01_auditor", + "target": "ai_agency_agents_01_auditor_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_01_auditor_1_detect_tech_stack_first_universal", + "target": "ai_agency_agents_01_auditor_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_01_auditor_2_explicit_scoring_methodology_universal", + "target": "ai_agency_agents_01_auditor_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_01_auditor_3_code_coverage_ratio_rule", + "target": "ai_agency_agents_01_auditor_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_01_auditor_4_deep_directory_scanning", + "target": "ai_agency_agents_01_auditor_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_01_auditor_5_forbidden_actions", + "target": "ai_agency_agents_01_auditor_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_01_auditor_expected_json_output_schema", + "target": "ai_agency_agents_01_auditor_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_01_auditor_operational_rules_boundaries", + "target": "ai_agency_agents_01_auditor_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_01_auditor_required_output_artifacts_what_files_to_write_update", + "target": "ai_agency_agents_01_auditor_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/01_auditor.md", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_01_auditor_role_core_objective", + "target": "ai_agency_agents_01_auditor_strict_input_specifications_what_files_to_read" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_10_tech_writer", + "target": "ai_agency_agents_10_tech_writer_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_10_tech_writer_1_mark_active_task_as_complete", + "target": "ai_agency_agents_10_tech_writer_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_10_tech_writer_2_documentation_updates", + "target": "ai_agency_agents_10_tech_writer_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_10_tech_writer_3_dynamic_routing_protocol_critical", + "target": "ai_agency_agents_10_tech_writer_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_10_tech_writer_4_backlog_insufficiency_check", + "target": "ai_agency_agents_10_tech_writer_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_10_tech_writer_5_forbidden_actions", + "target": "ai_agency_agents_10_tech_writer_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_10_tech_writer_expected_json_output_schema", + "target": "ai_agency_agents_10_tech_writer_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_10_tech_writer_operational_rules_boundaries", + "target": "ai_agency_agents_10_tech_writer_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_10_tech_writer_required_output_artifacts_what_files_to_write_update", + "target": "ai_agency_agents_10_tech_writer_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/10_tech_writer.md", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_10_tech_writer_role_core_objective", + "target": "ai_agency_agents_10_tech_writer_strict_input_specifications_what_files_to_read" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_11_deploy", + "target": "ai_agency_agents_11_deploy_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_11_deploy_1_pre_deployment_checklist", + "target": "ai_agency_agents_11_deploy_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_11_deploy_2_build_verification", + "target": "ai_agency_agents_11_deploy_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_11_deploy_3_deployment_strategy_based_on_target", + "target": "ai_agency_agents_11_deploy_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_11_deploy_4_post_deployment_health_check", + "target": "ai_agency_agents_11_deploy_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_11_deploy_5_forbidden_actions", + "target": "ai_agency_agents_11_deploy_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_11_deploy_expected_json_output_schema", + "target": "ai_agency_agents_11_deploy_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_11_deploy_operational_rules_boundaries", + "target": "ai_agency_agents_11_deploy_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_11_deploy_required_output_artifacts_what_files_to_write_update", + "target": "ai_agency_agents_11_deploy_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/11_deploy.md", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_11_deploy_role_core_objective", + "target": "ai_agency_agents_11_deploy_strict_input_specifications_what_files_to_read" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_create_review_dto", + "target": "backend_src_reviews_reviews_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_create_review_dto", + "target": "backend_src_reviews_reviews_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_update_review_dto", + "target": "backend_src_reviews_reviews_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_dto_update_review_dto", + "target": "backend_src_reviews_reviews_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller", + "target": "backend_src_reviews_reviews_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller", + "target": "backend_src_auth_jwt_auth_guard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller", + "target": "backend_src_common_guards_roles_guard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.controller.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller", + "target": "backend_src_common_decorators_roles_decorator" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_controller", + "target": "backend_src_reviews_reviews_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_module", + "target": "backend_src_reviews_reviews_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/reviews/reviews.service.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_reviews_reviews_service", + "target": "backend_src_common_revalidation_revalidation_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.controller.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_controller", + "target": "backend_src_app_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.controller.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_controller", + "target": "backend_src_app_controller_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/app.controller.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_app_controller_spec", + "target": "backend_src_app_service" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L27", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_types_react_dom", + "target": "frontend_application_package_json_types_react_dom" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_types_react_dom", + "target": "frontend_application_package_devdependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_0_0", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_1", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_101", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_32_102", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_000", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_001", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_002", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_33_003", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_old_vazir_changelog", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_changelog_vazirmatn_changelog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_arch_linux_aur_https_aur_archlinux_org_packages_vazirmatn_fonts", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_authors", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_build", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_cdn", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_download", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_npm_https_www_npmjs_com_package_vazirmatn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_install", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_license", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_thank_you", + "target": "frontend_admin_panel_public_fonts_vazirmatn_v33_003_readme_vazirmatn_font_\u0641\u0648\u0646\u062a_\u0648\u0632\u06cc\u0631\u0645\u062a\u0646" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_02_ceo", + "target": "ai_agency_agents_02_ceo_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_02_ceo_1_mode_direction_decision", + "target": "ai_agency_agents_02_ceo_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_02_ceo_2_brownfield_strategic_evaluation", + "target": "ai_agency_agents_02_ceo_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_02_ceo_3_risk_assessment", + "target": "ai_agency_agents_02_ceo_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_02_ceo_4_forbidden_actions", + "target": "ai_agency_agents_02_ceo_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_02_ceo_expected_json_output_schema", + "target": "ai_agency_agents_02_ceo_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_02_ceo_operational_rules_boundaries", + "target": "ai_agency_agents_02_ceo_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_02_ceo_required_output_artifacts_what_files_to_write_update", + "target": "ai_agency_agents_02_ceo_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/02_ceo.md", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_02_ceo_role_core_objective", + "target": "ai_agency_agents_02_ceo_strict_input_specifications_what_files_to_read" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig", + "target": "backend_prisma_tsconfig_compileroptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig", + "target": "backend_prisma_tsconfig_include" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig_compileroptions", + "target": "backend_prisma_tsconfig_compileroptions_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig_compileroptions", + "target": "backend_prisma_tsconfig_compileroptions_moduleresolution" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig_compileroptions", + "target": "backend_prisma_tsconfig_compileroptions_esmoduleinterop" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig_compileroptions", + "target": "backend_prisma_tsconfig_compileroptions_skiplibcheck" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig_compileroptions", + "target": "backend_prisma_tsconfig_compileroptions_types" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig_compileroptions_types", + "target": "backend_prisma_tsconfig_json_ref_node" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.json", + "source_location": "L9", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig_include", + "target": "backend_prisma_tsconfig_json_ref_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "playwright.config.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "playwright_config", + "target": "ref_playwright_test" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/admin/admin-b2b-submissions.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_admin_admin_b2b_submissions_spec", + "target": "tests_fixtures_index_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/admin/admin-b2b-submissions.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_admin_admin_b2b_submissions_spec", + "target": "tests_fixtures_index" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/admin/admin-blogs-crud.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_admin_admin_blogs_crud_spec", + "target": "tests_fixtures_index_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/admin/admin-blogs-crud.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_admin_admin_blogs_crud_spec", + "target": "tests_fixtures_index" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/admin/admin-crud.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_admin_admin_crud_spec", + "target": "tests_fixtures_index_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/admin/admin-crud.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_admin_admin_crud_spec", + "target": "tests_fixtures_index" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/admin/admin-orders-flow.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_admin_admin_orders_flow_spec", + "target": "tests_fixtures_index_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/admin/admin-orders-flow.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_admin_admin_orders_flow_spec", + "target": "tests_fixtures_index" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/storefront/b2b-flow.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_storefront_b2b_flow_spec", + "target": "tests_fixtures_index_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/storefront/b2b-flow.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_storefront_b2b_flow_spec", + "target": "tests_fixtures_index" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/storefront/blog-wiki.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_storefront_blog_wiki_spec", + "target": "tests_fixtures_index_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/storefront/blog-wiki.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_storefront_blog_wiki_spec", + "target": "tests_fixtures_index" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/storefront/cart-operations.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_storefront_cart_operations_spec", + "target": "tests_fixtures_index_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/storefront/cart-operations.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_storefront_cart_operations_spec", + "target": "tests_fixtures_index" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/storefront/checkout-flow.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_storefront_checkout_flow_spec", + "target": "tests_fixtures_index_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/storefront/checkout-flow.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_storefront_checkout_flow_spec", + "target": "tests_fixtures_index" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/storefront/contact.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_storefront_contact_spec", + "target": "tests_fixtures_index_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/storefront/contact.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_storefront_contact_spec", + "target": "tests_fixtures_index" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/storefront/order-tracking.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_storefront_order_tracking_spec", + "target": "tests_fixtures_index_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/storefront/order-tracking.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_storefront_order_tracking_spec", + "target": "tests_fixtures_index" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/storefront/shop-filter-search.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_storefront_shop_filter_search_spec", + "target": "tests_fixtures_index_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/e2e/storefront/shop-filter-search.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_e2e_storefront_shop_filter_search_spec", + "target": "tests_fixtures_index" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/fixtures/admin-auth.setup.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_fixtures_admin_auth_setup", + "target": "ref_playwright_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/fixtures/admin-auth.setup.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_fixtures_admin_auth_setup", + "target": "tests_fixtures_admin_auth_setup_authfile" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "tests/fixtures/index.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_fixtures_index", + "target": "ref_playwright_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tests/fixtures/index.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tests_fixtures_index", + "target": "tests_fixtures_index_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig", + "target": "tsconfig_include" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig", + "target": "tsconfig_exclude" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig", + "target": "tsconfig_compileroptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_esmoduleinterop" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_types" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_target" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_moduleresolution" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_lib" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_skiplibcheck" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_strict" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_compileroptions", + "target": "tsconfig_compileroptions_noemit" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_compileroptions_lib", + "target": "tsconfig_json_ref_dom" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_compileroptions_lib", + "target": "tsconfig_json_ref_dom_iterable" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_compileroptions_lib", + "target": "tsconfig_json_ref_esnext" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L11", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_compileroptions_types", + "target": "ref_playwright_test" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L11", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_compileroptions_types", + "target": "tsconfig_json_ref_node" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L17", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_exclude", + "target": "ref_backend" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L17", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_exclude", + "target": "ref_frontend" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L17", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_exclude", + "target": "tsconfig_json_ref_node_modules" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_include", + "target": "ref_playwright_config_ts" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "tsconfig_include", + "target": "ref_tests_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig_seed", + "target": "backend_prisma_tsconfig_seed_compileroptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig_seed", + "target": "backend_prisma_tsconfig_seed_include" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig_seed_compileroptions", + "target": "backend_prisma_tsconfig_seed_compileroptions_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig_seed_compileroptions", + "target": "backend_prisma_tsconfig_seed_compileroptions_moduleresolution" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig_seed_compileroptions", + "target": "backend_prisma_tsconfig_seed_compileroptions_esmoduleinterop" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig_seed_compileroptions", + "target": "backend_prisma_tsconfig_seed_compileroptions_skiplibcheck" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig_seed_compileroptions", + "target": "backend_prisma_tsconfig_seed_compileroptions_types" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig_seed_compileroptions_types", + "target": "backend_prisma_tsconfig_seed_json_ref_node" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/tsconfig.seed.json", + "source_location": "L9", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_tsconfig_seed_include", + "target": "backend_prisma_tsconfig_seed_json_ref_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/README.md", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_readme", + "target": "backend_readme_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/README.md", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_readme", + "target": "backend_readme_project_setup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/README.md", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_readme", + "target": "backend_readme_compile_and_run_the_project" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/README.md", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_readme", + "target": "backend_readme_run_tests" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/README.md", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_readme", + "target": "backend_readme_deployment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/README.md", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_readme", + "target": "backend_readme_resources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/README.md", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_readme", + "target": "backend_readme_support" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/README.md", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_readme", + "target": "backend_readme_stay_in_touch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/README.md", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_readme", + "target": "backend_readme_license" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_videos_page", + "target": "frontend_application_components_videospage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_videos_page", + "target": "frontend_application_lib_seo" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/videos/page.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_videos_page", + "target": "frontend_application_lib_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_00_repository_map", + "target": "docs_audit_00_repository_map_repository_map" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_00_repository_map_1_active_customer_storefront_react_19_vite_application", + "target": "docs_audit_00_repository_map_active_applications_non_auditable_scopes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_00_repository_map_2_active_backend_service_nestjs_application", + "target": "docs_audit_00_repository_map_active_applications_non_auditable_scopes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_00_repository_map_3_excluded_placeholder_non_auditable_directories", + "target": "docs_audit_00_repository_map_active_applications_non_auditable_scopes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_00_repository_map_active_applications_non_auditable_scopes", + "target": "docs_audit_00_repository_map_repository_map" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_00_repository_map_documentation_governance", + "target": "docs_audit_00_repository_map_repository_map" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_00_repository_map_important_configuration_infrastructure_files", + "target": "docs_audit_00_repository_map_repository_map" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_00_repository_map_mandatory_global_audit_exclusions", + "target": "docs_audit_00_repository_map_repository_map" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/00-repository-map.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_00_repository_map_repository_map", + "target": "docs_audit_00_repository_map_repository_structure_overview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_validate_integrity", + "target": "docs_audit_validate_integrity_dispsum" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_validate_integrity", + "target": "docs_audit_validate_integrity_invalidnewids" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_validate_integrity", + "target": "docs_audit_validate_integrity_manifest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_validate_integrity", + "target": "docs_audit_validate_integrity_uninspected" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_validate_integrity", + "target": "docs_audit_validate_integrity_trackedfiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_validate_integrity", + "target": "docs_audit_validate_integrity_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_validate_integrity", + "target": "docs_audit_validate_integrity_verifiedindex" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_validate_integrity", + "target": "docs_audit_validate_integrity_errors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/validate_integrity.js", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_validate_integrity", + "target": "docs_audit_validate_integrity_warnings" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package", + "target": "frontend_admin_panel_package_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package", + "target": "frontend_admin_panel_package_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package", + "target": "frontend_admin_panel_package_devdependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package", + "target": "frontend_admin_panel_package_private" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package", + "target": "frontend_admin_panel_package_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package", + "target": "frontend_admin_panel_package_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package", + "target": "frontend_admin_panel_package_scripts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_scripts", + "target": "frontend_admin_panel_package_scripts_preview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_scripts", + "target": "frontend_admin_panel_package_scripts_dev" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_scripts", + "target": "frontend_admin_panel_package_scripts_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_scripts", + "target": "frontend_admin_panel_package_scripts_lint" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme", + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_arch_linux", + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_contributors", + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_install", + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_license", + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_to_do_variable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_sahel_font", + "target": "frontend_admin_panel_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller", + "target": "backend_src_admin_dto_product_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller", + "target": "backend_src_admin_dto_admin_query_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller", + "target": "backend_src_auth_jwt_auth_guard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller", + "target": "backend_src_admin_dto_user_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller", + "target": "backend_src_admin_admin_controller_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.controller.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_controller_spec", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_product_dto", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_user_dto", + "target": "backend_src_admin_admin_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test-coverage-map.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "test_coverage_map", + "target": "test_coverage_map_\u0646\u0642\u0634\u0647_\u062c\u0627\u0645\u0639_\u067e\u0648\u0634\u0634_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0633\u0631\u062a\u0627\u0633\u0631\u06cc_e2e_test_coverage_map_\u067e\u0631\u0648\u0698\u0647_canina" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test-coverage-map.md", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "test_coverage_map_\u0646\u0642\u0634\u0647_\u062c\u0627\u0645\u0639_\u067e\u0648\u0634\u0634_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0633\u0631\u062a\u0627\u0633\u0631\u06cc_e2e_test_coverage_map_\u067e\u0631\u0648\u0698\u0647_canina", + "target": "test_coverage_map_\u06f2_\u0645\u0627\u062a\u0631\u06cc\u0633_\u062c\u0631\u06cc\u0627\u0646_\u0647\u0627_\u0648_\u0642\u0627\u0628\u0644\u06cc\u062a_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631\u0645\u062d\u0648\u0631_feature_flow_matrix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test-coverage-map.md", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "test_coverage_map_\u0646\u0642\u0634\u0647_\u062c\u0627\u0645\u0639_\u067e\u0648\u0634\u0634_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0633\u0631\u062a\u0627\u0633\u0631\u06cc_e2e_test_coverage_map_\u067e\u0631\u0648\u0698\u0647_canina", + "target": "test_coverage_map_\u06f3_\u0628\u0631\u0646\u0627\u0645\u0647_\u062a\u06a9\u0645\u06cc\u0644_\u0648_\u062a\u0648\u0633\u0639\u0647_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0645\u0641\u0642\u0648\u062f_action_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "test-coverage-map.md", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "test_coverage_map_\u0646\u0642\u0634\u0647_\u062c\u0627\u0645\u0639_\u067e\u0648\u0634\u0634_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0633\u0631\u062a\u0627\u0633\u0631\u06cc_e2e_test_coverage_map_\u067e\u0631\u0648\u0698\u0647_canina", + "target": "test_coverage_map_\u06f1_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0648_\u0646\u0642\u0634_\u0647\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631\u06cc_user_roles" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/main.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_env_validation", + "target": "backend_src_main" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/filters/http-exception.filter.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_http_exception_filter", + "target": "backend_src_common_schemas_error_response_schema" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/main.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_http_exception_filter", + "target": "backend_src_main" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_http_exception_filter", + "target": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_http_exception_filter", + "target": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/main.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_prisma_exception_filter", + "target": "backend_src_main" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_prisma_exception_filter", + "target": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_filters_prisma_exception_filter", + "target": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/interceptors/decimal.interceptor.spec.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_interceptors_decimal_interceptor", + "target": "backend_src_common_interceptors_decimal_interceptor_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/main.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_interceptors_decimal_interceptor", + "target": "backend_src_main" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_interceptors_decimal_interceptor", + "target": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_interceptors_decimal_interceptor", + "target": "backend_test_app_audit_verification_e2e_spec_ts_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_test_app_audit_verification_e2e_spec_app_module_1", + "target": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_test_app_audit_verification_e2e_spec_client_1", + "target": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_test_app_audit_verification_e2e_spec_common_1", + "target": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_test_app_audit_verification_e2e_spec_decimal_interceptor_1", + "target": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_test_app_audit_verification_e2e_spec_fs", + "target": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_test_app_audit_verification_e2e_spec_http_exception_filter_1", + "target": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", + "target": "backend_test_app_audit_verification_e2e_spec_testing_1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", + "target": "backend_test_app_audit_verification_e2e_spec_supertest_1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", + "target": "backend_test_app_audit_verification_e2e_spec_jwt_1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", + "target": "backend_test_app_audit_verification_e2e_spec_prisma_exception_filter_1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/test/app-audit-verification.e2e-spec.js", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_test_app_audit_verification_e2e_spec_js_backend_test_app_audit_verification_e2e_spec", + "target": "backend_test_app_audit_verification_e2e_spec_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme", + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_arch_linux", + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L127", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_contributors", + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_install", + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_known_problems_for_variable_version", + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_license", + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_to_do_variable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/public/fonts/sahel-font-v3.4.0/README.md", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_sahel_font", + "target": "frontend_application_public_fonts_sahel_font_v3_4_0_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u0627\u0632_\u0646\u0633\u062e\u0647_\u0645\u062a\u063a\u06cc\u0631_variable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_00_intake", + "target": "ai_agency_agents_00_intake_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_00_intake_1_ask_don_t_assume", + "target": "ai_agency_agents_00_intake_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_00_intake_2_forbidden_actions", + "target": "ai_agency_agents_00_intake_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_00_intake_brownfield_detection", + "target": "ai_agency_agents_00_intake_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_00_intake_expected_json_output_schema", + "target": "ai_agency_agents_00_intake_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_00_intake_operational_rules_boundaries", + "target": "ai_agency_agents_00_intake_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_00_intake_required_output_artifacts_what_files_to_write_update", + "target": "ai_agency_agents_00_intake_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/00_intake.md", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_00_intake_role_core_objective", + "target": "ai_agency_agents_00_intake_strict_input_specifications_what_files_to_read" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package", + "target": "backend_package_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package", + "target": "backend_package_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package", + "target": "backend_package_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package", + "target": "backend_package_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package", + "target": "backend_package_devdependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package", + "target": "backend_package_author" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package", + "target": "backend_package_private" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package", + "target": "backend_package_license" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package", + "target": "backend_package_scripts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package", + "target": "backend_package_prisma" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_prisma", + "target": "backend_package_prisma_seed" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/test/app.e2e-spec.js", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_test_app_e2e_spec_app_module_1", + "target": "backend_test_app_e2e_spec_js_backend_test_app_e2e_spec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/test/app.e2e-spec.js", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_test_app_e2e_spec_js_backend_test_app_e2e_spec", + "target": "backend_test_app_e2e_spec_testing_1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/test/app.e2e-spec.js", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_test_app_e2e_spec_js_backend_test_app_e2e_spec", + "target": "backend_test_app_e2e_spec_supertest_1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_exports", + "target": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", + "target": "claude_skills_graphify_references_exports_step_7_neo4j_export_only_if_neo4j_or_neo4j_push_flag" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", + "target": "claude_skills_graphify_references_exports_step_7a_falkordb_export_only_if_falkordb_or_falkordb_push_flag" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", + "target": "claude_skills_graphify_references_exports_step_7b_svg_export_only_if_svg_flag" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", + "target": "claude_skills_graphify_references_exports_step_6b_wiki_only_if_wiki_flag" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", + "target": "claude_skills_graphify_references_exports_step_7c_graphml_export_only_if_graphml_flag" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", + "target": "claude_skills_graphify_references_exports_step_7d_mcp_server_only_if_mcp_flag" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/exports.md", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_exports_graphify_reference_extra_exports_and_benchmark", + "target": "claude_skills_graphify_references_exports_step_8_token_reduction_benchmark_only_if_total_words_5000" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_21_phase2_quality_gate_summary", + "target": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_21_phase2_quality_gate_summary_1_executive_summary", + "target": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", + "target": "docs_audit_21_phase2_quality_gate_summary_by_severity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", + "target": "docs_audit_21_phase2_quality_gate_summary_by_confidence" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_21_phase2_quality_gate_summary_2_final_verified_finding_breakdown", + "target": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_21_phase2_quality_gate_summary_3_source_coverage_diagnostic_metrics", + "target": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_21_phase2_quality_gate_summary_4_integrity_check_quality_gate_status", + "target": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/21-phase2-quality-gate-summary.md", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_21_phase2_quality_gate_summary_5_exact_next_recommended_phase", + "target": "docs_audit_21_phase2_quality_gate_summary_phase_2_final_quality_gate_summary_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_change_log", + "target": "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_change_log_1_task_auth_001", + "target": "docs_audit_phase3_1_change_log_task_modifications_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_change_log_2_task_fin_001", + "target": "docs_audit_phase3_1_change_log_task_modifications_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_change_log_3_decision_002", + "target": "docs_audit_phase3_1_change_log_task_modifications_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_change_log_4_task_verify_001", + "target": "docs_audit_phase3_1_change_log_task_modifications_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_change_log_5_task_sec_001_task_sec_002", + "target": "docs_audit_phase3_1_change_log_task_modifications_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_change_log_6_task_build_001_execution_waves", + "target": "docs_audit_phase3_1_change_log_task_modifications_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-change-log.md", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_change_log_phase_3_1_master_task_backlog_change_log", + "target": "docs_audit_phase3_1_change_log_task_modifications_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme", + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_arch_linux", + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_bower", + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_npm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_yarn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_install", + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0646\u0645\u0648\u0646\u0647_\u0645\u062a\u0646_sample" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_shabnam_font", + "target": "frontend_admin_panel_public_fonts_shabnam_font_v5_0_1_readme_\u0637\u0631\u06cc\u0642\u0647_\u0627\u0633\u062a\u0641\u0627\u062f\u0647_\u062f\u0631_\u0635\u0641\u062d\u0627\u062a_\u0648\u0628" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/catalog/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_catalog_page", + "target": "frontend_application_app_catalog_catalogclient" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/catalog/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_catalog_page", + "target": "frontend_application_lib_seo" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_lib_store_uistore_useuistore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_lib_store_settingsstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_lib_store_uistore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_components_maintenancepage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_lib_types" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_components_header" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_components_footer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_components_networkbanner" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_app_clientlayout_cartdrawer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_app_clientlayout_loginmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_app_clientlayout_authmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_app_clientlayout_b2bportal" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_components_authmodal" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_components_b2bportal" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_components_cartdrawer" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_components_loginmodal" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BLandingClient.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_b2blandingclient", + "target": "frontend_application_lib_services_api_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BLandingClient.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_b2blandingclient", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/b2b/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_b2blandingclient", + "target": "frontend_application_app_b2b_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BLandingClient.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_b2blandingclient", + "target": "frontend_application_lib_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BLandingClient.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_b2blandingclient", + "target": "frontend_application_lib_store_settingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BrandLogo.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_brandlogo", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BrandLogo.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_brandlogo", + "target": "frontend_application_lib_store_settingsstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Footer.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_brandlogo", + "target": "frontend_application_components_footer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_brandlogo", + "target": "frontend_application_components_header" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/MaintenancePage.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_brandlogo", + "target": "frontend_application_components_maintenancepage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/EnamadBadge.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_enamadbadge", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_enamadbadge", + "target": "frontend_application_app_trust_seals_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/EnamadBadge.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_enamadbadge", + "target": "frontend_application_lib_store_settingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Footer.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_footer", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Footer.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_footer", + "target": "frontend_application_lib_store_settingsstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Footer.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_footer", + "target": "frontend_application_lib_types" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Footer.test.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_footer", + "target": "frontend_application_components_tests_footer_test" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header", + "target": "frontend_application_lib_store_settingsstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header", + "target": "frontend_application_components_authmodal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header", + "target": "frontend_application_components_prescriptionuploadmodal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header", + "target": "frontend_application_components_tickerbanner" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header", + "target": "frontend_application_lib_utils" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header", + "target": "frontend_application_lib_types" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Header.test.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header", + "target": "frontend_application_components_tests_header_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Header.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_header", + "target": "frontend_application_components_header_menu_icons" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/MaintenancePage.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_maintenancepage", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/MaintenancePage.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_maintenancepage", + "target": "frontend_application_lib_store_settingsstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/NetworkBanner.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_networkbanner", + "target": "frontend_application_lib_hooks_usenetworkstatus" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_lib_data_products_products" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_lib_store_uistore_useuistore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_lib_services_api_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_components_petprofile" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_lib_utils" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_lib_data_products" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_lib_store_uistore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_lib_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_lib_store_settingsstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_components_smartadvisor_current_symptoms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SmartAdvisor.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_smartadvisor", + "target": "frontend_application_components_smartadvisor_medical_histories" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TickerBanner.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tickerbanner", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TickerBanner.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tickerbanner", + "target": "frontend_application_lib_store_settingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_lib_services_api_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_authmodal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_b2bportal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_blogpreviewsection" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_cartdrawer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_checkoutpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FAQSection.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_faqsection" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_featuredproducts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_hero" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_orderdetailsmodal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_testimonialssection" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Hero.test.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_tests_hero_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_tests_tooltip_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Tooltip.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_tooltip" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_topupmodal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_userdashboard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_components_vetgallery" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_lib_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_lib_store_tests_settingsstore_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/settingsStore.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore", + "target": "frontend_application_lib_store_settingsstore_usesettingsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_authmodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_b2bportal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_blogpreviewsection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_cartdrawer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_checkoutpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FAQSection.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_faqsection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_featuredproducts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_hero" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_orderdetailsmodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_testimonialssection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Hero.test.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_tests_hero_test" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_tests_tooltip_test" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Tooltip.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_tooltip" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_topupmodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_userdashboard" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_components_vetgallery" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_settingsstore_usesettingsstore", + "target": "frontend_application_lib_store_tests_settingsstore_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/uiStore.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_uistore", + "target": "frontend_application_lib_store_uistore_useuistore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package", + "target": "frontend_application_package_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package", + "target": "frontend_application_package_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package", + "target": "frontend_application_package_devdependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package", + "target": "frontend_application_package_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package", + "target": "frontend_application_package_private" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package", + "target": "frontend_application_package_scripts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_scripts", + "target": "frontend_application_package_scripts_dev" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_scripts", + "target": "frontend_application_package_scripts_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_scripts", + "target": "frontend_application_package_scripts_start" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_scripts", + "target": "frontend_application_package_scripts_lint" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/start-dev.js", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "scripts_start_dev", + "target": "scripts_start_dev_spawn_execsync" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/start-dev.js", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "scripts_start_dev", + "target": "scripts_start_dev_http" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/start-dev.js", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "scripts_start_dev", + "target": "scripts_start_dev_fs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/start-dev.js", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "scripts_start_dev", + "target": "scripts_start_dev_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/start-dev.js", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "scripts_start_dev", + "target": "scripts_start_dev_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/start-dev.js", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "scripts_start_dev", + "target": "scripts_start_dev_distmainpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_scripts_generate_openapi_app_module_1", + "target": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_scripts_generate_openapi_core_1", + "target": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_scripts_generate_openapi_fs", + "target": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", + "target": "backend_scripts_generate_openapi_swagger_1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", + "target": "backend_scripts_generate_openapi_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-openapi.js", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_scripts_generate_openapi_js_backend_scripts_generate_openapi", + "target": "backend_scripts_generate_openapi_yaml" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L24", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_testing_library_react", + "target": "testing_library_react" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_testing_library_react", + "target": "frontend_application_package_devdependencies" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L60", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_types_node", + "target": "backend_package_json_types_node" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_types_node", + "target": "backend_package_devdependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_01_system_discovery", + "target": "docs_audit_01_system_discovery_system_discovery" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_01_system_discovery_active_core_applications", + "target": "docs_audit_01_system_discovery_current_architecture" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_01_system_discovery_current_architecture", + "target": "docs_audit_01_system_discovery_excluded_non_auditable_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_01_system_discovery_current_architecture", + "target": "docs_audit_01_system_discovery_system_discovery" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_01_system_discovery_evidence_based_status_matrix", + "target": "docs_audit_01_system_discovery_system_discovery" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_01_system_discovery_major_business_domains_discovered", + "target": "docs_audit_01_system_discovery_system_discovery" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/01-system-discovery.md", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_01_system_discovery_system_discovery", + "target": "docs_audit_01_system_discovery_technical_architecture_summary" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L76", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_typescript", + "target": "backend_package_json_typescript" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_typescript", + "target": "backend_package_devdependencies" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smssettingspage", + "target": "frontend_admin_panel_src_routes_adminroutes_smssettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smssettingspage", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smssettingspage", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smssettingspage", + "target": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmsSettingsPage.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smssettingspage", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smssettingspage", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_smssettingspage", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Layout.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_layout", + "target": "frontend_admin_panel_src_components_sidebar" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Layout.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_layout", + "target": "frontend_admin_panel_src_components_topbar" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_layout", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_protectedroute", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_protectedroute", + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_protectedroute", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_protectedroute", + "target": "frontend_admin_panel_src_store_adminauthstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ProtectedRoute.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_protectedroute", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_protectedroute", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_sidebar", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Sidebar.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_sidebar", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_topbar", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_topbar", + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_topbar", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_topbar", + "target": "frontend_admin_panel_src_store_adminauthstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/Topbar.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_topbar", + "target": "frontend_admin_panel_src_components_topbar_searchable_pages" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_b2bmanager", + "target": "frontend_admin_panel_src_routes_adminroutes_b2bmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_b2bmanager", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_b2bmanager", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_b2bmanager", + "target": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_b2bmanager", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_b2bmanager", + "target": "frontend_admin_panel_src_components_ui_modal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/B2BManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_b2bmanager", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_b2bmanager", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Login.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_login", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Login.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_login", + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Login.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_login", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Login.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_login", + "target": "frontend_admin_panel_src_store_adminauthstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Login.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_login", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_login", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_seosettingspage", + "target": "frontend_admin_panel_src_routes_adminroutes_seosettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_seosettingspage", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_seosettingspage", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_seosettingspage", + "target": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_seosettingspage", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SeoSettingsPage.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_seosettingspage", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_seosettingspage", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smartadvisormanager", + "target": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smartadvisormanager", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smartadvisormanager", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smartadvisormanager", + "target": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smartadvisormanager", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smartadvisormanager", + "target": "frontend_admin_panel_src_components_ui_modal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smartadvisormanager", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_smartadvisormanager", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_systemsettingspage", + "target": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_systemsettingspage", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_systemsettingspage", + "target": "frontend_admin_panel_src_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_systemsettingspage", + "target": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_systemsettingspage", + "target": "frontend_admin_panel_src_components_ui_button" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SystemSettingsPage.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_systemsettingspage", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_systemsettingspage", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_b2bmanager", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_seosettingspage", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_smartadvisormanager", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_systemsettingspage", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_cms" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_contactsubmissions" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_dashboard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_doctorsmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_faqmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_menumanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_monitoringpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_paymentgatewayspage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_reports" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_reviews" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Settings.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_settings" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_shippingsettingspage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_sslsettingspage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_tickets" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_users" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_wiki" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_pages_zibalportalpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_store_adminauthstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_services_api_api" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/services/api.ts", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api", + "target": "frontend_admin_panel_src_services_api_failedqueue" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_cms" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_contactsubmissions" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Dashboard.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_dashboard" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_doctorsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_faqmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_menumanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_monitoringpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_paymentgatewayspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_reports" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_reviews" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Settings.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_settings" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_shippingsettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_sslsettingspage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_tickets" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_users" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_wiki" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_services_api_api", + "target": "frontend_admin_panel_src_pages_zibalportalpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_store_adminauthstore", + "target": "frontend_admin_panel_src_types_admin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/store/adminAuthStore.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_store_adminauthstore", + "target": "frontend_admin_panel_src_store_adminauthstore_useadminauthstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_types_admin", + "target": "frontend_admin_panel_src_pages_users" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_prd", + "target": "ai_agency_specs_prd_product_requirement_document_prd" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_prd_1_executive_vision", + "target": "ai_agency_specs_prd_product_requirement_document_prd" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_prd_2_target_audience", + "target": "ai_agency_specs_prd_product_requirement_document_prd" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_prd_3_functional_requirements", + "target": "ai_agency_specs_prd_product_requirement_document_prd" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_prd_4_non_functional_requirements_performance_security", + "target": "ai_agency_specs_prd_product_requirement_document_prd" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/prd.md", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_prd_5_epic_feature_breakdown", + "target": "ai_agency_specs_prd_product_requirement_document_prd" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service", + "target": "backend_src_common_utils_phone_utils" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service", + "target": "backend_src_common_revalidation_revalidation_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service", + "target": "backend_src_redis_redis_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service", + "target": "backend_src_admin_admin_service_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.service.spec.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_service_spec", + "target": "backend_src_redis_redis_service" + }, + { + "relation": "imports_from", + "_origin": "ast", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "context": "import", + "source_file": "backend/src/admin/admin.service.spec.ts", + "source_location": "L5", + "weight": 1.0, + "source": "backend_src_admin_admin_service_spec", + "target": "backend_src_common_revalidation_revalidation_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service", + "target": "backend_src_auth_auth_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service", + "target": "backend_src_auth_auth_controller_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service", + "target": "backend_src_auth_auth_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service", + "target": "backend_src_auth_dto_send_otp_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service", + "target": "backend_src_auth_dto_verify_otp_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service", + "target": "backend_src_common_utils_phone_utils" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_service", + "target": "backend_src_redis_redis_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/revalidation/revalidation.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_module", + "target": "backend_src_common_revalidation_revalidation_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_revalidation_revalidation_service", + "target": "backend_src_products_products_service" + }, + { + "relation": "imports_from", + "_origin": "ast", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "context": "import", + "source_file": "backend/src/products/products.service.spec.ts", + "source_location": "L4", + "weight": 1.0, + "source": "backend_src_common_revalidation_revalidation_service", + "target": "backend_src_products_products_service_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_module", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/redis/redis.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_module", + "target": "backend_src_redis_redis_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/redis/redis.service.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_redis_redis_service", + "target": "backend_src_redis_redis_service_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_dto_initiate_payment_dto", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.build.json", + "source_location": "L2", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_build", + "target": "ref_tsconfig_json" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.build.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_build", + "target": "backend_tsconfig_build_extends" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.build.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_build", + "target": "backend_tsconfig_build_exclude" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.build.json", + "source_location": "L3", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_build_exclude", + "target": "backend_tsconfig_build_json_ref_dist" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.build.json", + "source_location": "L3", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_build_exclude", + "target": "backend_tsconfig_build_json_ref_node_modules" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.build.json", + "source_location": "L3", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_build_exclude", + "target": "backend_tsconfig_build_json_ref_prisma" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.build.json", + "source_location": "L3", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_build_exclude", + "target": "ref_spec_ts" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.build.json", + "source_location": "L3", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_build_exclude", + "target": "ref_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/03-baseline-command-plan.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_03_baseline_command_plan", + "target": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/03-baseline-command-plan.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_03_baseline_command_plan_attempted_command_execution_log", + "target": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/03-baseline-command-plan.md", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_03_baseline_command_plan_backend_backend_package_json_scripts", + "target": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/03-baseline-command-plan.md", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", + "target": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/03-baseline-command-plan.md", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_03_baseline_command_plan_baseline_command_plan_reconciled_command_history", + "target": "docs_audit_03_baseline_command_plan_permitted_safe_checks_for_phase_2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/03-baseline-command-plan.md", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_03_baseline_command_plan_package_scripts_safety_analysis", + "target": "docs_audit_03_baseline_command_plan_root_package_json_scripts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/seo-backfill.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_scripts_seo_backfill", + "target": "backend_scripts_seo_backfill_prisma" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/b2b/error.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_b2b_error", + "target": "frontend_application_components_errorpages" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/error.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_error", + "target": "frontend_application_components_errorpages" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/error.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_error", + "target": "frontend_application_components_errorpages" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/not-found.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_not_found", + "target": "frontend_application_components_errorpages" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/error.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_shop_error", + "target": "frontend_application_components_errorpages" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "gitea_scripts_with_vpn", + "target": "gitea_scripts_with_vpn_sh__entry" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "gitea_scripts_with_vpn", + "target": "gitea_scripts_with_vpn_log" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "gitea_scripts_with_vpn", + "target": "gitea_scripts_with_vpn_vpn_is_up" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "gitea_scripts_with_vpn", + "target": "gitea_scripts_with_vpn_start_vpn" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "gitea_scripts_with_vpn", + "target": "gitea_scripts_with_vpn_stop_vpn" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "gitea_scripts_with_vpn", + "target": "gitea_scripts_with_vpn_cleanup" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L67", + "weight": 1.0, + "context": "call", + "_origin": "ast", + "confidence_score": 1.0, + "source": "gitea_scripts_with_vpn_cleanup", + "target": "gitea_scripts_with_vpn_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L68", + "weight": 1.0, + "context": "call", + "_origin": "ast", + "confidence_score": 1.0, + "source": "gitea_scripts_with_vpn_cleanup", + "target": "gitea_scripts_with_vpn_stop_vpn" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L76", + "weight": 1.0, + "context": "call", + "_origin": "ast", + "confidence_score": 1.0, + "source": "gitea_scripts_with_vpn_log", + "target": "gitea_scripts_with_vpn_sh__entry" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L22", + "weight": 1.0, + "context": "call", + "_origin": "ast", + "confidence_score": 1.0, + "source": "gitea_scripts_with_vpn_log", + "target": "gitea_scripts_with_vpn_start_vpn" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L52", + "weight": 1.0, + "context": "call", + "_origin": "ast", + "confidence_score": 1.0, + "source": "gitea_scripts_with_vpn_log", + "target": "gitea_scripts_with_vpn_stop_vpn" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L74", + "weight": 1.0, + "context": "call", + "_origin": "ast", + "confidence_score": 1.0, + "source": "gitea_scripts_with_vpn_sh__entry", + "target": "gitea_scripts_with_vpn_start_vpn" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": ".gitea/scripts/with-vpn.sh", + "source_location": "L21", + "weight": 1.0, + "context": "call", + "_origin": "ast", + "confidence_score": 1.0, + "source": "gitea_scripts_with_vpn_start_vpn", + "target": "gitea_scripts_with_vpn_vpn_is_up" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller", + "target": "backend_src_doctors_doctors_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller", + "target": "backend_src_doctors_dto_doctor_query_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_controller", + "target": "backend_src_auth_jwt_auth_guard" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "backend/src/doctors/doctors.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_doctors_doctors_service", + "target": "backend_src_doctors_dto_doctor_query_dto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/architecture_spec.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_architecture_spec", + "target": "ai_agency_specs_architecture_spec_architecture_specification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/architecture_spec.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_architecture_spec_1_single_non_negotiable_tech_stack", + "target": "ai_agency_specs_architecture_spec_architecture_specification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/architecture_spec.md", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_architecture_spec_2_directory_structure_tree", + "target": "ai_agency_specs_architecture_spec_architecture_specification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/architecture_spec.md", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_architecture_spec_3_state_management_strategy", + "target": "ai_agency_specs_architecture_spec_architecture_specification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/architecture_spec.md", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_architecture_spec_4_deployment_docker_architecture", + "target": "ai_agency_specs_architecture_spec_architecture_specification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/project_health.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_project_health", + "target": "ai_agency_specs_project_health_project_health_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/project_health.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_project_health_1_audit_score_summary", + "target": "ai_agency_specs_project_health_project_health_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/project_health.md", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_project_health_2_technical_debt_inventory", + "target": "ai_agency_specs_project_health_project_health_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/project_health.md", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_project_health_3_outdated_dependencies_list", + "target": "ai_agency_specs_project_health_project_health_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/project_health.md", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_project_health_4_security_risks_env_leaks_unprotected_ports", + "target": "ai_agency_specs_project_health_project_health_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/nest-cli.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_nest_cli", + "target": "backend_nest_cli_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/nest-cli.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_nest_cli", + "target": "backend_nest_cli_collection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/nest-cli.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_nest_cli", + "target": "backend_nest_cli_sourceroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/nest-cli.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_nest_cli", + "target": "backend_nest_cli_compileroptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/nest-cli.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_nest_cli_compileroptions", + "target": "backend_nest_cli_compileroptions_deleteoutdir" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/query.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_query", + "target": "claude_skills_graphify_references_query_graphify_reference_query_path_explain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/query.md", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_query_for_graphify_explain", + "target": "claude_skills_graphify_references_query_graphify_reference_query_path_explain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/query.md", + "source_location": "L186", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_query_for_graphify_path", + "target": "claude_skills_graphify_references_query_graphify_reference_query_path_explain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/query.md", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", + "target": "claude_skills_graphify_references_query_step_0_constrained_query_expansion_required_before_traversal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/query.md", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_query_graphify_reference_query_path_explain", + "target": "claude_skills_graphify_references_query_step_1_traversal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/04-open-questions.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_04_open_questions", + "target": "docs_audit_04_open_questions_open_questions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/04-open-questions.md", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_04_open_questions_1_storefront_migration_roadmap_frontend_application", + "target": "docs_audit_04_open_questions_open_questions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/04-open-questions.md", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_04_open_questions_2_payment_gateway_integration_provider", + "target": "docs_audit_04_open_questions_open_questions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/04-open-questions.md", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_04_open_questions_3_deployment_ci_cd_pipeline_specifications", + "target": "docs_audit_04_open_questions_open_questions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/04-open-questions.md", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_04_open_questions_4_sms_otp_service_provider", + "target": "docs_audit_04_open_questions_open_questions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/33-final-phase2-audit-closure.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_33_final_phase2_audit_closure", + "target": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/33-final-phase2-audit-closure.md", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_33_final_phase2_audit_closure_1_executive_summary_honest_review_tier_metrics", + "target": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/33-final-phase2-audit-closure.md", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_33_final_phase2_audit_closure_2_reconciled_findings_canonical_identifier_normalization", + "target": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/33-final-phase2-audit-closure.md", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_33_final_phase2_audit_closure_3_validation_integrity_verification", + "target": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/33-final-phase2-audit-closure.md", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_33_final_phase2_audit_closure_4_final_quality_gate_conclusion", + "target": "docs_audit_33_final_phase2_audit_closure_final_phase_2_audit_closure_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/open-browsers.js", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "scripts_open_browsers", + "target": "scripts_open_browsers_exec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/open-browsers.js", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "scripts_open_browsers", + "target": "scripts_open_browsers_http" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/open-browsers.js", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "scripts_open_browsers", + "target": "scripts_open_browsers_urls" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/memory/scratchpad.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_memory_scratchpad", + "target": "ai_agency_memory_scratchpad_active_agent_working_scratchpad" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/memory/scratchpad.md", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", + "target": "ai_agency_memory_scratchpad_execution_target" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/memory/scratchpad.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", + "target": "ai_agency_memory_scratchpad_project_canina_veterinary_e_commerce_system" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/memory/scratchpad.md", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_memory_scratchpad_active_agent_working_scratchpad", + "target": "ai_agency_memory_scratchpad_requirements_persona_mandates_intake_user_request" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/reviews/code_health_review.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_reviews_code_health_review", + "target": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/reviews/code_health_review.md", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", + "target": "ai_agency_specs_reviews_code_health_review_recommendations" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/reviews/code_health_review.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", + "target": "ai_agency_specs_reviews_code_health_review_executive_summary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/reviews/code_health_review.md", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_reviews_code_health_review_code_health_audit_review_01_auditor", + "target": "ai_agency_specs_reviews_code_health_review_key_findings" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout_authmodal", + "target": "frontend_application_components_authmodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_addressmodal", + "target": "frontend_application_lib_data_provinces_iran_provinces" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_addressmodal", + "target": "frontend_application_lib_data_provinces_province_cities" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_addressmodal", + "target": "frontend_application_lib_utils" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_addressmodal", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_addressmodal", + "target": "frontend_application_lib_data_provinces" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AddressModal.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_addressmodal", + "target": "frontend_application_components_searchableselect" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_addressmodal", + "target": "frontend_application_components_checkoutpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_addressmodal", + "target": "frontend_application_components_userdashboard" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_authmodal", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_authmodal", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_authmodal", + "target": "frontend_application_lib_services_authservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/AuthModal.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_authmodal", + "target": "frontend_application_lib_utils" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_authmodal", + "target": "frontend_application_components_cartdrawer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BackButton.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_backbutton", + "target": "frontend_application_lib_utils" + }, + { + "relation": "imports_from", + "_origin": "ast", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "context": "import", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L6", + "weight": 1.0, + "source": "frontend_application_components_backbutton", + "target": "frontend_application_components_videospage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_checkoutpage", + "target": "frontend_application_lib_data_products_products" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_checkoutpage", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_checkoutpage", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_checkoutpage", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_checkoutpage", + "target": "frontend_application_lib_data_provinces_iran_provinces" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_checkoutpage", + "target": "frontend_application_lib_data_provinces_province_cities" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_checkoutpage", + "target": "frontend_application_lib_services_api_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/checkout/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_checkoutpage", + "target": "frontend_application_app_checkout_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_checkoutpage", + "target": "frontend_application_lib_utils" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_checkoutpage", + "target": "frontend_application_lib_data_products" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_checkoutpage", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_checkoutpage", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_checkoutpage", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_checkoutpage", + "target": "frontend_application_components_topupmodal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_checkoutpage", + "target": "frontend_application_components_searchableselect" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_checkoutpage", + "target": "frontend_application_lib_data_provinces" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CheckoutPage.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_checkoutpage", + "target": "frontend_application_lib_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_deleteconfirmmodal", + "target": "frontend_application_components_userdashboard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/HeaderButton.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_headerbutton", + "target": "frontend_application_lib_utils" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SearchableSelect.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_searchableselect", + "target": "frontend_application_lib_utils" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_topupmodal", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_topupmodal", + "target": "frontend_application_lib_services_api_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_topupmodal", + "target": "frontend_application_lib_utils" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_topupmodal", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_topupmodal", + "target": "frontend_application_lib_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_topupmodal", + "target": "frontend_application_components_userdashboard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TopUpModal.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_topupmodal", + "target": "frontend_application_components_topupmodal_preset_amounts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard", + "target": "frontend_application_lib_services_ticketservice_ticketservice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard", + "target": "frontend_application_lib_services_api_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard", + "target": "frontend_application_lib_services_api_base_domain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/dashboard/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard", + "target": "frontend_application_app_dashboard_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard", + "target": "frontend_application_components_orderdetailsmodal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard", + "target": "frontend_application_lib_services_ticketservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard", + "target": "frontend_application_components_petprofile" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard", + "target": "frontend_application_lib_services_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard", + "target": "frontend_application_components_skeleton" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/UserDashboard.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_userdashboard", + "target": "frontend_application_lib_utils" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/data/provinces.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_provinces", + "target": "frontend_application_lib_data_provinces_iran_provinces" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/data/provinces.ts", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_provinces", + "target": "frontend_application_lib_data_provinces_province_cities" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_ticketservice", + "target": "frontend_application_lib_services_api_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_ticketservice", + "target": "frontend_application_lib_services_api" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/ticketService.ts", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_ticketservice", + "target": "frontend_application_lib_services_ticketservice_ticketservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils", + "target": "frontend_application_app_payment_verify_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils", + "target": "frontend_application_components_b2bportal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils", + "target": "frontend_application_components_blogpreviewsection" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils", + "target": "frontend_application_components_cartdrawer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils", + "target": "frontend_application_components_hero" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils", + "target": "frontend_application_components_loginmodal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils", + "target": "frontend_application_components_orderdetailsmodal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils", + "target": "frontend_application_components_petprofile" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils", + "target": "frontend_application_components_productreviews" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SafeImage.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_utils", + "target": "frontend_application_components_safeimage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/24-omitted-file-inspection-report.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_24_omitted_file_inspection_report", + "target": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/24-omitted-file-inspection-report.md", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_24_omitted_file_inspection_report_conclusion", + "target": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/24-omitted-file-inspection-report.md", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_24_omitted_file_inspection_report_key_domain_findings_from_omitted_file_audit", + "target": "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/24-omitted-file-inspection-report.md", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_24_omitted_file_inspection_report_omitted_file_inspection_report", + "target": "docs_audit_24_omitted_file_inspection_report_overview_of_omitted_file_inspections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.2-implementation-readiness.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_2_implementation_readiness", + "target": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.2-implementation-readiness.md", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_2_implementation_readiness_1_executive_summary_architecture_decisions", + "target": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.2-implementation-readiness.md", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_2_implementation_readiness_2_updated_task_specifications_overview", + "target": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.2-implementation-readiness.md", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_2_implementation_readiness_3_final_readiness_statement", + "target": "docs_audit_phase3_2_implementation_readiness_phase_3_2_3_3_implementation_readiness_architectural_finalization_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3-traceability-matrix.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_traceability_matrix", + "target": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3-traceability-matrix.md", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_traceability_matrix_complete_finding_to_task_traceability_matrix", + "target": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3-traceability-matrix.md", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_traceability_matrix_finding_disposition_accounting_verification", + "target": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3-traceability-matrix.md", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_traceability_matrix_phase_3_audit_traceability_matrix", + "target": "docs_audit_phase3_traceability_matrix_special_task_traceability_non_finding_tasks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/rebuild_honest_ledger.js", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_rebuild_honest_ledger", + "target": "docs_audit_rebuild_honest_ledger_mandatoryscope" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/rebuild_honest_ledger.js", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_rebuild_honest_ledger", + "target": "docs_audit_rebuild_honest_ledger_evidencelist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/rebuild_honest_ledger.js", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_rebuild_honest_ledger", + "target": "docs_audit_rebuild_honest_ledger_mandatorymap" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/rebuild_honest_ledger.js", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_rebuild_honest_ledger", + "target": "docs_audit_rebuild_honest_ledger_ledger" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/validate_evidence_grade.js", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_validate_evidence_grade", + "target": "docs_audit_validate_evidence_grade_validationoutput" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/validate_evidence_grade.js", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_validate_evidence_grade", + "target": "docs_audit_validate_evidence_grade_errors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/validate_evidence_grade.js", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_validate_evidence_grade", + "target": "docs_audit_validate_evidence_grade_warnings" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/validate_evidence_grade.js", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_validate_evidence_grade", + "target": "docs_audit_validate_evidence_grade_activefiles" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/dto/admin-query.dto.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_dto_admin_query_dto", + "target": "backend_src_common_dto_pagination_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller", + "target": "backend_src_blogs_blogs_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller", + "target": "backend_src_common_dto_pagination_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.controller.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller", + "target": "backend_src_auth_jwt_auth_guard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_controller", + "target": "backend_src_blogs_blogs_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_module", + "target": "backend_src_blogs_blogs_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/blogs.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_blogs_service", + "target": "backend_src_common_dto_pagination_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto", + "target": "backend_src_admin_blogs_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto", + "target": "backend_src_admin_categories_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto", + "target": "backend_src_admin_pets_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto", + "target": "backend_src_admin_wiki_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto", + "target": "backend_src_orders_orders_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto", + "target": "backend_src_orders_orders_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto", + "target": "backend_src_pets_pets_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto", + "target": "backend_src_pets_pets_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/dto/get-products.dto.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto", + "target": "backend_src_products_dto_get_products_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/dto/get-videos-query.dto.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto", + "target": "backend_src_videos_dto_get_videos_query_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto", + "target": "backend_src_wiki_wiki_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_dto_pagination_dto", + "target": "backend_src_wiki_wiki_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto", + "target": "backend_src_orders_orders_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_dto_create_order_dto", + "target": "backend_src_orders_orders_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller", + "target": "backend_src_orders_orders_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller", + "target": "backend_src_auth_jwt_auth_guard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller", + "target": "backend_src_orders_orders_controller_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller", + "target": "backend_src_orders_orders_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.controller.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_controller_spec", + "target": "backend_src_orders_orders_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/orders/orders.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_orders_orders_module", + "target": "backend_src_orders_orders_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_get_videos_query_dto", + "target": "backend_src_videos_videos_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/blogs.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_blogs_controller", + "target": "backend_src_auth_jwt_auth_guard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/categories.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_categories_controller", + "target": "backend_src_auth_jwt_auth_guard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller", + "target": "backend_src_admin_ssl_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller", + "target": "backend_src_auth_jwt_auth_guard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller", + "target": "backend_src_common_guards_roles_guard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/ssl.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_ssl_controller", + "target": "backend_src_common_decorators_roles_decorator" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_admin_media_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_admin_pets_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_admin_reports_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_admin_wiki_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_auth_auth_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_b2b_b2b_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_banners_banners_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_cms_cms_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_contact_contact_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_faq_faq_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_ingredients_ingredients_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_menu_menu_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_pets_pets_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_prescriptions_prescriptions_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_products_products_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_settings_settings_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.spec.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_settings_settings_controller_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_smart_advisor_smart_advisor_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_testimonials_testimonials_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_tickets_tickets_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_users_users_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_videos_videos_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_jwt_auth_guard", + "target": "backend_src_wholesale_wholesale_controller" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/roles.decorator.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_roles_decorator", + "target": "backend_src_common_decorators_roles_decorator" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_roles_decorator", + "target": "backend_src_b2b_b2b_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_roles_decorator", + "target": "backend_src_cms_cms_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_roles_decorator", + "target": "backend_src_contact_contact_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_roles_decorator", + "target": "backend_src_wholesale_wholesale_controller" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/roles.guard.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_roles_guard", + "target": "backend_src_common_guards_roles_guard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/b2b/b2b.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_roles_guard", + "target": "backend_src_b2b_b2b_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_roles_guard", + "target": "backend_src_cms_cms_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/contact/contact.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_roles_guard", + "target": "backend_src_contact_contact_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_roles_guard", + "target": "backend_src_wholesale_wholesale_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller", + "target": "backend_src_common_guards_roles_guard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/banners/banners.controller.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_banners_banners_controller", + "target": "backend_src_common_decorators_roles_decorator" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator", + "target": "backend_src_common_guards_roles_guard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/guards/roles.guard.spec.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator", + "target": "backend_src_common_guards_roles_guard_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator", + "target": "backend_src_faq_faq_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator", + "target": "backend_src_ingredients_ingredients_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator", + "target": "backend_src_menu_menu_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator", + "target": "backend_src_prescriptions_prescriptions_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator", + "target": "backend_src_products_products_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator", + "target": "backend_src_settings_settings_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.spec.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator", + "target": "backend_src_settings_settings_controller_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator", + "target": "backend_src_smart_advisor_smart_advisor_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator", + "target": "backend_src_testimonials_testimonials_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator", + "target": "backend_src_tickets_tickets_controller" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/decorators/roles.decorator.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator", + "target": "backend_src_common_decorators_roles_decorator_roles_key" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/guards/roles.guard.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles_key", + "target": "backend_src_common_guards_roles_guard" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/guards/roles.guard.spec.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles_key", + "target": "backend_src_common_guards_roles_guard_spec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.spec.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_decorators_roles_decorator_roles_key", + "target": "backend_src_settings_settings_controller_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/common/guards/roles.guard.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard", + "target": "backend_src_common_guards_roles_guard_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/faq/faq.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard", + "target": "backend_src_faq_faq_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/ingredients/ingredients.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard", + "target": "backend_src_ingredients_ingredients_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/menu/menu.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard", + "target": "backend_src_menu_menu_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard", + "target": "backend_src_payment_payment_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/prescriptions/prescriptions.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard", + "target": "backend_src_prescriptions_prescriptions_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard", + "target": "backend_src_products_products_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard", + "target": "backend_src_settings_settings_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.spec.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard", + "target": "backend_src_settings_settings_controller_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/smart-advisor/smart-advisor.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard", + "target": "backend_src_smart_advisor_smart_advisor_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/testimonials/testimonials.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard", + "target": "backend_src_testimonials_testimonials_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_common_guards_roles_guard", + "target": "backend_src_tickets_tickets_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller", + "target": "backend_src_payment_zibal_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller", + "target": "backend_src_payment_dto_ebank_checkout_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller", + "target": "backend_src_payment_dto_verify_payment_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/payment.controller.ts", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_payment_controller", + "target": "backend_src_payment_dto_admin_transaction_filter_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller", + "target": "backend_src_settings_dto_sms_log_query_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/settings/settings.controller.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_settings_settings_controller", + "target": "backend_src_settings_settings_controller_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wholesale/wholesale.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wholesale_wholesale_controller", + "target": "backend_src_wholesale_dto_wholesale_apply_dto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/api_contract.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_api_contract", + "target": "ai_agency_specs_api_contract_api_contract_specification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/api_contract.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_api_contract_1_openapi_3_0_swagger_specification", + "target": "ai_agency_specs_api_contract_api_contract_specification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/api_contract.md", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_api_contract_2_endpoint_definitions_data_types", + "target": "ai_agency_specs_api_contract_api_contract_specification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/reviews/backend_review.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_reviews_backend_review", + "target": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/reviews/backend_review.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_reviews_backend_review_architectural_overview", + "target": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/reviews/backend_review.md", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_reviews_backend_review_backend_technical_review_05_dev_backend", + "target": "ai_agency_specs_reviews_backend_review_critical_review_findings_required_enhancements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/reviews/frontend_review.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_reviews_frontend_review", + "target": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/reviews/frontend_review.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_reviews_frontend_review_architectural_overview", + "target": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/reviews/frontend_review.md", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_reviews_frontend_review_critical_review_findings_required_enhancements", + "target": "ai_agency_specs_reviews_frontend_review_frontend_admin_panel_technical_review_06_dev_frontend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/reviews/seo_content_review.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_reviews_seo_content_review", + "target": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/reviews/seo_content_review.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_reviews_seo_content_review_overview_content_foundation", + "target": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/reviews/seo_content_review.md", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_reviews_seo_content_review_seo_content_requirements", + "target": "ai_agency_specs_reviews_seo_content_review_seo_content_strategy_review_12_seo_content" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-ui-texts.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_ui_texts", + "target": "backend_prisma_seed_ui_texts_prisma" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-ui-texts.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_ui_texts", + "target": "backend_prisma_seed_ui_texts_ui_texts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-wiki.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_wiki", + "target": "backend_prisma_seed_wiki_prisma" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-wiki.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_wiki", + "target": "backend_prisma_seed_wiki_canonical_wiki_terms" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/blogs/dto/update-blog.dto.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_blogs_dto_create_blog_dto", + "target": "backend_src_blogs_dto_update_blog_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/dto/update-home.dto.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_dto_create_home_dto", + "target": "backend_src_home_dto_update_home_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_dto_get_products_dto", + "target": "backend_src_products_products_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_dto_get_products_dto", + "target": "backend_src_products_products_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller", + "target": "backend_src_products_products_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller", + "target": "backend_src_products_products_controller_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller", + "target": "backend_src_products_products_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.controller.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_controller_spec", + "target": "backend_src_products_products_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_module", + "target": "backend_src_products_products_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/products/products.service.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_products_products_service", + "target": "backend_src_products_products_service_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/dto/update-wiki.dto.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_dto_create_wiki_dto", + "target": "backend_src_wiki_dto_update_wiki_dto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/add-watch.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_add_watch", + "target": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/add-watch.md", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_add_watch_for_graphify_add", + "target": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/add-watch.md", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_add_watch_for_watch", + "target": "claude_skills_graphify_references_add_watch_graphify_reference_add_a_url_and_watch_a_folder" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/hooks.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_hooks", + "target": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/hooks.md", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_hooks_for_git_commit_hook", + "target": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/hooks.md", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_hooks_for_native_claude_md_integration", + "target": "claude_skills_graphify_references_hooks_graphify_reference_commit_hook_and_native_claude_md_integration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/update.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_update", + "target": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/update.md", + "source_location": "L202", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_update_for_cluster_only", + "target": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/update.md", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_update_for_update_incremental_re_extraction", + "target": "claude_skills_graphify_references_update_graphify_reference_incremental_update_and_cluster_only" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/19-finding-verification-report.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_19_finding_verification_report", + "target": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/19-finding-verification-report.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_19_finding_verification_report_1_executive_summary_verification_reconciliation_table", + "target": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/19-finding-verification-report.md", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_19_finding_verification_report_2_newly_discovered_split_findings_canonical_ids", + "target": "docs_audit_19_finding_verification_report_raw_finding_verification_disposition_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/README.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_readme", + "target": "frontend_admin_panel_readme_react_typescript_vite" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/README.md", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_readme_expanding_the_eslint_configuration", + "target": "frontend_admin_panel_readme_react_typescript_vite" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/README.md", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_readme_react_compiler", + "target": "frontend_admin_panel_readme_react_typescript_vite" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Select.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_select", + "target": "frontend_admin_panel_src_components_ui_select_select" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller", + "target": "backend_src_auth_dto_send_otp_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller", + "target": "backend_src_auth_dto_verify_otp_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller", + "target": "backend_src_auth_dto_register_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller", + "target": "backend_src_auth_dto_login_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller", + "target": "backend_src_auth_dto_admin_login_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.controller.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller", + "target": "backend_src_auth_auth_controller_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.module.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_controller", + "target": "backend_src_auth_auth_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_create_video_dto", + "target": "backend_src_videos_videos_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.service.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_dto_create_video_dto", + "target": "backend_src_videos_videos_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller", + "target": "backend_src_videos_videos_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_controller", + "target": "backend_src_videos_videos_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/videos/videos.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_videos_videos_module", + "target": "backend_src_videos_videos_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/README.md", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_readme", + "target": "frontend_application_readme_learn_more" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/README.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_readme", + "target": "frontend_application_readme_getting_started" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/README.md", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_readme", + "target": "frontend_application_readme_deploy_on_vercel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy.sh", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "scripts_deploy", + "target": "scripts_deploy_sh__entry" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy.sh", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "scripts_deploy", + "target": "scripts_deploy_docker_buildkit" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy.sh", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "scripts_deploy", + "target": "scripts_deploy_compose_docker_cli_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/reviews/security_review.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_reviews_security_review", + "target": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/reviews/security_review.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_reviews_security_review_security_architecture_best_practices", + "target": "ai_agency_specs_reviews_security_review_security_performance_review_09_devops_security" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/reviews/ux_review.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_reviews_ux_review", + "target": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/specs/reviews/ux_review.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_specs_reviews_ux_review_persona_experience_alignment", + "target": "ai_agency_specs_reviews_ux_review_ux_persona_interface_review_08_visual_qa" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/scientificTerms.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_scientificterms", + "target": "backend_prisma_scientificterms_scientific_terms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-blogs.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_blogs", + "target": "backend_prisma_seed_blogs_prisma" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-custom.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_custom", + "target": "backend_prisma_seed_custom_prisma" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/github-and-merge.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_github_and_merge", + "target": "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/github-and-merge.md", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_github_and_merge_graphify_reference_github_clone_and_cross_repo_merge", + "target": "claude_skills_graphify_references_github_and_merge_step_0_clone_github_repo_s_only_if_a_github_url_was_given" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/transcribe.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_transcribe", + "target": "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/transcribe.md", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_transcribe_graphify_reference_transcribe_video_and_audio", + "target": "claude_skills_graphify_references_transcribe_step_2_5_transcribe_video_audio_files_only_if_video_files_detected" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/TransactionReceiptModal.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_components_transactionreceiptmodal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Button.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_components_ui_spinner" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/CMS.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_cms" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_contactsubmissions" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_doctorsmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_faqmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_menumanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_monitoringpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_paymentgatewayspage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_reports" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_reviews" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Settings.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_settings" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_shippingsettingspage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_sslsettingspage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_tickets" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_users" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_wiki" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_button", + "target": "frontend_admin_panel_src_pages_zibalportalpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner", + "target": "frontend_admin_panel_src_pages_doctorsmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner", + "target": "frontend_admin_panel_src_pages_faqmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner", + "target": "frontend_admin_panel_src_pages_menumanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner", + "target": "frontend_admin_panel_src_pages_paymentgatewayspage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner", + "target": "frontend_admin_panel_src_pages_reports" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner", + "target": "frontend_admin_panel_src_pages_reviews" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Settings.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner", + "target": "frontend_admin_panel_src_pages_settings" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner", + "target": "frontend_admin_panel_src_pages_shippingsettingspage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/SslSettingsPage.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner", + "target": "frontend_admin_panel_src_pages_sslsettingspage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner", + "target": "frontend_admin_panel_src_pages_wiki" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_spinner", + "target": "frontend_admin_panel_src_pages_zibalportalpage" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_doctorsmanager", + "target": "frontend_admin_panel_src_routes_adminroutes_doctorsmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/DoctorsManager.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_doctorsmanager", + "target": "frontend_admin_panel_src_components_ui_modal" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_doctorsmanager", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_faqmanager", + "target": "frontend_admin_panel_src_routes_adminroutes_faqmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/FAQManager.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_faqmanager", + "target": "frontend_admin_panel_src_components_ui_modal" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_faqmanager", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_paymentgatewayspage", + "target": "frontend_admin_panel_src_routes_adminroutes_paymentgatewayspage" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_paymentgatewayspage", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_reviews", + "target": "frontend_admin_panel_src_routes_adminroutes_reviews" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reviews.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_reviews", + "target": "frontend_admin_panel_src_components_ui_modal" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_reviews", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_settings", + "target": "frontend_admin_panel_src_routes_adminroutes_settings" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_settings", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_shippingsettingspage", + "target": "frontend_admin_panel_src_routes_adminroutes_shippingsettingspage" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_shippingsettingspage", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_sslsettingspage", + "target": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_sslsettingspage", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_faqmanager", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_reviews", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_settings", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_sslsettingspage", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_18_compiler_diagnostic_dispositions", + "target": "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/18-compiler-diagnostic-dispositions.md", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_18_compiler_diagnostic_dispositions_compiler_diagnostic_dispositions", + "target": "docs_audit_18_compiler_diagnostic_dispositions_reconciled_compiler_diagnostic_table" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/build_manifest.js", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_build_manifest", + "target": "docs_audit_build_manifest_lines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/build_manifest.js", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_build_manifest", + "target": "docs_audit_build_manifest_entries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/generate_classification.js", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_generate_classification", + "target": "docs_audit_generate_classification_lines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/generate_classification.js", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_generate_classification", + "target": "docs_audit_generate_classification_classified" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/generate_evidence.js", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_generate_evidence", + "target": "docs_audit_generate_evidence_classification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/generate_evidence.js", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_generate_evidence", + "target": "docs_audit_generate_evidence_evidenceentries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/generate_ledger.js", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_generate_ledger", + "target": "docs_audit_generate_ledger_evidence" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/generate_ledger.js", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_generate_ledger", + "target": "docs_audit_generate_ledger_ledgerentries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/generate_manifest.js", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_generate_manifest", + "target": "docs_audit_generate_manifest_evidence" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/generate_manifest.js", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_generate_manifest", + "target": "docs_audit_generate_manifest_manifestentries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/sync_honest_manifest.js", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_sync_honest_manifest", + "target": "docs_audit_sync_honest_manifest_ledger" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/sync_honest_manifest.js", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_sync_honest_manifest", + "target": "docs_audit_sync_honest_manifest_manifest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/sync_manifest.js", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_sync_manifest", + "target": "docs_audit_sync_manifest_ledger" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/sync_manifest.js", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_sync_manifest", + "target": "docs_audit_sync_manifest_manifestentries" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout_b2bportal", + "target": "frontend_application_components_b2bportal" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout_loginmodal", + "target": "frontend_application_components_loginmodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_payment_verify_page", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_payment_verify_page", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_payment_verify_page", + "target": "frontend_application_lib_services_api_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_payment_verify_page", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_payment_verify_page", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/payment/verify/page.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_payment_verify_page", + "target": "frontend_application_lib_services_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_b2bportal", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_b2bportal", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_b2bportal", + "target": "frontend_application_components_safeimage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_b2bportal", + "target": "frontend_application_lib_data_products" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_b2bportal", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_b2bportal", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BPortal.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_b2bportal", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/B2BPortal.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_b2bportal", + "target": "frontend_application_lib_services_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ContactFormClient.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_contactformclient", + "target": "frontend_application_lib_services_api_api" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_contactformclient", + "target": "frontend_application_app_contact_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ContactFormClient.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_contactformclient", + "target": "frontend_application_lib_services_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_loginmodal", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_loginmodal", + "target": "frontend_application_lib_services_authservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/LoginModal.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_loginmodal", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_prescriptionuploadmodal", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_prescriptionuploadmodal", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_prescriptionuploadmodal", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_prescriptionuploadmodal", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PrescriptionUploadModal.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_prescriptionuploadmodal", + "target": "frontend_application_lib_services_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_components_blogpreviewsection" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FAQSection.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_components_faqsection" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_components_ingredientwiki" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_components_orderdetailsmodal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_components_petprofile" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_components_productreviews" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_components_testimonialssection" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_lib_services_authservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_lib_services_orderservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/videoService.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_lib_services_videoservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_lib_store_tests_cartstore_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_lib_store_tests_settingsstore_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_lib_store_tests_userstore_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_lib_services_api_baseurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_lib_services_api_base_domain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/api.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api", + "target": "frontend_application_lib_services_api_api" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_components_blogpreviewsection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FAQSection.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_components_faqsection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_components_ingredientwiki" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_components_orderdetailsmodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_components_petprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductReviews.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_components_productreviews" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_components_testimonialssection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/authService.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_lib_services_authservice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/orderService.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_lib_services_orderservice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/videoService.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_lib_services_videoservice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_lib_store_tests_cartstore_test" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/__tests__/settingsStore.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_lib_store_tests_settingsstore_test" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_lib_store_tests_userstore_test" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_api_api", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice", + "target": "frontend_application_lib_store_tests_userstore_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_authservice", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_tests_userstore_test", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/__tests__/userStore.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_tests_userstore_test", + "target": "frontend_application_lib_store_userstore" + }, + { + "relation": "imports", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_userstore", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_userstore", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_userstore", + "target": "frontend_application_components_cartdrawer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Header.test.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_userstore", + "target": "frontend_application_components_tests_header_test" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "_origin": "ast", + "context": "import", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "frontend_application_lib_store_userstore", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_userstore", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/userStore.ts", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_userstore", + "target": "frontend_application_lib_store_userstore_useuserstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_userstore_useuserstore", + "target": "frontend_application_components_cartdrawer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Header.test.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_userstore_useuserstore", + "target": "frontend_application_components_tests_header_test" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_userstore_useuserstore", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Input.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_input", + "target": "frontend_admin_panel_src_components_ui_input_input" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Textarea.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_textarea", + "target": "frontend_admin_panel_src_components_ui_textarea_textarea" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig", + "target": "frontend_admin_panel_tsconfig_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig", + "target": "frontend_admin_panel_tsconfig_references" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L67", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_jest", + "target": "jest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_jest", + "target": "backend_package_devdependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/next.config.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_next_config", + "target": "frontend_application_next_config_nextconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/next.config.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_next_config", + "target": "frontend_application_next_config_securityheaders" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "AGENTS.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "agents", + "target": "agents_graphify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".agents/rules/graphify.md", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "agents_rules_graphify", + "target": "agents_rules_graphify_graphify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".agents/workflows/graphify.md", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "agents_workflows_graphify", + "target": "agents_workflows_graphify_workflow_graphify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/instructions.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_instructions", + "target": "antigravity_instructions_graphify" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L49", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_eslint_js", + "target": "backend_package_json_eslint_js" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_eslint_js", + "target": "backend_package_devdependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration", + "target": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_scientific_terms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration", + "target": "backend_prisma_migrations_20260526160916_add_ui_texts_and_scientific_terms_migration_ui_texts" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L69", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_prisma", + "target": "prisma" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_prisma", + "target": "backend_package_devdependencies" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L70", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_source_map_support", + "target": "source_map_support" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_source_map_support", + "target": "backend_package_devdependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit", + "target": "docs_audit_07_backend_audit_nestjs_backend_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_acceptance_criteria", + "target": "docs_audit_07_backend_audit_be_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_affected_application", + "target": "docs_audit_07_backend_audit_be_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_affected_files", + "target": "docs_audit_07_backend_audit_be_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_alternative_direction", + "target": "docs_audit_07_backend_audit_be_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_risks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_verification_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_testing_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_notes_and_limitations" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_domain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_category" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_severity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_confidence" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_relevant_symbols_or_lines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_evidence" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_problem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_root_cause" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_why_it_matters" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_user_or_business_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_technical_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_security_or_data_integrity_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_recommended_direction" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_implementation_complexity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_be_001", + "target": "docs_audit_07_backend_audit_nestjs_backend_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_completion_statement", + "target": "docs_audit_07_backend_audit_nestjs_backend_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_domain_overview_confirmed_strengths", + "target": "docs_audit_07_backend_audit_nestjs_backend_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_evaluation_of_6_existing_typescript_compiler_diagnostics", + "target": "docs_audit_07_backend_audit_nestjs_backend_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_finding_summary", + "target": "docs_audit_07_backend_audit_nestjs_backend_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/07-backend-audit.md", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_07_backend_audit_findings", + "target": "docs_audit_07_backend_audit_nestjs_backend_audit_report" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L71", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_supertest", + "target": "supertest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_supertest", + "target": "backend_package_devdependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude", + "target": "claude_graphify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/CLAUDE.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_claude", + "target": "claude_claude_graphify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/references/extraction-spec.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_references_extraction_spec", + "target": "claude_skills_graphify_references_extraction_spec_graphify_reference_extraction_subagent_prompt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit", + "target": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_acceptance_criteria", + "target": "docs_audit_06_storefront_audit_fe_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_affected_application", + "target": "docs_audit_06_storefront_audit_fe_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_affected_files", + "target": "docs_audit_06_storefront_audit_fe_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_alternative_direction", + "target": "docs_audit_06_storefront_audit_fe_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_architecture_overview_confirmed_strengths", + "target": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_category", + "target": "docs_audit_06_storefront_audit_fe_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_completion_statement", + "target": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_confidence", + "target": "docs_audit_06_storefront_audit_fe_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_dependencies", + "target": "docs_audit_06_storefront_audit_fe_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_domain", + "target": "docs_audit_06_storefront_audit_fe_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_evidence", + "target": "docs_audit_06_storefront_audit_fe_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_fe_001", + "target": "docs_audit_06_storefront_audit_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_fe_001", + "target": "docs_audit_06_storefront_audit_severity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_fe_001", + "target": "docs_audit_06_storefront_audit_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_fe_001", + "target": "docs_audit_06_storefront_audit_relevant_symbols_or_lines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_fe_001", + "target": "docs_audit_06_storefront_audit_problem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_fe_001", + "target": "docs_audit_06_storefront_audit_root_cause" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_fe_001", + "target": "docs_audit_06_storefront_audit_why_it_matters" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_fe_001", + "target": "docs_audit_06_storefront_audit_user_or_business_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_fe_001", + "target": "docs_audit_06_storefront_audit_technical_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_fe_001", + "target": "docs_audit_06_storefront_audit_security_or_data_integrity_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_fe_001", + "target": "docs_audit_06_storefront_audit_recommended_direction" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_fe_001", + "target": "docs_audit_06_storefront_audit_implementation_complexity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_fe_001", + "target": "docs_audit_06_storefront_audit_risks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_fe_001", + "target": "docs_audit_06_storefront_audit_verification_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_fe_001", + "target": "docs_audit_06_storefront_audit_testing_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_fe_001", + "target": "docs_audit_06_storefront_audit_notes_and_limitations" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_fe_001", + "target": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_finding_summary", + "target": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/06-storefront-audit.md", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_06_storefront_audit_findings", + "target": "docs_audit_06_storefront_audit_react_vite_storefront_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/eslint.config.mjs", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_eslint_config", + "target": "frontend_application_eslint_config_eslintconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/postcss.config.mjs", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_postcss_config", + "target": "frontend_application_postcss_config_config" + }, + { + "relation": "contains", + "_origin": "ast", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/vitest.setup.ts", + "source_location": "L16", + "weight": 1.0, + "source": "frontend_application_vitest_setup", + "target": "frontend_application_vitest_setup_localstoragemock" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/backup_db.sh", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "scripts_backup_db", + "target": "scripts_backup_db_sh__entry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "start.sh", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "start", + "target": "start_sh__entry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit", + "target": "docs_audit_08_admin_features_audit_admin_features_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_acceptance_criteria", + "target": "docs_audit_08_admin_features_audit_adm_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_notes_and_limitations" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_domain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_category" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_severity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_confidence" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_affected_application" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_affected_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_relevant_symbols_or_lines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_evidence" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_problem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_root_cause" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_why_it_matters" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_user_or_business_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_technical_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_security_or_data_integrity_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_recommended_direction" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_alternative_direction" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_implementation_complexity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_risks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_verification_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_testing_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_adm_001", + "target": "docs_audit_08_admin_features_audit_admin_features_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L109", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_admin_features_audit_report", + "target": "docs_audit_08_admin_features_audit_finding_summary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_admin_features_audit_report", + "target": "docs_audit_08_admin_features_audit_completion_statement" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_admin_features_audit_report", + "target": "docs_audit_08_admin_features_audit_domain_overview_confirmed_strengths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/08-admin-features-audit.md", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_08_admin_features_audit_admin_features_audit_report", + "target": "docs_audit_08_admin_features_audit_findings" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L73", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_ts_loader", + "target": "ts_loader" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_ts_loader", + "target": "backend_package_devdependencies" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L23", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_testing_library_jest_dom", + "target": "testing_library_jest_dom" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_testing_library_jest_dom", + "target": "frontend_application_package_devdependencies" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L74", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_ts_node", + "target": "ts_node" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_ts_node", + "target": "backend_package_devdependencies" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L75", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_tsconfig_paths", + "target": "tsconfig_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_tsconfig_paths", + "target": "backend_package_devdependencies" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L53", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_types_bcrypt", + "target": "types_bcrypt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_types_bcrypt", + "target": "backend_package_devdependencies" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L33", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks", + "target": "eslint_plugin_react_hooks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_hooks", + "target": "frontend_admin_panel_package_devdependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit", + "target": "docs_audit_09_database_audit_database_and_data_integrity_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_acceptance_criteria", + "target": "docs_audit_09_database_audit_db_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_affected_application", + "target": "docs_audit_09_database_audit_db_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_affected_files", + "target": "docs_audit_09_database_audit_db_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_alternative_direction", + "target": "docs_audit_09_database_audit_db_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_category", + "target": "docs_audit_09_database_audit_db_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L123", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_completion_statement", + "target": "docs_audit_09_database_audit_database_and_data_integrity_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_confidence", + "target": "docs_audit_09_database_audit_db_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", + "target": "docs_audit_09_database_audit_finding_summary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", + "target": "docs_audit_09_database_audit_domain_overview_confirmed_strengths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", + "target": "docs_audit_09_database_audit_findings" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_database_and_data_integrity_audit_report", + "target": "docs_audit_09_database_audit_db_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L100", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_testing_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_notes_and_limitations" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_domain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_severity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_relevant_symbols_or_lines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_evidence" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_problem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_root_cause" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_why_it_matters" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_user_or_business_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_technical_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_security_or_data_integrity_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_recommended_direction" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_implementation_complexity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_risks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/09-database-audit.md", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_09_database_audit_db_001", + "target": "docs_audit_09_database_audit_verification_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit", + "target": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_acceptance_criteria", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_affected_application", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_affected_files", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_alternative_direction", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_category", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L118", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_completion_statement", + "target": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_confidence", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_dependencies", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_domain", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_domain_overview_confirmed_strengths", + "target": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_evidence", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_finding_summary", + "target": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_findings", + "target": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_implementation_complexity", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_notes_and_limitations", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_problem", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_recommended_direction", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_relevant_symbols_or_lines", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_risks", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_root_cause", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_security_or_data_integrity_impact", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_severity", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_status", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_technical_impact", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_testing_requirements", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_title", + "target": "docs_audit_11_code_quality_audit_ts_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_ts_001", + "target": "docs_audit_11_code_quality_audit_why_it_matters" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_ts_001", + "target": "docs_audit_11_code_quality_audit_user_or_business_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_ts_001", + "target": "docs_audit_11_code_quality_audit_verification_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/11-code-quality-audit.md", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_11_code_quality_audit_ts_001", + "target": "docs_audit_11_code_quality_audit_typescript_and_code_quality_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit", + "target": "docs_audit_12_testing_audit_testing_and_reliability_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_acceptance_criteria", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_affected_application", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_affected_files", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_alternative_direction", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_category", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_completion_statement", + "target": "docs_audit_12_testing_audit_testing_and_reliability_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_confidence", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L90", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_dependencies", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_domain", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_domain_overview_confirmed_strengths", + "target": "docs_audit_12_testing_audit_testing_and_reliability_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_evidence", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_finding_summary", + "target": "docs_audit_12_testing_audit_testing_and_reliability_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_findings", + "target": "docs_audit_12_testing_audit_testing_and_reliability_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_implementation_complexity", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L105", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_notes_and_limitations", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_problem", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L81", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_recommended_direction", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_relevant_symbols_or_lines", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_risks", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_root_cause", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_security_or_data_integrity_impact", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_severity", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_status", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_technical_impact", + "target": "docs_audit_12_testing_audit_test_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_test_001", + "target": "docs_audit_12_testing_audit_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_test_001", + "target": "docs_audit_12_testing_audit_why_it_matters" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_test_001", + "target": "docs_audit_12_testing_audit_user_or_business_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_test_001", + "target": "docs_audit_12_testing_audit_verification_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_test_001", + "target": "docs_audit_12_testing_audit_testing_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/12-testing-audit.md", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_12_testing_audit_test_001", + "target": "docs_audit_12_testing_audit_testing_and_reliability_audit_report" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L34", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh", + "target": "eslint_plugin_react_refresh" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_eslint_plugin_react_refresh", + "target": "frontend_admin_panel_package_devdependencies" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L37", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_tailwindcss", + "target": "frontend_admin_panel_package_json_tailwindcss" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_tailwindcss", + "target": "frontend_admin_panel_package_devdependencies" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L26", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss", + "target": "frontend_admin_panel_package_json_tailwindcss_postcss" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_tailwindcss_postcss", + "target": "frontend_admin_panel_package_devdependencies" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/catalog/CatalogClient.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_catalog_catalogclient", + "target": "frontend_application_lib_data_products_products" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/catalog/CatalogClient.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_catalog_catalogclient", + "target": "frontend_application_components_catalog_flipbookcatalog" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/catalog/CatalogClient.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_catalog_catalogclient", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/catalog/CatalogClient.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_catalog_catalogclient", + "target": "frontend_application_lib_data_products" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/feed.xml/route.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_shop_feed_xml_route", + "target": "frontend_application_lib_data_products_products" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/feed.xml/route.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_shop_feed_xml_route", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/feed.xml/route.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_shop_feed_xml_route", + "target": "frontend_application_lib_data_products" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/feed.xml/route.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_shop_feed_xml_route", + "target": "frontend_application_app_shop_feed_xml_route_dynamic" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/feed.xml/route.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_shop_feed_xml_route", + "target": "frontend_application_app_shop_feed_xml_route_revalidate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_sitemap", + "target": "frontend_application_lib_data_products_products" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_sitemap", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_sitemap", + "target": "frontend_application_lib_data_products" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_sitemap_categories_xml_route", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_sitemap_categories_xml_route", + "target": "frontend_application_app_sitemap_categories_xml_route_dynamic" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_sitemap_categories_xml_route", + "target": "frontend_application_app_sitemap_categories_xml_route_revalidate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap-categories.xml/route.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_sitemap_categories_xml_route", + "target": "frontend_application_app_sitemap_categories_xml_route_default_categories" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap-products.xml/route.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_sitemap_products_xml_route", + "target": "frontend_application_lib_data_products_products" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap-products.xml/route.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_sitemap_products_xml_route", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap-products.xml/route.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_sitemap_products_xml_route", + "target": "frontend_application_lib_data_products" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap-products.xml/route.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_sitemap_products_xml_route", + "target": "frontend_application_app_sitemap_products_xml_route_dynamic" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/sitemap-products.xml/route.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_sitemap_products_xml_route", + "target": "frontend_application_app_sitemap_products_xml_route_revalidate" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_catalogpagespread", + "target": "frontend_application_components_safeimage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/CatalogPageSpread.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_catalogpagespread", + "target": "frontend_application_lib_data_products" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_catalogpagespread", + "target": "frontend_application_components_catalog_flipbookcatalog" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/FlipbookCatalog.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_flipbookcatalog", + "target": "frontend_application_lib_data_products" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ingredientwiki", + "target": "frontend_application_lib_data_products_ingredients_wiki" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ingredientwiki", + "target": "frontend_application_lib_data_products_products" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ingredientwiki", + "target": "frontend_application_app_wiki_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ingredientwiki", + "target": "frontend_application_lib_types" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ingredientwiki", + "target": "frontend_application_lib_data_products" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ingredientwiki", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/IngredientWiki.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ingredientwiki", + "target": "frontend_application_components_ingredientwiki_ingredient_match_keywords" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPage.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products", + "target": "frontend_application_components_blogpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products", + "target": "frontend_application_components_cartdrawer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products", + "target": "frontend_application_components_catalog_productdetailmodal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products", + "target": "frontend_application_components_featuredproducts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products", + "target": "frontend_application_components_petprofile" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SearchResultsPage.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products", + "target": "frontend_application_components_searchresultspage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L402", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products", + "target": "frontend_application_lib_data_products_products" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/data/products.ts", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products", + "target": "frontend_application_lib_data_products_ingredients_wiki" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_products_products", + "target": "frontend_application_lib_services_productservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice", + "target": "frontend_application_app_shop_slug_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPage.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice", + "target": "frontend_application_components_blogpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice", + "target": "frontend_application_components_cartdrawer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice", + "target": "frontend_application_components_featuredproducts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice", + "target": "frontend_application_components_petprofile" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SearchResultsPage.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice", + "target": "frontend_application_components_searchresultspage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice", + "target": "frontend_application_components_tests_cartdrawer_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice", + "target": "frontend_application_components_tests_featuredproducts_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice", + "target": "frontend_application_lib_types" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/productService.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_productservice", + "target": "frontend_application_lib_services_productservice_category_slug_to_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit", + "target": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_acceptance_criteria", + "target": "docs_audit_13_devops_audit_devops_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_affected_application", + "target": "docs_audit_13_devops_audit_devops_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_affected_files", + "target": "docs_audit_13_devops_audit_devops_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L76", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_alternative_direction", + "target": "docs_audit_13_devops_audit_devops_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_category", + "target": "docs_audit_13_devops_audit_devops_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_completion_statement", + "target": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_confidence", + "target": "docs_audit_13_devops_audit_devops_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L82", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_dependencies", + "target": "docs_audit_13_devops_audit_devops_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_domain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_severity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_relevant_symbols_or_lines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_evidence" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_problem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_root_cause" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_why_it_matters" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_user_or_business_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_technical_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_security_or_data_integrity_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_recommended_direction" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_implementation_complexity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L85", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_risks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_verification_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L91", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_testing_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_notes_and_limitations" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_001", + "target": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", + "target": "docs_audit_13_devops_audit_finding_summary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", + "target": "docs_audit_13_devops_audit_domain_overview_confirmed_strengths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/13-devops-audit.md", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_13_devops_audit_devops_and_ci_cd_audit_report", + "target": "docs_audit_13_devops_audit_findings" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L38", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_typescript", + "target": "frontend_admin_panel_package_json_typescript" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_typescript", + "target": "frontend_admin_panel_package_devdependencies" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L55", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_types_compression", + "target": "types_compression" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_types_compression", + "target": "backend_package_devdependencies" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L39", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_typescript_eslint", + "target": "frontend_admin_panel_package_json_typescript_eslint" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_typescript_eslint", + "target": "frontend_admin_panel_package_devdependencies" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L56", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_types_express", + "target": "types_express" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_types_express", + "target": "backend_package_devdependencies" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L57", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_types_jest", + "target": "types_jest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L57", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_types_jest", + "target": "backend_package_devdependencies" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L26", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_types_react", + "target": "frontend_application_package_json_types_react" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_types_react", + "target": "frontend_application_package_devdependencies" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L34", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_vitest", + "target": "vitest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_vitest", + "target": "frontend_application_package_devdependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit", + "target": "docs_audit_14_documentation_audit_documentation_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L95", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_acceptance_criteria", + "target": "docs_audit_14_documentation_audit_doc_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_affected_application", + "target": "docs_audit_14_documentation_audit_doc_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_affected_files", + "target": "docs_audit_14_documentation_audit_doc_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_alternative_direction", + "target": "docs_audit_14_documentation_audit_doc_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_category", + "target": "docs_audit_14_documentation_audit_doc_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_completion_statement", + "target": "docs_audit_14_documentation_audit_documentation_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_confidence", + "target": "docs_audit_14_documentation_audit_doc_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L83", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_dependencies", + "target": "docs_audit_14_documentation_audit_doc_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_domain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_severity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_relevant_symbols_or_lines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_evidence" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_problem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_root_cause" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_why_it_matters" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_user_or_business_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_technical_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_security_or_data_integrity_impact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_recommended_direction" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_implementation_complexity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_risks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L89", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_verification_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_testing_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_notes_and_limitations" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_doc_001", + "target": "docs_audit_14_documentation_audit_documentation_audit_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_documentation_audit_report", + "target": "docs_audit_14_documentation_audit_finding_summary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_documentation_audit_report", + "target": "docs_audit_14_documentation_audit_domain_overview_confirmed_strengths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/14-documentation-audit.md", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_14_documentation_audit_documentation_audit_report", + "target": "docs_audit_14_documentation_audit_findings" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L59", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_types_multer", + "target": "types_multer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L59", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_types_multer", + "target": "backend_package_devdependencies" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L61", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_types_passport_jwt", + "target": "types_passport_jwt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_types_passport_jwt", + "target": "backend_package_devdependencies" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ContactSubmissions.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal", + "target": "frontend_admin_panel_src_pages_contactsubmissions" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal", + "target": "frontend_admin_panel_src_pages_menumanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Tickets.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal", + "target": "frontend_admin_panel_src_pages_tickets" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal", + "target": "frontend_admin_panel_src_pages_users" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Wiki.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal", + "target": "frontend_admin_panel_src_pages_wiki" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/ZibalPortalPage.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal", + "target": "frontend_admin_panel_src_pages_zibalportalpage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Modal.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_modal", + "target": "frontend_admin_panel_src_components_ui_modal_maxwidthclasses" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_contactsubmissions", + "target": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_contactsubmissions", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_menumanager", + "target": "frontend_admin_panel_src_routes_adminroutes_menumanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MenuManager.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_menumanager", + "target": "frontend_admin_panel_src_pages_menumanager_menu_tabs" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_menumanager", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_tickets", + "target": "frontend_admin_panel_src_routes_adminroutes_tickets" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_tickets", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_wiki", + "target": "frontend_admin_panel_src_routes_adminroutes_wiki" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_wiki", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_zibalportalpage", + "target": "frontend_admin_panel_src_routes_adminroutes_zibalportalpage" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_zibalportalpage", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_contactsubmissions", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_menumanager", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_tickets", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_wiki", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes_zibalportalpage", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L33", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_typescript", + "target": "frontend_application_package_json_typescript" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_typescript", + "target": "frontend_application_package_devdependencies" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/App.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_app", + "target": "frontend_admin_panel_src_routes_adminroutes_router" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/App.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_app", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/main.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_app", + "target": "frontend_admin_panel_src_main" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_routeerrorboundary", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_cms", + "target": "frontend_admin_panel_src_routes_adminroutes_cms" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_cms", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_dashboard", + "target": "frontend_admin_panel_src_routes_adminroutes_dashboard" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_dashboard", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_reports", + "target": "frontend_admin_panel_src_routes_adminroutes_reports" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Reports.tsx", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_reports", + "target": "frontend_admin_panel_src_pages_reports_colors" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_reports", + "target": "frontend_admin_panel_src_routes_adminroutes" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_utils_lazywithretry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_routes_adminroutes_dashboard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_routes_adminroutes_users" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_routes_adminroutes_orders" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_routes_adminroutes_reports" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_routes_adminroutes_uitexts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_routes_adminroutes_media" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_routes_adminroutes_cms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_routes_adminroutes_paymentgatewayspage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_routes_adminroutes_shippingsettingspage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_routes_adminroutes_transactions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_routes_adminroutes_doctorsmanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_routes_adminroutes_monitoringpage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_routes_adminroutes_router" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_pages_monitoringpage" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_routes_adminroutes", + "target": "frontend_admin_panel_src_pages_users" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/loading.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_loading", + "target": "frontend_application_components_skeleton" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/loading.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_loading", + "target": "frontend_application_components_skeleton" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/loading.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_shop_loading", + "target": "frontend_application_components_skeleton" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_featuredproducts", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_featuredproducts", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_featuredproducts", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_featuredproducts", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_featuredproducts", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_featuredproducts", + "target": "frontend_application_components_safeimage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/FeaturedProducts.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_featuredproducts", + "target": "frontend_application_components_skeleton" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_featuredproducts", + "target": "frontend_application_components_tests_featuredproducts_test" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_petprofile", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_petprofile", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_petprofile", + "target": "frontend_application_lib_services_api_base_domain" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/profile/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_petprofile", + "target": "frontend_application_app_profile_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_petprofile", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_petprofile", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_petprofile", + "target": "frontend_application_components_orderdetailsmodal" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_petprofile", + "target": "frontend_application_components_skeleton" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PetProfile.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_petprofile", + "target": "frontend_application_components_safeimage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SearchResultsPage.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_searchresultspage", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/search/page.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_searchresultspage", + "target": "frontend_application_app_search_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/SearchResultsPage.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_searchresultspage", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_skeleton", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tests_featuredproducts_test", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tests_featuredproducts_test", + "target": "frontend_application_lib_store_usepetstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tests_featuredproducts_test", + "target": "frontend_application_components_tests_featuredproducts_test_mockproducts" + }, + { + "relation": "contains", + "_origin": "ast", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/components/__tests__/FeaturedProducts.test.tsx", + "source_location": "L35", + "weight": 1.0, + "source": "frontend_application_components_tests_featuredproducts_test", + "target": "frontend_application_components_tests_featuredproducts_test_mockpush" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_usepetstore", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderSuccess.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_usepetstore", + "target": "frontend_application_components_ordersuccess" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_usepetstore", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Header.test.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_usepetstore", + "target": "frontend_application_components_tests_header_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/usePetStore.ts", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_usepetstore", + "target": "frontend_application_lib_store_usepetstore_usepetstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_usepetstore_usepetstore", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderSuccess.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_usepetstore_usepetstore", + "target": "frontend_application_components_ordersuccess" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_usepetstore_usepetstore", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Header.test.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_usepetstore_usepetstore", + "target": "frontend_application_components_tests_header_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_04_setup_and_deployment", + "target": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "docs/README.md", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_04_setup_and_deployment", + "target": "docs_readme" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0628\u06a9_\u0627\u0646\u062f", + "target": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f", + "target": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2", + "target": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0628\u06a9_\u0627\u0646\u062f" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2", + "target": "docs_04_setup_and_deployment_\u0628\u0631\u0627\u06cc_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0641\u0631\u0627\u0646\u062a_\u0627\u0646\u062f_next_js" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_04_setup_and_deployment_\u0627\u062c\u0631\u0627\u06cc_\u067e\u0631\u0648\u0698\u0647_\u062f\u0631_\u0633\u0631\u0648\u0631_\u0628\u0627_pm2", + "target": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_04_setup_and_deployment_\u0628\u06cc\u0644\u062f_\u06a9\u0631\u062f\u0646_\u067e\u0631\u0648\u0698\u0647_building", + "target": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_04_setup_and_deployment_\u0630\u062e\u06cc\u0631\u0647_\u067e\u0631\u0648\u0633\u0647_\u0647\u0627_\u062a\u0627_\u067e\u0633_\u0627\u0632_\u0631\u06cc_\u0627\u0633\u062a\u0627\u0631\u062a_\u0633\u0631\u0648\u0631_\u0642\u0637\u0639_\u0646\u0634\u0648\u0646\u062f", + "target": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", + "target": "docs_04_setup_and_deployment_\u06f2_\u0645\u062d\u06cc\u0637_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_production_deployment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", + "target": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_04_setup_and_deployment_\u0631\u0627\u0647_\u0627\u0646\u062f\u0627\u0632\u06cc_\u0648_\u0627\u0646\u062a\u0634\u0627\u0631_\u0633\u06cc\u0633\u062a\u0645_setup_deployment", + "target": "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_04_setup_and_deployment_\u0646\u0645\u0648\u0646\u0647_\u0641\u0627\u06cc\u0644_\u06a9\u0627\u0646\u0641\u06cc\u06af_nginx", + "target": "docs_04_setup_and_deployment_\u06f3_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_nginx_reverse_proxy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/04-setup-and-deployment.md", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_04_setup_and_deployment_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627", + "target": "docs_04_setup_and_deployment_\u06f1_\u0645\u062d\u06cc\u0637_\u062a\u0648\u0633\u0639\u0647_development_mode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_05_devops_and_monitoring", + "target": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "docs/README.md", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_05_devops_and_monitoring", + "target": "docs_readme" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", + "target": "docs_05_devops_and_monitoring_\u06f2_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0639\u0645\u0644\u06a9\u0631\u062f_pm2_dashboard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", + "target": "docs_05_devops_and_monitoring_\u06f3_\u0628\u0631\u0631\u0633\u06cc_\u0644\u0627\u06af_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645_logs_management" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", + "target": "docs_05_devops_and_monitoring_\u06f4_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_postgresql" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/05-devops-and-monitoring.md", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_05_devops_and_monitoring_\u062f\u0648\u0627\u067e\u0633_\u0648_\u0645\u0627\u0646\u06cc\u062a\u0648\u0631\u06cc\u0646\u06af_\u0633\u06cc\u0633\u062a\u0645_devops_monitoring", + "target": "docs_05_devops_and_monitoring_\u06f1_\u0641\u0631\u0622\u06cc\u0646\u062f_\u0627\u0633\u062a\u0642\u0631\u0627\u0631_\u062e\u0648\u062f\u06a9\u0627\u0631_ci_cd" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/06-testing.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_06_testing", + "target": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "docs/README.md", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_06_testing", + "target": "docs_readme" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/06-testing.md", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", + "target": "docs_06_testing_\u06f2_\u062a\u0633\u062a_\u0647\u0627\u06cc_end_to_end_\u062f\u0631_backend_e2e_testing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/06-testing.md", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", + "target": "docs_06_testing_\u06f3_\u062a\u0633\u062a_\u0647\u0627\u06cc_ui_\u062f\u0631_frontend_component_testing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/06-testing.md", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", + "target": "docs_06_testing_\u06f4_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u062f\u0631_frontend_e2e_frontend_playwright_cypress" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/06-testing.md", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", + "target": "docs_06_testing_\u06f5_\u0686\u06a9_\u0644\u06cc\u0633\u062a_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u062f\u0633\u062a\u06cc_manual_qa_checklist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/06-testing.md", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_06_testing_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u062a\u0633\u062a_\u0633\u06cc\u0633\u062a\u0645_software_testing", + "target": "docs_06_testing_\u06f1_\u062a\u0633\u062a_\u0647\u0627\u06cc_\u0648\u0627\u062d\u062f_\u062f\u0631_backend_unit_testing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/README.md", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_readme", + "target": "docs_readme_\u0641\u0647\u0631\u0633\u062a_\u0645\u0637\u0627\u0644\u0628_table_of_contents" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_transactionreceiptmodal", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_thsort", + "target": "frontend_admin_panel_src_pages_transactions" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_transactions", + "target": "frontend_admin_panel_src_routes_adminroutes_transactions" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_transactions", + "target": "frontend_admin_panel_src_components_ui_badge" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Transactions.tsx", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_transactions", + "target": "frontend_admin_panel_src_utils_usetableparams" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPage.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_blogpage", + "target": "frontend_application_components_safeimage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_blogpostclient", + "target": "frontend_application_app_blog_slug_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPostClient.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_blogpostclient", + "target": "frontend_application_components_safeimage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_blogpreviewsection", + "target": "frontend_application_lib_services_api_base_domain" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_blogpreviewsection", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BlogPreviewSection.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_blogpreviewsection", + "target": "frontend_application_components_safeimage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/catalog/ProductDetailModal.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_catalog_productdetailmodal", + "target": "frontend_application_components_safeimage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderDetailsModal.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_orderdetailsmodal", + "target": "frontend_application_components_safeimage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PodcastPlayerModal.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_podcastplayermodal", + "target": "frontend_application_components_safeimage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PodcastPlayerModal.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_podcastplayermodal", + "target": "frontend_application_components_podcastplayermodal_playback_rates" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_productpage_videomodalplayer", + "target": "frontend_application_components_videomodalplayer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_productpage_videomodalplayer", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage", + "target": "frontend_application_app_wiki_slug_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage", + "target": "frontend_application_components_bannerplacement" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage", + "target": "frontend_application_components_cartdrawer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage", + "target": "frontend_application_components_podcastinlineplayer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L70", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage", + "target": "frontend_application_components_testimonialssection" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage", + "target": "frontend_application_components_vetgallery" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_safeimage", + "target": "frontend_application_components_videospage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/TestimonialsSection.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_testimonialssection", + "target": "frontend_application_lib_services_api_base_domain" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_testimonialssection", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_vetgallery", + "target": "frontend_application_lib_services_videoservice_videoservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_vetgallery", + "target": "frontend_application_app_homeclient" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_vetgallery", + "target": "frontend_application_lib_services_videoservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_vetgallery", + "target": "frontend_application_components_videomodalplayer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VetGallery.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_vetgallery", + "target": "frontend_application_components_vetgallery_fallback_videos" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_videomodalplayer", + "target": "frontend_application_components_videospage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VideoModalPlayer.tsx", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_videomodalplayer", + "target": "frontend_application_components_videomodalplayer_playback_rates" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_videomodalplayer", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_videospage", + "target": "frontend_application_lib_services_videoservice_videoservice" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/VideosPage.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_videospage", + "target": "frontend_application_lib_services_videoservice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/services/videoService.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_videoservice", + "target": "frontend_application_lib_services_videoservice_videoservice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify", + "target": "antigravity_workflows_graphify_graphify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L719", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_for_graphify_add_and_watch", + "target": "antigravity_workflows_graphify_graphify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L707", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_for_graphify_query", + "target": "antigravity_workflows_graphify_graphify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L725", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_for_the_commit_hook_and_native_claude_md_integration", + "target": "antigravity_workflows_graphify_graphify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L701", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_for_update_and_cluster_only", + "target": "antigravity_workflows_graphify_graphify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_graphify", + "target": "antigravity_workflows_graphify_usage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_graphify", + "target": "antigravity_workflows_graphify_what_graphify_is_for" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_graphify", + "target": "antigravity_workflows_graphify_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L681", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_graphify", + "target": "antigravity_workflows_graphify_interpreter_guard_for_subcommands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L731", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_graphify", + "target": "antigravity_workflows_graphify_troubleshooting" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L744", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_graphify", + "target": "antigravity_workflows_graphify_honesty_rules" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_part_a_structural_extraction_for_code_files", + "target": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_part_b_semantic_extraction_parallel_subagents", + "target": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_part_c_merge_ast_semantic_into_final_extraction", + "target": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L733", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_powershell_5_1_vertical_scrolling_stops_working", + "target": "antigravity_workflows_graphify_troubleshooting" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths", + "target": "antigravity_workflows_graphify_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_step_1_ensure_graphify_is_installed", + "target": "antigravity_workflows_graphify_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_step_2_5_video_and_audio_only_if_video_files_detected", + "target": "antigravity_workflows_graphify_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_step_2_detect_files", + "target": "antigravity_workflows_graphify_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_step_3_extract_entities_and_relationships", + "target": "antigravity_workflows_graphify_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L478", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_step_4_5_graph_health_check_read_only_integrity_gate", + "target": "antigravity_workflows_graphify_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_step_4_build_graph_cluster_analyze_generate_outputs", + "target": "antigravity_workflows_graphify_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L504", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_step_5_label_communities", + "target": "antigravity_workflows_graphify_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L553", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_step_6_generate_obsidian_vault_opt_in_html", + "target": "antigravity_workflows_graphify_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L579", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_step_9_save_manifest_update_cost_tracker_clean_up_and_report", + "target": "antigravity_workflows_graphify_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".antigravity/workflows/graphify.md", + "source_location": "L573", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "antigravity_workflows_graphify_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags", + "target": "antigravity_workflows_graphify_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill", + "target": "claude_skills_graphify_skill_graphify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L719", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_for_graphify_add_and_watch", + "target": "claude_skills_graphify_skill_graphify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L707", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_for_graphify_query", + "target": "claude_skills_graphify_skill_graphify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L725", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_for_the_commit_hook_and_native_claude_md_integration", + "target": "claude_skills_graphify_skill_graphify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L701", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_for_update_and_cluster_only", + "target": "claude_skills_graphify_skill_graphify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_graphify", + "target": "claude_skills_graphify_skill_usage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_graphify", + "target": "claude_skills_graphify_skill_what_graphify_is_for" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_graphify", + "target": "claude_skills_graphify_skill_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L681", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_graphify", + "target": "claude_skills_graphify_skill_interpreter_guard_for_subcommands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L731", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_graphify", + "target": "claude_skills_graphify_skill_troubleshooting" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L744", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_graphify", + "target": "claude_skills_graphify_skill_honesty_rules" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_part_a_structural_extraction_for_code_files", + "target": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L218", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_part_b_semantic_extraction_parallel_subagents", + "target": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L381", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_part_c_merge_ast_semantic_into_final_extraction", + "target": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L733", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_powershell_5_1_vertical_scrolling_stops_working", + "target": "claude_skills_graphify_skill_troubleshooting" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_step_0_github_repos_and_multi_path_merge_only_if_a_url_or_several_paths", + "target": "claude_skills_graphify_skill_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_step_1_ensure_graphify_is_installed", + "target": "claude_skills_graphify_skill_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L169", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_step_2_5_video_and_audio_only_if_video_files_detected", + "target": "claude_skills_graphify_skill_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L129", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_step_2_detect_files", + "target": "claude_skills_graphify_skill_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_step_3_extract_entities_and_relationships", + "target": "claude_skills_graphify_skill_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L478", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_step_4_5_graph_health_check_read_only_integrity_gate", + "target": "claude_skills_graphify_skill_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L415", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_step_4_build_graph_cluster_analyze_generate_outputs", + "target": "claude_skills_graphify_skill_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L504", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_step_5_label_communities", + "target": "claude_skills_graphify_skill_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L553", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_step_6_generate_obsidian_vault_opt_in_html", + "target": "claude_skills_graphify_skill_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L579", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_step_9_save_manifest_update_cost_tracker_clean_up_and_report", + "target": "claude_skills_graphify_skill_what_you_must_do_when_invoked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/skills/graphify/SKILL.md", + "source_location": "L573", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "claude_skills_graphify_skill_steps_6b_8_wiki_neo4j_falkordb_svg_graphml_mcp_benchmark_only_on_their_flags", + "target": "claude_skills_graphify_skill_what_you_must_do_when_invoked" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.controller.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_controller", + "target": "backend_src_home_home_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_controller", + "target": "backend_src_home_home_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/home/home.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_home_home_module", + "target": "backend_src_home_home_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/checkout/success/[id]/page.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_checkout_success_id_page", + "target": "frontend_application_components_ordersuccess" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/ClientLayout.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_clientlayout_cartdrawer", + "target": "frontend_application_components_cartdrawer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_cartdrawer", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/CartDrawer.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_cartdrawer", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_cartdrawer", + "target": "frontend_application_components_tests_cartdrawer_test" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderSuccess.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ordersuccess", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderSuccess.tsx", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ordersuccess", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderTracking.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ordertracking", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ordertracking", + "target": "frontend_application_app_track_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/OrderTracking.tsx", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_ordertracking", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tests_cartdrawer_test", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tests_cartdrawer_test", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/CartDrawer.test.tsx", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tests_cartdrawer_test", + "target": "frontend_application_components_tests_cartdrawer_test_mockproduct" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Header.test.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tests_header_test", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Header.test.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tests_header_test", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_orderservice", + "target": "frontend_application_lib_store_cartstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_services_orderservice", + "target": "frontend_application_lib_store_tests_cartstore_test" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_cartstore", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_cartstore", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_cartstore", + "target": "frontend_application_lib_store_tests_cartstore_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/cartStore.ts", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_cartstore", + "target": "frontend_application_lib_store_cartstore_usecartstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_cartstore_usecartstore", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_cartstore_usecartstore", + "target": "frontend_application_components_productpage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_cartstore_usecartstore", + "target": "frontend_application_lib_store_tests_cartstore_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/store/__tests__/cartStore.test.ts", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_store_tests_cartstore_test", + "target": "frontend_application_lib_store_tests_cartstore_test_mockproduct" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies", + "target": "frontend_admin_panel_package_devdependencies_eslint_js" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies", + "target": "frontend_admin_panel_package_devdependencies_types_node" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies", + "target": "frontend_admin_panel_package_devdependencies_types_react" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies", + "target": "frontend_admin_panel_package_devdependencies_types_react_dom" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies", + "target": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies", + "target": "frontend_admin_panel_package_devdependencies_autoprefixer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies", + "target": "frontend_admin_panel_package_devdependencies_eslint" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies", + "target": "frontend_admin_panel_package_devdependencies_globals" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies", + "target": "frontend_admin_panel_package_devdependencies_postcss" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L31", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_autoprefixer", + "target": "autoprefixer" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L32", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_eslint", + "target": "frontend_admin_panel_package_json_eslint" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L25", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_eslint_js", + "target": "frontend_admin_panel_package_json_eslint_js" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_globals", + "target": "frontend_admin_panel_package_json_globals" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L36", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_postcss", + "target": "postcss" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L27", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_types_node", + "target": "frontend_admin_panel_package_json_types_node" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L28", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_types_react", + "target": "frontend_admin_panel_package_json_types_react" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L29", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_types_react_dom", + "target": "frontend_admin_panel_package_json_types_react_dom" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L30", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_devdependencies_vitejs_plugin_react", + "target": "frontend_admin_panel_package_json_vitejs_plugin_react" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller", + "target": "backend_src_cms_cms_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_controller", + "target": "backend_src_cms_dto_cms_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/cms/cms.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_cms_cms_service", + "target": "backend_src_cms_dto_cms_dto" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies", + "target": "frontend_application_package_devdependencies_tailwindcss_postcss" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies", + "target": "frontend_application_package_devdependencies_types_node" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies", + "target": "frontend_application_package_devdependencies_vitejs_plugin_react" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies", + "target": "frontend_application_package_devdependencies_eslint" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies", + "target": "frontend_application_package_devdependencies_eslint_config_next" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies", + "target": "frontend_application_package_devdependencies_jsdom" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies", + "target": "frontend_application_package_devdependencies_tailwindcss" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L29", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_eslint", + "target": "frontend_application_package_json_eslint" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L30", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_eslint_config_next", + "target": "eslint_config_next" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L31", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_jsdom", + "target": "jsdom" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L32", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_tailwindcss", + "target": "frontend_application_package_json_tailwindcss" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L22", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_tailwindcss_postcss", + "target": "frontend_application_package_json_tailwindcss_postcss" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L25", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_types_node", + "target": "frontend_application_package_json_types_node" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L28", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_devdependencies_vitejs_plugin_react", + "target": "frontend_application_package_json_vitejs_plugin_react" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.module.ts", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_constants", + "target": "backend_src_auth_auth_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/jwt.strategy.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_constants", + "target": "backend_src_auth_jwt_strategy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.constants.ts", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_constants", + "target": "backend_src_auth_auth_constants_default_jwt_secret" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.constants.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_constants", + "target": "backend_src_auth_auth_constants_default_jwt_refresh_secret" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.module.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_module", + "target": "backend_src_auth_jwt_strategy" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/auth/auth.module.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_auth_auth_module", + "target": "backend_src_users_users_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_address_dto", + "target": "backend_src_users_users_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_dto_update_profile_dto", + "target": "backend_src_users_users_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.controller.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller", + "target": "backend_src_users_users_controller_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/users/users.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_users_users_controller", + "target": "backend_src_users_users_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_iconpickermodal", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/IconPickerModal.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_iconpickermodal", + "target": "frontend_admin_panel_src_components_ui_iconpickermodal_icon_registry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_iconpickermodal_icon_registry", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_richtexteditor", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_richtexteditor", + "target": "frontend_admin_panel_src_components_ui_richtexteditor_preset_colors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/RichTextEditor.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_richtexteditor", + "target": "frontend_admin_panel_src_components_ui_richtexteditor_preset_bg_colors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_toggleswitch", + "target": "frontend_admin_panel_src_pages_uitexts" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_uitexts", + "target": "frontend_admin_panel_src_routes_adminroutes_uitexts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_uitexts", + "target": "frontend_admin_panel_src_components_ui_imagepreviewmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L200", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_uitexts", + "target": "frontend_admin_panel_src_pages_uitexts_v1_group_page_map" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L273", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_uitexts", + "target": "frontend_admin_panel_src_pages_uitexts_site_pages" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_uitexts", + "target": "frontend_admin_panel_src_pages_uitexts_v1_page_tabs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_uitexts", + "target": "frontend_admin_panel_src_pages_uitexts_v1_groups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L650", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_uitexts", + "target": "frontend_admin_panel_src_pages_uitexts_shared_header_fields" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/UITexts.tsx", + "source_location": "L664", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_uitexts", + "target": "frontend_admin_panel_src_pages_uitexts_shared_footer_fields" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_badge", + "target": "frontend_admin_panel_src_pages_monitoringpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_badge", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/components/ui/Badge.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_badge", + "target": "frontend_admin_panel_src_components_ui_badge_variantstyles" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/MonitoringPage.tsx", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_skeleton", + "target": "frontend_admin_panel_src_pages_monitoringpage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_skeleton", + "target": "frontend_admin_panel_src_pages_orders" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Users.tsx", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_skeleton", + "target": "frontend_admin_panel_src_pages_users" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L47", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_monitoringpage", + "target": "frontend_admin_panel_src_routes_adminroutes_monitoringpage" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_orders", + "target": "frontend_admin_panel_src_routes_adminroutes_orders" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Orders.tsx", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_orders", + "target": "frontend_admin_panel_src_pages_orders_order_status_map" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_users", + "target": "frontend_admin_panel_src_routes_adminroutes_users" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content", + "target": "ai_agency_agents_12_seo_content_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L101", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_create_mode_normal_operation", + "target": "ai_agency_agents_12_seo_content_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_expected_json_output_schema", + "target": "ai_agency_agents_12_seo_content_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L238", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_file_scope_boundary", + "target": "ai_agency_agents_12_seo_content_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L231", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_forbidden_actions", + "target": "ai_agency_agents_12_seo_content_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_mode_1_review_called_during_review_phase", + "target": "ai_agency_agents_12_seo_content_operating_modes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L166", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", + "target": "ai_agency_agents_12_seo_content_step_1_gather_resources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L179", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", + "target": "ai_agency_agents_12_seo_content_step_2_seo_strategy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L188", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", + "target": "ai_agency_agents_12_seo_content_step_3_content_hierarchy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L199", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", + "target": "ai_agency_agents_12_seo_content_step_4_structured_data_json_ld" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L211", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", + "target": "ai_agency_agents_12_seo_content_step_5_real_content_writing_standards" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", + "target": "ai_agency_agents_12_seo_content_step_6_image_alt_text" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_mode_2_content_creation_standalone_task_from_backlog", + "target": "ai_agency_agents_12_seo_content_operating_modes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_operating_modes", + "target": "ai_agency_agents_12_seo_content_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L229", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_operational_rules_boundaries", + "target": "ai_agency_agents_12_seo_content_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_output", + "target": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L244", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_required_output_artifacts", + "target": "ai_agency_agents_12_seo_content_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", + "target": "ai_agency_agents_12_seo_content_your_domain_what_you_review_only_these_areas" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", + "target": "ai_agency_agents_12_seo_content_what_you_do_not_review" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", + "target": "ai_agency_agents_12_seo_content_what_you_look_for_seo_expert_eyes_only" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_review_mode_called_during_review_phase", + "target": "ai_agency_agents_12_seo_content_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/12_seo_content.md", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_12_seo_content_role_core_objective", + "target": "ai_agency_agents_12_seo_content_strict_input_specifications_what_files_to_read" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig", + "target": "backend_tsconfig_compileroptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig", + "target": "backend_tsconfig_include" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig", + "target": "backend_tsconfig_exclude" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_emitdecoratormetadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_experimentaldecorators" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_target" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_sourcemap" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_outdir" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_rootdir" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_baseurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_incremental" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_skiplibcheck" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_strictnullchecks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_noimplicitany" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_strictbindcallapply" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_moduleresolution" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_resolvepackagejsonexports" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_esmoduleinterop" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_isolatedmodules" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_declaration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_removecomments" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_exclude", + "target": "backend_tsconfig_json_ref_dist" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_exclude", + "target": "backend_tsconfig_json_ref_node_modules" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_exclude", + "target": "backend_tsconfig_json_ref_prisma" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L27", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_exclude", + "target": "ref_scripts" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L26", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_tsconfig_include", + "target": "backend_tsconfig_json_ref_src" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto", + "target": "backend_src_tickets_tickets_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_create_ticket_dto", + "target": "backend_src_tickets_tickets_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_ticket_query_dto", + "target": "backend_src_tickets_tickets_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.service.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_dto_ticket_query_dto", + "target": "backend_src_tickets_tickets_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.controller.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller", + "target": "backend_src_tickets_tickets_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_controller", + "target": "backend_src_tickets_tickets_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/tickets/tickets.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_tickets_tickets_module", + "target": "backend_src_tickets_tickets_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_nestjs_common" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_nestjs_core" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_nestjs_jwt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_nestjs_passport" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L29", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_nestjs_platform_express" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_nestjs_swagger" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_nestjs_throttler" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_prisma_client" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_bcrypt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_bcryptjs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_class_transformer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L36", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_class_validator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_compression" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_helmet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L39", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_ioredis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L40", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_js_yaml" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_passport" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L42", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_passport_jwt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_reflect_metadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L44", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_rxjs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_swagger_ui_express" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L33", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_bcrypt", + "target": "bcrypt" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L34", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_bcryptjs", + "target": "bcryptjs" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L35", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_class_transformer", + "target": "class_transformer" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L36", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_class_validator", + "target": "class_validator" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L37", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_compression", + "target": "compression" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L38", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_helmet", + "target": "helmet" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L39", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_ioredis", + "target": "ioredis" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L40", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_js_yaml", + "target": "js_yaml" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L25", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_nestjs_common", + "target": "nestjs_common" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L26", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_nestjs_core", + "target": "nestjs_core" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L27", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_nestjs_jwt", + "target": "nestjs_jwt" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L28", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_nestjs_passport", + "target": "nestjs_passport" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L29", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_nestjs_platform_express", + "target": "nestjs_platform_express" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L30", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_nestjs_swagger", + "target": "nestjs_swagger" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L31", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_nestjs_throttler", + "target": "nestjs_throttler" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L41", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_passport", + "target": "passport" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L42", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_passport_jwt", + "target": "passport_jwt" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L32", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_prisma_client", + "target": "prisma_client" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L43", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_reflect_metadata", + "target": "reflect_metadata" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L44", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_rxjs", + "target": "rxjs" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L45", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_dependencies_swagger_ui_express", + "target": "swagger_ui_express" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node", + "target": "frontend_admin_panel_tsconfig_node_compileroptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node", + "target": "frontend_admin_panel_tsconfig_node_include" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_compileroptions", + "target": "frontend_admin_panel_tsconfig_node_compileroptions_moduleresolution" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_compileroptions", + "target": "frontend_admin_panel_tsconfig_node_compileroptions_allowimportingtsextensions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_compileroptions", + "target": "frontend_admin_panel_tsconfig_node_compileroptions_verbatimmodulesyntax" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_compileroptions", + "target": "frontend_admin_panel_tsconfig_node_compileroptions_moduledetection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_compileroptions", + "target": "frontend_admin_panel_tsconfig_node_compileroptions_noemit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_compileroptions", + "target": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedlocals" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_compileroptions", + "target": "frontend_admin_panel_tsconfig_node_compileroptions_nounusedparameters" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_compileroptions", + "target": "frontend_admin_panel_tsconfig_node_compileroptions_erasablesyntaxonly" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_compileroptions", + "target": "frontend_admin_panel_tsconfig_node_compileroptions_nofallthroughcasesinswitch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_compileroptions", + "target": "frontend_admin_panel_tsconfig_node_compileroptions_tsbuildinfofile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_compileroptions", + "target": "frontend_admin_panel_tsconfig_node_compileroptions_target" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_compileroptions", + "target": "frontend_admin_panel_tsconfig_node_compileroptions_lib" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_compileroptions", + "target": "frontend_admin_panel_tsconfig_node_compileroptions_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_compileroptions", + "target": "frontend_admin_panel_tsconfig_node_compileroptions_types" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_compileroptions", + "target": "frontend_admin_panel_tsconfig_node_compileroptions_skiplibcheck" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L5", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_compileroptions_lib", + "target": "frontend_admin_panel_tsconfig_node_json_ref_es2023" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_compileroptions_types", + "target": "frontend_admin_panel_tsconfig_node_json_ref_node" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.node.json", + "source_location": "L23", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_node_include", + "target": "ref_vite_config_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/Media.tsx", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_imagepreviewmodal", + "target": "frontend_admin_panel_src_pages_media" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/pages/PrescriptionsManager.tsx", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_components_ui_imagepreviewmodal", + "target": "frontend_admin_panel_src_pages_prescriptionsmanager" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_media", + "target": "frontend_admin_panel_src_routes_adminroutes_media" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/src/routes/adminRoutes.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_src_pages_prescriptionsmanager", + "target": "frontend_admin_panel_src_routes_adminroutes_prescriptionsmanager" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.controller.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller", + "target": "backend_src_wiki_wiki_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_controller", + "target": "backend_src_wiki_wiki_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/wiki/wiki.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_wiki_wiki_module", + "target": "backend_src_wiki_wiki_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/pets.controller.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_controller", + "target": "backend_src_admin_pets_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_pets_service", + "target": "backend_src_admin_admin_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration", + "target": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L111", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration", + "target": "backend_prisma_migrations_20260526145407_init_migration_reminders" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration", + "target": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration", + "target": "backend_prisma_migrations_20260526145407_init_migration_health_logs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration", + "target": "backend_prisma_migrations_20260526145407_init_migration_coupons" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L159", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration", + "target": "backend_prisma_migrations_20260526145407_init_migration_orders" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L173", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration", + "target": "backend_prisma_migrations_20260526145407_init_migration_order_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration", + "target": "backend_prisma_migrations_20260526145407_init_migration_user_addresses" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration", + "target": "backend_prisma_migrations_20260526145407_init_migration_users" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L35", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration", + "target": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L49", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration", + "target": "backend_prisma_migrations_20260526145407_init_migration_products" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration", + "target": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration", + "target": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L87", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration", + "target": "backend_prisma_migrations_20260526145407_init_migration_pets" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L254", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration_coupons", + "target": "backend_prisma_migrations_20260526145407_init_migration_orders" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L248", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration_health_logs", + "target": "backend_prisma_migrations_20260526145407_init_migration_pets" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L257", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration_order_items", + "target": "backend_prisma_migrations_20260526145407_init_migration_orders" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L260", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration_order_items", + "target": "backend_prisma_migrations_20260526145407_init_migration_products" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L251", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration_orders", + "target": "backend_prisma_migrations_20260526145407_init_migration_users" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L236", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration_pet_medical_conditions", + "target": "backend_prisma_migrations_20260526145407_init_migration_pets" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L233", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration_pets", + "target": "backend_prisma_migrations_20260526145407_init_migration_users" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration_pets", + "target": "backend_prisma_migrations_20260526145407_init_migration_reminders" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L227", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration_product_ingredients", + "target": "backend_prisma_migrations_20260526145407_init_migration_products" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L230", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration_product_symptoms", + "target": "backend_prisma_migrations_20260526145407_init_migration_products" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L242", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration_products", + "target": "backend_prisma_migrations_20260526145407_init_migration_reminders" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L245", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration_reminder_completions", + "target": "backend_prisma_migrations_20260526145407_init_migration_reminders" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L221", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration_user_addresses", + "target": "backend_prisma_migrations_20260526145407_init_migration_users" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/migrations/20260526145407_init/migration.sql", + "source_location": "L224", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_migrations_20260526145407_init_migration_users", + "target": "backend_prisma_migrations_20260526145407_init_migration_wallet_transactions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure", + "target": "docs_audit_31_module_audit_closure_module_audit_closure_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L88", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_10_orders_backend", + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L96", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_11_settings_administrative_backend", + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_12_prisma_schema_migrations_seed", + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_13_redis_temporary_auth_state", + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L122", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_14_unit_e2e_tests", + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_15_docker_nginx_prometheus_deployment_config", + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L139", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_16_documentation_openapi_artifacts", + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_1_storefront_shell_routing", + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_2_authentication_ui_stores_api_clients", + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_3_cart_checkout_order_wallet_payment_ui", + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L37", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_4_product_pet_scientific_term_settings_ui", + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L46", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_5_nestjs_bootstrap_shared_infrastructure", + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L55", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_6_authentication_authorization_backend", + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_7_users_addresses_backend", + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_8_pets_backend", + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_9_products_backend", + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_conclusion", + "target": "docs_audit_31_module_audit_closure_module_audit_closure_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/31-module-audit-closure.md", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_31_module_audit_closure_module_audit_closure_report", + "target": "docs_audit_31_module_audit_closure_required_review_group_closures" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/dto/update-pet.dto.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_pet_dto", + "target": "backend_src_pets_dto_update_pet_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_pet_dto", + "target": "backend_src_pets_pets_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_create_pet_dto", + "target": "backend_src_pets_pets_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_update_pet_dto", + "target": "backend_src_pets_pets_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.service.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_dto_update_pet_dto", + "target": "backend_src_pets_pets_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller", + "target": "backend_src_pets_pets_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller", + "target": "backend_src_pets_dto_create_reminder_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.ts", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller", + "target": "backend_src_pets_dto_create_health_log_dto" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.spec.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller", + "target": "backend_src_pets_pets_controller_spec" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller", + "target": "backend_src_pets_pets_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.controller.spec.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_controller_spec", + "target": "backend_src_pets_pets_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/pets/pets.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_pets_pets_module", + "target": "backend_src_pets_pets_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app", + "target": "frontend_admin_panel_tsconfig_app_compileroptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app", + "target": "frontend_admin_panel_tsconfig_app_include" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions", + "target": "frontend_admin_panel_tsconfig_app_compileroptions_moduleresolution" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions", + "target": "frontend_admin_panel_tsconfig_app_compileroptions_allowimportingtsextensions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions", + "target": "frontend_admin_panel_tsconfig_app_compileroptions_verbatimmodulesyntax" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions", + "target": "frontend_admin_panel_tsconfig_app_compileroptions_moduledetection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions", + "target": "frontend_admin_panel_tsconfig_app_compileroptions_noemit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions", + "target": "frontend_admin_panel_tsconfig_app_compileroptions_jsx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions", + "target": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedlocals" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions", + "target": "frontend_admin_panel_tsconfig_app_compileroptions_nounusedparameters" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions", + "target": "frontend_admin_panel_tsconfig_app_compileroptions_erasablesyntaxonly" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions", + "target": "frontend_admin_panel_tsconfig_app_compileroptions_nofallthroughcasesinswitch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions", + "target": "frontend_admin_panel_tsconfig_app_compileroptions_tsbuildinfofile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions", + "target": "frontend_admin_panel_tsconfig_app_compileroptions_target" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions", + "target": "frontend_admin_panel_tsconfig_app_compileroptions_lib" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions", + "target": "frontend_admin_panel_tsconfig_app_compileroptions_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions", + "target": "frontend_admin_panel_tsconfig_app_compileroptions_types" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions", + "target": "frontend_admin_panel_tsconfig_app_compileroptions_skiplibcheck" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L5", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions_lib", + "target": "frontend_admin_panel_tsconfig_app_json_ref_dom" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L5", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions_lib", + "target": "frontend_admin_panel_tsconfig_app_json_ref_dom_iterable" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L5", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions_lib", + "target": "frontend_admin_panel_tsconfig_app_json_ref_es2023" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_compileroptions_types", + "target": "ref_vite_client" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/tsconfig.app.json", + "source_location": "L24", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_tsconfig_app_include", + "target": "frontend_admin_panel_tsconfig_app_json_ref_src" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/about/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_about_page", + "target": "frontend_application_lib_seo" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/checkout/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_checkout_page", + "target": "frontend_application_lib_seo" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/dashboard/page.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_dashboard_page", + "target": "frontend_application_lib_seo" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/privacy/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_privacy_page", + "target": "frontend_application_lib_seo" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/profile/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_profile_page", + "target": "frontend_application_lib_seo" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/search/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_search_page", + "target": "frontend_application_lib_seo" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_shop_page", + "target": "frontend_application_components_archivepage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_shop_page", + "target": "frontend_application_lib_seo" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/track/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_track_page", + "target": "frontend_application_lib_seo" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/trust-seals/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_trust_seals_page", + "target": "frontend_application_lib_seo" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/page.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_wiki_page", + "target": "frontend_application_lib_seo" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/b2b/page.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo", + "target": "frontend_application_app_b2b_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo", + "target": "frontend_application_app_blog_slug_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo", + "target": "frontend_application_app_contact_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo", + "target": "frontend_application_app_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo", + "target": "frontend_application_app_shop_slug_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo", + "target": "frontend_application_app_wiki_slug_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/seo.ts", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_seo", + "target": "frontend_application_lib_seo_default_seo_config" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend", + "target": "ai_agency_agents_06_dev_frontend_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L119", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend_1_always_read_tech_stack_first", + "target": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend_2_sub_step_execution_token_resume_support", + "target": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L141", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend_3_api_mocking_requirement", + "target": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend_4_modular_component_architecture", + "target": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L157", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend_5_responsive_design_mandatory", + "target": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L163", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend_6_file_scope_boundary", + "target": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L167", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend_7_forbidden_actions", + "target": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L187", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend_expected_json_output_schema", + "target": "ai_agency_agents_06_dev_frontend_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend_implement_mode_normal_operation", + "target": "ai_agency_agents_06_dev_frontend_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L117", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend_operational_rules_boundaries", + "target": "ai_agency_agents_06_dev_frontend_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend_output", + "target": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L175", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend_required_output_artifacts_what_files_to_write_update", + "target": "ai_agency_agents_06_dev_frontend_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", + "target": "ai_agency_agents_06_dev_frontend_your_domain_what_you_review_only_these_areas" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", + "target": "ai_agency_agents_06_dev_frontend_what_you_do_not_review" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", + "target": "ai_agency_agents_06_dev_frontend_what_you_look_for_frontend_expert_eyes_only" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend_review_mode_called_during_review_phase", + "target": "ai_agency_agents_06_dev_frontend_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/06_dev_frontend.md", + "source_location": "L107", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_06_dev_frontend_role_core_objective", + "target": "ai_agency_agents_06_dev_frontend_strict_input_specifications_what_files_to_read" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa", + "target": "ai_agency_agents_08_visual_qa_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L115", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa_1_framework_aware_analysis", + "target": "ai_agency_agents_08_visual_qa_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa_2_dom_semantic_structure_analysis", + "target": "ai_agency_agents_08_visual_qa_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa_3_accessibility_compliance", + "target": "ai_agency_agents_08_visual_qa_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L143", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa_4_responsive_layout_verification", + "target": "ai_agency_agents_08_visual_qa_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L155", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa_5_fallback_inspection_mode", + "target": "ai_agency_agents_08_visual_qa_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L162", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa_6_defect_routing_protocol", + "target": "ai_agency_agents_08_visual_qa_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L174", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa_7_forbidden_actions", + "target": "ai_agency_agents_08_visual_qa_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L190", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa_expected_json_output_schema", + "target": "ai_agency_agents_08_visual_qa_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L99", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa_inspect_mode_normal_operation_post_task_verification", + "target": "ai_agency_agents_08_visual_qa_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L113", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa_operational_rules_boundaries", + "target": "ai_agency_agents_08_visual_qa_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa_output", + "target": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa_required_output_artifacts_what_files_to_write_update", + "target": "ai_agency_agents_08_visual_qa_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", + "target": "ai_agency_agents_08_visual_qa_your_domain_what_you_review_only_these_areas" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L24", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", + "target": "ai_agency_agents_08_visual_qa_what_you_do_not_review" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L27", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", + "target": "ai_agency_agents_08_visual_qa_what_you_look_for_ux_expert_eyes_only" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa_review_mode_called_during_review_phase", + "target": "ai_agency_agents_08_visual_qa_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/08_visual_qa.md", + "source_location": "L103", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_08_visual_qa_role_core_objective", + "target": "ai_agency_agents_08_visual_qa_strict_input_specifications_what_files_to_read" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.controller.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_controller", + "target": "backend_src_seo_seo_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.module.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_controller", + "target": "backend_src_seo_seo_module" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/seo/seo.module.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_seo_seo_module", + "target": "backend_src_seo_seo_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/rss.xml/route.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_rss_xml_route", + "target": "frontend_application_app_blog_rss_xml_route_dynamic" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agency", + "target": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agency_activation", + "target": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L239", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agency_agent_directory_reference", + "target": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", + "target": "ai_agency_agency_pipeline_c_add_specific_feature_add_feature" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", + "target": "ai_agency_agency_pipeline_d_content_seo_only_content_creation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L144", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", + "target": "ai_agency_agency_task_execution_loop_all_pipelines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L182", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", + "target": "ai_agency_agency_state_machine_active_agent_tracking" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L192", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", + "target": "ai_agency_agency_state_json_template_full_schema_v3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", + "target": "ai_agency_agency_step_1_detect_project_intent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L259", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", + "target": "ai_agency_agency_real_data_policy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", + "target": "ai_agency_agency_your_identity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", + "target": "ai_agency_agency_step_2_token_limit_context_resume_protocol_critical" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L67", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", + "target": "ai_agency_agency_pipeline_a_new_project_greenfield" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L75", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agency_ai_software_agency_master_orchestration_protocol_v3", + "target": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L79", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agency_phase_1_specialist_review_all_agents_read_none_write_code_yet", + "target": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L104", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agency_phase_2_master_synthesis_02_product_manager_in_synthesis_mode", + "target": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/AGENCY.md", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agency_phase_3_execution_same_as_always", + "target": "ai_agency_agency_pipeline_b_review_improve_existing_project_review_and_plan" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_module", + "target": "backend_src_admin_wiki_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_module", + "target": "backend_src_admin_wiki_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_module", + "target": "backend_src_admin_ssl_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_module", + "target": "backend_src_admin_reports_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_module", + "target": "backend_src_admin_reports_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_module", + "target": "backend_src_admin_media_controller" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/admin.module.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_admin_module", + "target": "backend_src_admin_media_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/media.controller.ts", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_media_controller", + "target": "backend_src_admin_media_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/reports.controller.ts", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_reports_controller", + "target": "backend_src_admin_reports_service" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/admin/wiki.controller.ts", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_admin_wiki_controller", + "target": "backend_src_admin_wiki_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_03_product_manager", + "target": "ai_agency_agents_03_product_manager_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L86", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_03_product_manager_1_hierarchical_decomposition_algorithm_3_tier", + "target": "ai_agency_agents_03_product_manager_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_03_product_manager_2_sub_step_definition_required_for_all_tasks", + "target": "ai_agency_agents_03_product_manager_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_03_product_manager_3_brownfield_completeness_rule", + "target": "ai_agency_agents_03_product_manager_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L116", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_03_product_manager_4_role_assignment_rules", + "target": "ai_agency_agents_03_product_manager_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L126", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_03_product_manager_5_dependency_tracking_strict", + "target": "ai_agency_agents_03_product_manager_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L132", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_03_product_manager_6_priority_assignment", + "target": "ai_agency_agents_03_product_manager_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L140", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_03_product_manager_7_forbidden_actions", + "target": "ai_agency_agents_03_product_manager_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_03_product_manager_decompose_mode_normal_operation_new_projects", + "target": "ai_agency_agents_03_product_manager_strict_input_specifications_what_files_to_read" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_03_product_manager_decompose_mode_normal_operation_new_projects", + "target": "ai_agency_agents_03_product_manager_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L194", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_03_product_manager_expected_json_output_schema", + "target": "ai_agency_agents_03_product_manager_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L84", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_03_product_manager_operational_rules_boundaries", + "target": "ai_agency_agents_03_product_manager_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_03_product_manager_output_of_synthesis_mode", + "target": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L149", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_03_product_manager_required_output_artifacts_what_files_to_write_update", + "target": "ai_agency_agents_03_product_manager_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_03_product_manager_role_core_objective", + "target": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", + "target": "ai_agency_agents_03_product_manager_what_you_read_all_of_these_the_full_picture" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/03_product_manager.md", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_03_product_manager_synthesis_mode_called_after_review_phase_completes", + "target": "ai_agency_agents_03_product_manager_synthesis_rules" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_05_dev_backend", + "target": "ai_agency_agents_05_dev_backend_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L110", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_05_dev_backend_1_always_read_tech_stack_first", + "target": "ai_agency_agents_05_dev_backend_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L121", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_05_dev_backend_2_sub_step_execution_token_resume_support", + "target": "ai_agency_agents_05_dev_backend_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L131", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_05_dev_backend_3_mandatory_test_authoring", + "target": "ai_agency_agents_05_dev_backend_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_05_dev_backend_4_code_quality_standards", + "target": "ai_agency_agents_05_dev_backend_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L146", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_05_dev_backend_5_file_scope_boundary", + "target": "ai_agency_agents_05_dev_backend_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L151", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_05_dev_backend_6_forbidden_actions", + "target": "ai_agency_agents_05_dev_backend_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L172", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_05_dev_backend_expected_json_output_schema", + "target": "ai_agency_agents_05_dev_backend_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L94", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_05_dev_backend_implement_mode_normal_operation", + "target": "ai_agency_agents_05_dev_backend_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_05_dev_backend_operational_rules_boundaries", + "target": "ai_agency_agents_05_dev_backend_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L60", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_05_dev_backend_output", + "target": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L160", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_05_dev_backend_required_output_artifacts_what_files_to_write_update", + "target": "ai_agency_agents_05_dev_backend_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", + "target": "ai_agency_agents_05_dev_backend_your_domain_what_you_review_only_these_areas" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", + "target": "ai_agency_agents_05_dev_backend_what_you_do_not_review" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", + "target": "ai_agency_agents_05_dev_backend_what_you_look_for_backend_expert_eyes_only" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_05_dev_backend_review_mode_called_during_review_phase", + "target": "ai_agency_agents_05_dev_backend_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/05_dev_backend.md", + "source_location": "L98", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_05_dev_backend_role_core_objective", + "target": "ai_agency_agents_05_dev_backend_strict_input_specifications_what_files_to_read" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package", + "target": "package_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package", + "target": "package_devdependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package", + "target": "package_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package", + "target": "package_private" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package", + "target": "package_scripts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_playwright_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_concurrently" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_devdependencies", + "target": "package_devdependencies_dotenv" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L18", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_devdependencies_concurrently", + "target": "concurrently" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L23", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_devdependencies_dotenv", + "target": "dotenv" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L21", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_devdependencies_playwright_test", + "target": "playwright_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_scripts", + "target": "package_scripts_dev" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_scripts", + "target": "package_scripts_build_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_scripts", + "target": "package_scripts_build_frontend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_scripts", + "target": "package_scripts_build_admin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_scripts", + "target": "package_scripts_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_scripts", + "target": "package_scripts_start" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_scripts", + "target": "package_scripts_test_e2e" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_scripts", + "target": "package_scripts_test_e2e_ui" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_scripts", + "target": "package_scripts_test_e2e_report" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_scripts", + "target": "package_scripts_install_all" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_scripts", + "target": "package_scripts_dev_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_scripts", + "target": "package_scripts_dev_frontend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "package_scripts", + "target": "package_scripts_dev_admin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies", + "target": "frontend_admin_panel_package_dependencies_tanstack_react_query" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies", + "target": "frontend_admin_panel_package_dependencies_axios" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies", + "target": "frontend_admin_panel_package_dependencies_lucide_react" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies", + "target": "frontend_admin_panel_package_dependencies_react" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies", + "target": "frontend_admin_panel_package_dependencies_react_dom" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies", + "target": "frontend_admin_panel_package_dependencies_react_hot_toast" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies", + "target": "frontend_admin_panel_package_dependencies_react_router_dom" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies", + "target": "frontend_admin_panel_package_dependencies_recharts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies", + "target": "frontend_admin_panel_package_dependencies_vite" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies", + "target": "frontend_admin_panel_package_dependencies_zustand" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L14", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies_axios", + "target": "frontend_admin_panel_package_json_axios" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L15", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies_lucide_react", + "target": "frontend_admin_panel_package_json_lucide_react" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L16", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies_react", + "target": "frontend_admin_panel_package_json_react" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L17", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies_react_dom", + "target": "frontend_admin_panel_package_json_react_dom" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L18", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies_react_hot_toast", + "target": "react_hot_toast" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L19", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies_react_router_dom", + "target": "react_router_dom" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L20", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies_recharts", + "target": "recharts" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L13", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies_tanstack_react_query", + "target": "tanstack_react_query" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L21", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies_vite", + "target": "vite" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/admin-panel/package.json", + "source_location": "L22", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_admin_panel_package_dependencies_zustand", + "target": "frontend_admin_panel_package_json_zustand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_09_devops_security", + "target": "ai_agency_agents_09_devops_security_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L108", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_09_devops_security_1_active_secret_scanning_all_modified_files", + "target": "ai_agency_agents_09_devops_security_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L120", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_09_devops_security_2_docker_container_verification_if_dockerfile_exists", + "target": "ai_agency_agents_09_devops_security_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L133", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_09_devops_security_3_ci_cd_basic_check_if_github_workflows_exists", + "target": "ai_agency_agents_09_devops_security_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L138", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_09_devops_security_4_failure_routing_protocol", + "target": "ai_agency_agents_09_devops_security_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L150", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_09_devops_security_5_forbidden_actions", + "target": "ai_agency_agents_09_devops_security_operational_rules_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L93", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_09_devops_security_enforce_mode_normal_operation", + "target": "ai_agency_agents_09_devops_security_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L168", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_09_devops_security_expected_json_output_schema", + "target": "ai_agency_agents_09_devops_security_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L106", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_09_devops_security_operational_rules_boundaries", + "target": "ai_agency_agents_09_devops_security_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_09_devops_security_output", + "target": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L158", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_09_devops_security_required_output_artifacts_what_files_to_write_update", + "target": "ai_agency_agents_09_devops_security_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", + "target": "ai_agency_agents_09_devops_security_your_domain_what_you_review_only_these_areas" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L23", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", + "target": "ai_agency_agents_09_devops_security_what_you_do_not_review" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", + "target": "ai_agency_agents_09_devops_security_what_you_look_for_security_expert_eyes_only" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_09_devops_security_review_mode_called_during_review_phase", + "target": "ai_agency_agents_09_devops_security_role_core_objective" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".ai_agency/agents/09_devops_security.md", + "source_location": "L97", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "ai_agency_agents_09_devops_security_role_core_objective", + "target": "ai_agency_agents_09_devops_security_strict_input_specifications_what_files_to_read" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L64", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_eslint_config_prettier", + "target": "eslint_config_prettier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L64", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_eslint_config_prettier", + "target": "backend_package_devdependencies" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/src/payment/zibal.service.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_src_payment_interfaces_payment_gateway_interface", + "target": "backend_src_payment_zibal_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_dependencies", + "target": "frontend_application_package_dependencies_axios" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_dependencies", + "target": "frontend_application_package_dependencies_lucide_react" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_dependencies", + "target": "frontend_application_package_dependencies_motion" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_dependencies", + "target": "frontend_application_package_dependencies_next" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_dependencies", + "target": "frontend_application_package_dependencies_react" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_dependencies", + "target": "frontend_application_package_dependencies_react_dom" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_dependencies", + "target": "frontend_application_package_dependencies_sonner" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_dependencies", + "target": "frontend_application_package_dependencies_zustand" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L12", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_dependencies_axios", + "target": "frontend_application_package_json_axios" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L13", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_dependencies_lucide_react", + "target": "frontend_application_package_json_lucide_react" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L14", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_dependencies_motion", + "target": "motion" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L15", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_dependencies_next", + "target": "next" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L16", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_dependencies_react", + "target": "frontend_application_package_json_react" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L17", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_dependencies_react_dom", + "target": "frontend_application_package_json_react_dom" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L18", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_dependencies_sonner", + "target": "sonner" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "frontend/application/package.json", + "source_location": "L19", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_package_dependencies_zustand", + "target": "frontend_application_package_json_zustand" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_shop_slug_page", + "target": "frontend_application_components_productpage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/shop/[slug]/page.tsx", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_shop_slug_page", + "target": "frontend_application_app_shop_slug_page_revalidate" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_podcastinlineplayer", + "target": "frontend_application_components_productpage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/PodcastInlinePlayer.tsx", + "source_location": "L30", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_podcastinlineplayer", + "target": "frontend_application_components_podcastinlineplayer_playback_rates" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_productpage", + "target": "frontend_application_lib_data_scientificterms_scientific_terms" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L45", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_productpage", + "target": "frontend_application_lib_data_scientificterms" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_productpage", + "target": "frontend_application_lib_types" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L69", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_productpage", + "target": "frontend_application_components_tooltip" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_productpage", + "target": "frontend_application_components_productpage_icon_map" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L61", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_productpage", + "target": "frontend_application_components_productpage_usecalculatorstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_productpage", + "target": "frontend_application_components_productpage_productreviews" + }, + { + "relation": "dynamic_import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_productpage", + "target": "frontend_application_components_productreviews" + }, + { + "relation": "imports_from", + "context": "import", + "deferred": true, + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ProductPage.tsx", + "source_location": "L74", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_productpage_productreviews", + "target": "frontend_application_components_productreviews" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Tooltip.test.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tests_tooltip_test", + "target": "frontend_application_components_tooltip" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Tooltip.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tooltip", + "target": "frontend_application_lib_data_scientificterms_scientific_terms" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Tooltip.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_tooltip", + "target": "frontend_application_lib_data_scientificterms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/lib/data/scientificTerms.ts", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_lib_data_scientificterms", + "target": "frontend_application_lib_data_scientificterms_scientific_terms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed.ts", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed", + "target": "backend_prisma_seed_prisma" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-home.ts", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_home", + "target": "backend_prisma_seed_home_prisma" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L148", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_products", + "target": "backend_prisma_seed_products_product_symptoms_map" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L208", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_products", + "target": "backend_prisma_seed_products_product_taglines_map" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/prisma/seed-products.ts", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_prisma_seed_products", + "target": "backend_prisma_seed_products_prisma" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_eslint_eslintrc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_nestjs_cli" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_nestjs_schematics" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L52", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_nestjs_testing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L54", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_types_bcryptjs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_types_js_yaml" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_types_supertest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_eslint" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L65", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_eslint_plugin_prettier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L66", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_globals" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_prettier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L72", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_ts_jest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L77", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_typescript_eslint" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L63", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_eslint", + "target": "backend_package_json_eslint" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L48", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_eslint_eslintrc", + "target": "eslint_eslintrc" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L65", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_eslint_plugin_prettier", + "target": "eslint_plugin_prettier" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L66", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_globals", + "target": "backend_package_json_globals" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L50", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_nestjs_cli", + "target": "nestjs_cli" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L52", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_nestjs_testing", + "target": "nestjs_testing" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L68", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_prettier", + "target": "prettier" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L72", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_ts_jest", + "target": "ts_jest" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L54", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_types_bcryptjs", + "target": "types_bcryptjs" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L58", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_types_js_yaml", + "target": "types_js_yaml" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L62", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_types_supertest", + "target": "types_supertest" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L77", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_typescript_eslint", + "target": "backend_package_json_typescript_eslint" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_homeclient", + "target": "frontend_application_components_faqsection" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_homeclient", + "target": "frontend_application_components_bannerplacement" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_homeclient", + "target": "frontend_application_lib_types" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/HomeClient.tsx", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_homeclient", + "target": "frontend_application_components_hero" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_homeclient", + "target": "frontend_application_app_page" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/page.tsx", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_page", + "target": "frontend_application_lib_types" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L31", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_archivepage", + "target": "frontend_application_components_bannerplacement" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L32", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_archivepage", + "target": "frontend_application_lib_types" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L34", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_archivepage", + "target": "frontend_application_components_archivepage_icon_map" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/ArchivePage.tsx", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_archivepage", + "target": "frontend_application_components_archivepage_category_map" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/BannerPlacement.tsx", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_bannerplacement", + "target": "frontend_application_lib_types" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/Hero.tsx", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_hero", + "target": "frontend_application_lib_types" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/components/__tests__/Hero.test.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_components_hero", + "target": "frontend_application_components_tests_hero_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_02_audit_plan", + "target": "docs_audit_02_audit_plan_audit_plan_subagent_roles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L73", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_02_audit_plan_10_documentation_engineer", + "target": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L28", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_02_audit_plan_1_lead_architect_orchestrator", + "target": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_02_audit_plan_2_react_vite_storefront_auditor", + "target": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L38", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_02_audit_plan_3_nestjs_backend_auditor", + "target": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L43", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_02_audit_plan_4_admin_features_auditor", + "target": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L48", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_02_audit_plan_5_database_data_integrity_auditor", + "target": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L53", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_02_audit_plan_6_security_auditor", + "target": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L58", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_02_audit_plan_7_typescript_code_quality_auditor", + "target": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L63", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_02_audit_plan_8_testing_reliability_auditor", + "target": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L68", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_02_audit_plan_9_devops_ci_cd_auditor", + "target": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_02_audit_plan_audit_plan_subagent_roles", + "target": "docs_audit_02_audit_plan_mandatory_global_audit_exclusions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_02_audit_plan_audit_plan_subagent_roles", + "target": "docs_audit_02_audit_plan_reconciled_audit_roles_assignments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_02_audit_plan_audit_plan_subagent_roles", + "target": "docs_audit_02_audit_plan_subagent_execution_mode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/02-audit-plan.md", + "source_location": "L80", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_02_audit_plan_audit_plan_subagent_roles", + "target": "docs_audit_02_audit_plan_strategy_for_deduplication_consolidation" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L51", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_devdependencies_nestjs_schematics", + "target": "nestjs_schematics" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L1", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_backlog_review", + "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L102", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_backlog_review_10_dependency_wave_adjustments", + "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L114", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_backlog_review_11_acceptance_criteria_refinements", + "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L124", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_backlog_review_12_business_and_product_decision_classification", + "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L134", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_backlog_review_13_final_recommended_backlog_summary", + "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_backlog_review_1_executive_assessment", + "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L26", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_backlog_review_2_findings_that_require_no_change", + "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L41", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_backlog_review_3_findings_requiring_task_refinements", + "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L50", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_backlog_review_4_tasks_requiring_splitting", + "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L56", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_backlog_review_5_tasks_requiring_merging", + "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L62", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_backlog_review_6_unsupported_assumptions_identified", + "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L71", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_backlog_review_7_scope_creep_identified_and_removed", + "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L78", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_backlog_review_8_security_deep_dive_review", + "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/audit/phase3.1-backlog-review.md", + "source_location": "L92", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "docs_audit_phase3_1_backlog_review_9_architecture_review", + "target": "docs_audit_phase3_1_backlog_review_phase_3_1_human_review_preparation_and_master_backlog_critique" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/b2b/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_b2b_page", + "target": "frontend_application_lib_schema" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/contact/page.tsx", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_contact_page", + "target": "frontend_application_lib_schema" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/wiki/[slug]/page.tsx", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_wiki_slug_page", + "target": "frontend_application_lib_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig", + "target": "frontend_application_tsconfig_compileroptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig", + "target": "frontend_application_tsconfig_include" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L33", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig", + "target": "frontend_application_tsconfig_exclude" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions", + "target": "frontend_application_tsconfig_compileroptions_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions", + "target": "frontend_application_tsconfig_compileroptions_moduleresolution" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions", + "target": "frontend_application_tsconfig_compileroptions_resolvejsonmodule" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions", + "target": "frontend_application_tsconfig_compileroptions_isolatedmodules" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions", + "target": "frontend_application_tsconfig_compileroptions_jsx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions", + "target": "frontend_application_tsconfig_compileroptions_incremental" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions", + "target": "frontend_application_tsconfig_compileroptions_plugins" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions", + "target": "frontend_application_tsconfig_compileroptions_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions", + "target": "frontend_application_tsconfig_compileroptions_target" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions", + "target": "frontend_application_tsconfig_compileroptions_lib" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions", + "target": "frontend_application_tsconfig_compileroptions_allowjs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions", + "target": "frontend_application_tsconfig_compileroptions_skiplibcheck" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L7", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions", + "target": "frontend_application_tsconfig_compileroptions_strict" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L8", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions", + "target": "frontend_application_tsconfig_compileroptions_noemit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions", + "target": "frontend_application_tsconfig_compileroptions_esmoduleinterop" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions_lib", + "target": "frontend_application_tsconfig_json_ref_dom" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions_lib", + "target": "frontend_application_tsconfig_json_ref_dom_iterable" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_compileroptions_lib", + "target": "frontend_application_tsconfig_json_ref_esnext" + }, + { + "relation": "extends", + "_origin": "ast", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "context": "import", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "source": "frontend_application_tsconfig_compileroptions_lib", + "target": "ref_esnext" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L33", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_exclude", + "target": "frontend_application_tsconfig_json_ref_node_modules" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L33", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_exclude", + "target": "frontend_application_tsconfig_json_ref_prisma" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L33", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_exclude", + "target": "ref_tests" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L33", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_exclude", + "target": "ref_vitest_config_ts" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L33", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_exclude", + "target": "ref_vitest_setup_ts" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_include", + "target": "frontend_application_tsconfig_json_ref_ts" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_include", + "target": "ref_mts" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_include", + "target": "ref_next_dev_types_ts" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_include", + "target": "ref_next_env_d_ts" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_include", + "target": "ref_next_types_ts" + }, + { + "relation": "extends", + "confidence": "EXTRACTED", + "source_file": "frontend/application/tsconfig.json", + "source_location": "L25", + "weight": 1.0, + "context": "import", + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_tsconfig_include", + "target": "ref_tsx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "frontend/application/app/blog/[slug]/page.tsx", + "source_location": "L51", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "frontend_application_app_blog_slug_page", + "target": "frontend_application_app_blog_slug_page_revalidate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L10", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_build_nest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L11", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_start" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L12", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_start_dev" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L13", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_start_debug" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L14", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_start_prod" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L15", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_lint" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L16", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L17", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_test_watch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L18", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_test_cov" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L19", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_test_debug" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L20", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_test_e2e" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L21", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_docs_generate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L22", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_seo_backfill" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L9", + "weight": 1.0, + "_origin": "ast", + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_build" + }, + { + "relation": "references", "_origin": "semantic", "confidence": "EXTRACTED", - "confidence_score": 0.95, - "source_file": "README.md", - "source": "database_schema_products", - "target": "readme_smartadvisor" + "confidence_score": 1.0, + "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/README.md", + "source": "frontend_application_public_fonts_vazirmatn_v33_003_authors", + "target": "frontend_application_public_fonts_vazirmatn_v33_003_readme" }, { "relation": "references", @@ -130784,6 +133746,24 @@ "source": "dejavu_sans", "target": "frontend_application_public_fonts_vazirmatn_v33_003_readme" }, + { + "relation": "references", + "_origin": "semantic", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/README.md", + "source": "roboto_font", + "target": "frontend_application_public_fonts_vazirmatn_v33_003_readme" + }, + { + "relation": "references", + "_origin": "semantic", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/README.md", + "source": "frontend_application_public_fonts_vazirmatn_v33_003_ofl", + "target": "frontend_application_public_fonts_vazirmatn_v33_003_readme" + }, { "relation": "references", "_origin": "semantic", @@ -130808,35 +133788,8 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "frontend/application/public/fonts/shabnam-font-v5.0.1/README.md", - "source": "frontend_application_public_fonts_shabnam_font_v5_0_1_readme", - "target": "frontend_application_public_fonts_shabnam_font_v5_0_1_sample" - }, - { - "relation": "references", - "_origin": "semantic", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/README.md", - "source": "frontend_application_public_fonts_vazirmatn_v33_003_authors", - "target": "frontend_application_public_fonts_vazirmatn_v33_003_readme" - }, - { - "relation": "references", - "_origin": "semantic", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/README.md", - "source": "frontend_application_public_fonts_vazirmatn_v33_003_ofl", - "target": "frontend_application_public_fonts_vazirmatn_v33_003_readme" - }, - { - "relation": "references", - "_origin": "semantic", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "frontend/application/public/fonts/vazirmatn-v33.003/README.md", - "source": "roboto_font", - "target": "frontend_application_public_fonts_vazirmatn_v33_003_readme" + "source": "vazir_font", + "target": "frontend_application_public_fonts_shabnam_font_v5_0_1_readme" }, { "relation": "references", @@ -130844,8 +133797,8 @@ "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "frontend/application/public/fonts/shabnam-font-v5.0.1/README.md", - "source": "vazir_font", - "target": "frontend_application_public_fonts_shabnam_font_v5_0_1_readme" + "source": "frontend_application_public_fonts_shabnam_font_v5_0_1_readme", + "target": "frontend_application_public_fonts_shabnam_font_v5_0_1_sample" }, { "relation": "conceptually_related_to", @@ -130860,11 +133813,11 @@ { "relation": "conceptually_related_to", "_origin": "semantic", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "frontend/application/public/assets/images/regenerated_image_1779109861747.png", - "source": "frontend_application_agents", - "target": "image_pharma_lab" + "confidence": "EXTRACTED", + "confidence_score": 0.95, + "source_file": "README.md", + "source": "database_schema_products", + "target": "readme_smartadvisor" }, { "relation": "references", @@ -130875,6 +133828,16 @@ "source": "database_schema_users", "target": "docker_backend_prod" }, + { + "relation": "conceptually_related_to", + "_origin": "semantic", + "confidence": "INFERRED", + "confidence_score": 0.95, + "rationale": "Both documents identify critical integration and security flaws in the authentication system.", + "source_file": "docs/audit/05-architectural-audit.md", + "source": "docs_audit_05_architectural_audit_findings", + "target": "docs_audit_10_security_audit_findings" + }, { "relation": "conceptually_related_to", "_origin": "semantic", @@ -130888,13 +133851,10 @@ "relation": "conceptually_related_to", "_origin": "semantic", "confidence": "INFERRED", - "confidence_score": 0.95, - "rationale": "Both documents identify critical integration and security flaws in the authentication system.", - "source_file": "docs/audit/05-architectural-audit.md", - "source": "docs_audit_05_architectural_audit_findings", - "target": "docs_audit_10_security_audit_findings" + "confidence_score": 0.8, + "source_file": "frontend/application/public/assets/images/regenerated_image_1779109861747.png", + "source": "frontend_application_agents", + "target": "image_pharma_lab" } - ], - "hyperedges": [], - "built_at_commit": "fa69aa4c494d031168ee24bd478c9588b4c9f2cd" + ] } \ No newline at end of file diff --git a/graphify-out/2026-08-26/manifest.json b/graphify-out/2026-08-26/manifest.json index 6c94d6d..aae0543 100644 --- a/graphify-out/2026-08-26/manifest.json +++ b/graphify-out/2026-08-26/manifest.json @@ -1,3590 +1,7211 @@ { ".ai_agency/orchestrate.py": { +<<<<<<< HEAD "mtime": 1785148022.0726626, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "43b4b40901868f1bdfd470cf58f40760", "semantic_hash": "" }, ".gitea/scripts/with-vpn.sh": { "mtime": 1786799852.1263163, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "451f307a9e42d2240949e7bf39de6667", "semantic_hash": "" }, "backend/eslint.config.mjs": { "mtime": 1787073059.1053617, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "54fb00fe78776d07db9dae804aced0d1", "semantic_hash": "" }, "backend/nest-cli.json": { "mtime": 1787072106.3705614, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "718a59f7d90dbf49fdda2843d72172c4", "semantic_hash": "" }, "backend/package.json": { - "mtime": 1787641731.9958906, - "seen": 1787644157.070595, + "mtime": 1787644197.1371043, + "seen": 1787658246.1492183, "ast_hash": "4f466b887ff858a0d2890c9ca9727285", +======= + "mtime": 1787419447.0029993, + "seen": 1787690477.6411574, + "ast_hash": "77cc803eb63d0bd659e389129ddffc6f", + "semantic_hash": "" + }, + ".gitea/scripts/with-vpn.sh": { + "mtime": 1787419447.0475068, + "seen": 1787690477.6411686, + "ast_hash": "0745465d8c64a90889fd6e6884fa6a70", + "semantic_hash": "" + }, + "backend/eslint.config.mjs": { + "mtime": 1787419447.06614, + "seen": 1787690477.6411793, + "ast_hash": "90c08fb601c0ca231442b942dc65f878", + "semantic_hash": "" + }, + "backend/nest-cli.json": { + "mtime": 1787419447.067137, + "seen": 1787690477.6411834, + "ast_hash": "f0624182482e5aef7bc35045a43a9ba9", + "semantic_hash": "" + }, + "backend/package.json": { + "mtime": 1787685267.3627, + "seen": 1787690477.641188, + "ast_hash": "76d289dc20c43595f69e99748284d140", +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "semantic_hash": "" }, "backend/prisma/migrations/20260526145407_init/migration.sql": { "mtime": 1783764561.6120076, - "seen": 1787644157.070595, +<<<<<<< HEAD + "seen": 1787658246.1492183, "ast_hash": "12a9a675c12bc5ff2d2c3164f803f0ad", +======= + "seen": 1787644157.070595, + "ast_hash": "", +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "semantic_hash": "" }, "backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql": { "mtime": 1783764561.6134257, - "seen": 1787644157.070595, +<<<<<<< HEAD + "seen": 1787658246.1492183, "ast_hash": "50977e705726df3fb0f30bd1d3af101b", "semantic_hash": "" }, "backend/prisma/scientificTerms.ts": { "mtime": 1785325924.6348126, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "4c449cfeea573afd27cdfd1cdc72d4f3", "semantic_hash": "" }, "backend/prisma/seed-blogs.ts": { "mtime": 1786885876.777374, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "be491715958e8f9473913bdfe9cf5638", "semantic_hash": "" }, "backend/prisma/seed-custom.ts": { "mtime": 1786799852.144902, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "23cefb1ea3fc60be141520fd50e3f9f9", "semantic_hash": "" }, "backend/prisma/seed-home.ts": { "mtime": 1786885876.779371, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "3fd438d66d0b1174b885a9065e43b569", "semantic_hash": "" }, "backend/prisma/seed-products.ts": { "mtime": 1787127978.2192707, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "62ab15adef06163ac0d7c93efa357e66", "semantic_hash": "" }, "backend/prisma/seed-ui-texts.ts": { "mtime": 1787127978.2217898, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "7ff151f7d60dd6cd3358909be5a2f90e", "semantic_hash": "" }, "backend/prisma/seed-wiki.ts": { "mtime": 1786961195.297596, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "4734726498e97501b3f8c6c8bc022bb8", "semantic_hash": "" }, "backend/prisma/seed.ts": { "mtime": 1787127978.2255876, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "7e9527a378a7a25a0a673c80a420739f", "semantic_hash": "" }, "backend/prisma/tsconfig.seed.json": { "mtime": 1786955870.751259, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "a12c81b60c5e9fdb3c1aba03ac7ecb27", "semantic_hash": "" }, "backend/scripts/generate-openapi.ts": { "mtime": 1786799852.1563904, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "d218cbaae6150ad3a35c162c1a3c02a3", "semantic_hash": "" }, "backend/src/admin/admin.controller.spec.ts": { "mtime": 1786799852.1573997, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "05370741c60e581754191c00baf87596", "semantic_hash": "" }, "backend/src/admin/admin.controller.ts": { "mtime": 1787564362.261174, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "a1d3fa0677cabb7c037f49b325286fac", "semantic_hash": "" }, "backend/src/admin/admin.module.ts": { "mtime": 1786877667.0050085, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "2c08f0bdcbeb87979024730e39c7a6ce", "semantic_hash": "" }, "backend/src/admin/admin.service.spec.ts": { "mtime": 1786799852.1629112, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "0c0360ca02380ad75b9e551cffe11a96", "semantic_hash": "" }, "backend/src/admin/admin.service.ts": { "mtime": 1787579631.7561755, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "b5679ab54a6491009c2fbde8083cf7e5", "semantic_hash": "" }, "backend/src/admin/blogs.controller.ts": { "mtime": 1787579631.7581778, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "ddeda17e05fee4b7ce49a44c89c0f1bb", "semantic_hash": "" }, "backend/src/admin/blogs.service.ts": { "mtime": 1787579631.7601776, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "cb13d9df89955a1f5145abc300225fb8", "semantic_hash": "" }, "backend/src/admin/categories.controller.ts": { "mtime": 1786799852.1741924, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "e6322c19042382028966e6eb8dce7c62", "semantic_hash": "" }, "backend/src/admin/categories.service.ts": { "mtime": 1786799852.1751943, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "7c6b626454aa53d5a3458b5ca738a97c", "semantic_hash": "" }, "backend/src/admin/dto/admin-query.dto.ts": { "mtime": 1786799852.1787064, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "0a3e421ccf508d1a50ec1cfa8c92a4f9", "semantic_hash": "" }, "backend/src/admin/media.controller.ts": { "mtime": 1786876983.6488664, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "02fa16bdaf1363f117f7200f590b13c4", "semantic_hash": "" }, "backend/src/admin/media.service.ts": { "mtime": 1786876983.6515346, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "96b4035f21c6c0a662585ed950cd6107", "semantic_hash": "" }, "backend/src/admin/pets.controller.ts": { "mtime": 1786799852.1862173, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "8734d47651b112f7f1682f629dc4c7b1", "semantic_hash": "" }, "backend/src/admin/pets.service.ts": { "mtime": 1786954681.814243, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "67ef020c49eb8334a2bac643941678ac", "semantic_hash": "" }, "backend/src/admin/reports.controller.ts": { "mtime": 1783764561.642147, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "bf74156968541f38f105fa01454b312a", "semantic_hash": "" }, "backend/src/admin/reports.service.ts": { "mtime": 1786799852.189731, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "c4dd8ce40cb75cdd9298cc7cdb7402d4", "semantic_hash": "" }, "backend/src/admin/wiki.controller.ts": { "mtime": 1786799852.1917324, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "8b7c8559d6ed6bb2c220d9abd4f622b1", "semantic_hash": "" }, "backend/src/admin/wiki.service.ts": { "mtime": 1786799852.193324, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "ed627a21f3b767e9855511afefa5273c", "semantic_hash": "" }, "backend/src/app.controller.spec.ts": { "mtime": 1783764561.6448398, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "4a1c0e1133dbda6f6e8f3e60d984eddf", "semantic_hash": "" }, "backend/src/app.controller.ts": { "mtime": 1783764561.645849, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "3ab0e83b7d93b85ea489ab994ec79ea1", "semantic_hash": "" }, "backend/src/app.module.ts": { "mtime": 1787579631.7646954, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "5b326fa2dc121d0b55648e7530304f4f", "semantic_hash": "" }, "backend/src/app.service.ts": { "mtime": 1783764561.6488404, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "cd3fb7836f10de08a725ee1fd4ab36fe", "semantic_hash": "" }, "backend/src/auth/auth.controller.spec.ts": { "mtime": 1785327951.179468, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "7531d00aaa85a80f27e175071ce21c89", "semantic_hash": "" }, "backend/src/auth/auth.controller.ts": { - "mtime": 1787072106.3874893, - "seen": 1787644157.070595, - "ast_hash": "2011eeea42d5b79ff317ff9b283bf00c", + "mtime": 1787645037.3680255, + "seen": 1787658246.1492183, + "ast_hash": "e0360966564df6fe0650699160f24f57", "semantic_hash": "" }, "backend/src/auth/auth.module.ts": { "mtime": 1787072106.3885016, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "3bd9f559e5d43ee9c8cae151954c8356", "semantic_hash": "" }, "backend/src/auth/auth.service.spec.ts": { "mtime": 1786799852.2018433, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "a67a2c622e438a8bbc4014657abc0558", "semantic_hash": "" }, "backend/src/auth/auth.service.ts": { "mtime": 1787127978.2285898, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "b38c558251bdbadb7ab1b5f690c5c387", "semantic_hash": "" }, "backend/src/auth/dto/admin-login.dto.ts": { "mtime": 1787127978.2295873, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "c1a7d3d5babba82ff11b04ae7dcaabca", "semantic_hash": "" }, "backend/src/auth/dto/login.dto.ts": { "mtime": 1783764561.659109, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "9941767ad430851531a9f049c2b65ed5", "semantic_hash": "" }, "backend/src/auth/dto/register.dto.ts": { "mtime": 1785327951.186477, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "6165fdad9219dee4390732a7f6504e4a", "semantic_hash": "" }, "backend/src/auth/dto/send-otp.dto.ts": { "mtime": 1783764561.6611066, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "a99015984cd1320cbd36719809f69d3b", "semantic_hash": "" }, "backend/src/auth/dto/verify-otp.dto.ts": { "mtime": 1783764561.662112, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "8bc250f7ca73e6cbe4cfa01a99a3c032", "semantic_hash": "" }, "backend/src/auth/jwt-auth.guard.ts": { "mtime": 1786799852.2058628, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "f98f32eaf66499355a5e61632ac82aa5", "semantic_hash": "" }, "backend/src/auth/jwt.strategy.ts": { "mtime": 1786883225.7943432, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "f815b9f719678a154ebf50090b801c62", "semantic_hash": "" }, "backend/src/auth/roles.decorator.ts": { "mtime": 1786799852.2083795, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "0d86f61ddaab0d2f4d5f9b331a5e2541", "semantic_hash": "" }, "backend/src/auth/roles.guard.ts": { "mtime": 1786799852.2090034, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "10b31496903f54383d35b90a55c3e84a", "semantic_hash": "" }, "backend/src/b2b/b2b.controller.ts": { - "mtime": 1786799852.2120132, - "seen": 1787644157.070595, - "ast_hash": "6f0d65aee6b69a67e8d3d14fb1bf7823", + "mtime": 1787645037.3690653, + "seen": 1787658246.1492183, + "ast_hash": "7a18bd2c1df187a504e15a2a9f93f41b", "semantic_hash": "" }, "backend/src/b2b/b2b.module.ts": { "mtime": 1786799852.2120132, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "b1777d0004a54e8f89328879a20aa171", "semantic_hash": "" }, "backend/src/b2b/b2b.service.ts": { "mtime": 1786799852.2140093, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "d025e172746789d44802755b8bb441bf", "semantic_hash": "" }, "backend/src/banners/banners.controller.ts": { "mtime": 1786799852.2150102, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "30e1fba8ef3e98e127cf400aac0f71e8", "semantic_hash": "" }, "backend/src/banners/banners.module.ts": { "mtime": 1786799852.2160103, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "3dca61f7cf64dfb5f827469c7f14c655", "semantic_hash": "" }, "backend/src/banners/banners.service.ts": { "mtime": 1786799852.2160103, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "777061ff84dc642fee69803ce9ac2de9", "semantic_hash": "" }, "backend/src/blogs/blogs.controller.ts": { - "mtime": 1787577523.702295, - "seen": 1787644157.070595, - "ast_hash": "f4515106e40c643380900741ec2e543e", + "mtime": 1787645037.3695886, + "seen": 1787658246.1492183, + "ast_hash": "6f852bd232d318c3605d914c910aae06", "semantic_hash": "" }, "backend/src/blogs/blogs.module.ts": { "mtime": 1783764561.665678, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "3fc38d55e03319844c6c8cbb3017364b", "semantic_hash": "" }, "backend/src/blogs/blogs.service.ts": { - "mtime": 1787644023.327276, - "seen": 1787644157.070595, + "mtime": 1787644197.139946, + "seen": 1787658246.1492183, "ast_hash": "418259d5e2a73334533c488c3819d127", "semantic_hash": "" }, "backend/src/blogs/dto/create-blog.dto.ts": { "mtime": 1783764561.671557, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "a1938b347011dd71bfd99801b7453305", "semantic_hash": "" }, "backend/src/blogs/dto/update-blog.dto.ts": { "mtime": 1783764561.6737125, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "15612098d2a3cac84249518465104370", "semantic_hash": "" }, "backend/src/blogs/entities/blog.entity.ts": { "mtime": 1783764561.675101, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "7fadae161e6d38110bdc8ce71f9f1bdd", "semantic_hash": "" }, "backend/src/cms/cms.controller.ts": { "mtime": 1785327951.196913, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "72482ba30a017f8ed1ef26b423eb83d1", "semantic_hash": "" }, "backend/src/cms/cms.module.ts": { "mtime": 1785148022.206298, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "831ca7e3ee288322e05ddeeb1b02229d", "semantic_hash": "" }, "backend/src/cms/cms.service.ts": { "mtime": 1785327951.1979403, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "f9da5085411e9fe60ab0c35fb852ef56", "semantic_hash": "" }, "backend/src/cms/dto/cms.dto.ts": { "mtime": 1785327951.1999955, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "b91b502820b503e4ca63dd36028608d5", "semantic_hash": "" }, "backend/src/common/decorators/roles.decorator.ts": { "mtime": 1786799852.2205224, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "155f61ea03e3ef7d3d5e2fee554f8428", "semantic_hash": "" }, "backend/src/common/dto/pagination.dto.ts": { "mtime": 1785327951.201989, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "6e66fdace411feba9d947fe0f678c900", "semantic_hash": "" }, "backend/src/common/filters/http-exception.filter.ts": { - "mtime": 1787072106.3930762, - "seen": 1787644157.070595, - "ast_hash": "a52a58a4b2b8439d0de4e7714931a6fc", + "mtime": 1787645037.3717394, + "seen": 1787658246.1492183, + "ast_hash": "bbc06910a686ac6fffe7093cfac25247", "semantic_hash": "" }, "backend/src/common/filters/prisma-exception.filter.ts": { - "mtime": 1785330913.1437092, - "seen": 1787644157.070595, - "ast_hash": "ab7ab9b4007e538b6451777dbca63d23", + "mtime": 1787645037.3722546, + "seen": 1787658246.1492183, + "ast_hash": "ea9516e198b828d217e871db50bfd020", "semantic_hash": "" }, "backend/src/common/guards/roles.guard.spec.ts": { "mtime": 1786799852.2255569, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "0ee2661808205a0bb03a45d4cbca4472", "semantic_hash": "" }, "backend/src/common/guards/roles.guard.ts": { "mtime": 1786799852.2265651, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "72eadcd106153ccaad697234d8c0d281", "semantic_hash": "" }, "backend/src/common/interceptors/decimal.interceptor.spec.ts": { "mtime": 1786799852.2275658, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "bbf53de234b9963923c3163a10cd8e17", "semantic_hash": "" }, "backend/src/common/interceptors/decimal.interceptor.ts": { "mtime": 1786799852.2275658, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "71f8f0bfa748a8cbeb5f4627f972261d", "semantic_hash": "" }, "backend/src/common/metrics.controller.ts": { "mtime": 1786799852.229073, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "6380f2c18000ac46235e7adde60329dc", "semantic_hash": "" }, "backend/src/common/schemas/error-response.schema.ts": { "mtime": 1785330913.1447015, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "e2d4a690aa006a63ad617d2c21c7d11d", "semantic_hash": "" }, "backend/src/common/schemas/paginated-response.schema.ts": { "mtime": 1786799852.2300823, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "6ea7e2edc0ab662b3f244e0ffb8e5f19", "semantic_hash": "" }, "backend/src/common/services/sms.service.ts": { "mtime": 1787072106.3960736, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "354ecbb2d60de34e2176c1a8941edac0", "semantic_hash": "" }, "backend/src/common/sms.module.ts": { "mtime": 1785330750.996125, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "c2621fbe872597ca7fbc23fc7e261665", "semantic_hash": "" }, "backend/src/contact/contact.controller.ts": { - "mtime": 1786799852.2345963, - "seen": 1787644157.070595, - "ast_hash": "1fa2ff3dd39a3cd23860f5e2ec4f351f", + "mtime": 1787645037.373264, + "seen": 1787658246.1492183, + "ast_hash": "96c41a8993b5a047db2f7ab33b3140fc", "semantic_hash": "" }, "backend/src/contact/contact.module.ts": { "mtime": 1786799852.236599, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "3522066b9bc0d12c79ee13138ec94a23", "semantic_hash": "" }, "backend/src/contact/contact.service.ts": { "mtime": 1787127978.233104, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "795ecd48e5786280804b554877f43907", "semantic_hash": "" }, "backend/src/home/dto/create-home.dto.ts": { "mtime": 1783764561.6823654, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "b20293c0606e764e43e19412e8b94e58", "semantic_hash": "" }, "backend/src/home/dto/update-home.dto.ts": { "mtime": 1783764561.6823654, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "fdbec5105f68e9ef5edca26c91c2a01b", "semantic_hash": "" }, "backend/src/home/entities/home.entity.ts": { "mtime": 1783764561.6848848, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "f7e5b57b1dbb4fa28600ebdd5c86a73c", "semantic_hash": "" }, "backend/src/home/home.controller.ts": { "mtime": 1785327951.2120874, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "3474997a729a3a47f1872f489c28e70e", "semantic_hash": "" }, "backend/src/home/home.module.ts": { "mtime": 1783764561.687108, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "b8671f0d293617cf95cc2e9aef8ab11a", "semantic_hash": "" }, "backend/src/home/home.service.ts": { "mtime": 1785327951.2140872, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "20073496a83b447238b4e8ab793573ec", "semantic_hash": "" }, "backend/src/ingredients/ingredients.controller.ts": { "mtime": 1786799852.2375965, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "b591e9eeddc544d5224bbf8dc747f71e", "semantic_hash": "" }, "backend/src/ingredients/ingredients.module.ts": { "mtime": 1786799852.2385964, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "928f762b562c624011ca6c7e72543d0d", "semantic_hash": "" }, "backend/src/ingredients/ingredients.service.ts": { "mtime": 1786799852.2401083, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "7d07a0fb1cdebe81d9ecef7604701bed", "semantic_hash": "" }, "backend/src/main.ts": { - "mtime": 1787579631.7725842, - "seen": 1787644157.070595, - "ast_hash": "862c478fb398917e9c7bbf9a9245d318", + "mtime": 1787645037.3742604, + "seen": 1787658246.1492183, + "ast_hash": "8a8353cb7d8f9eb4d079805678f31fb6", "semantic_hash": "" }, "backend/src/orders/dto/create-order.dto.ts": { "mtime": 1785327951.218626, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "de9e39544ff4cfbbc8233318b2b71c67", "semantic_hash": "" }, "backend/src/orders/orders.controller.spec.ts": { "mtime": 1785327951.2196276, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "03aae30c09648646afbd6f8862d2d12b", "semantic_hash": "" }, "backend/src/orders/orders.controller.ts": { "mtime": 1787072106.3980772, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "58b8b3790952f51c625e31f5eed09d3b", "semantic_hash": "" }, "backend/src/orders/orders.module.ts": { "mtime": 1783764561.6975982, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "10e4c03ae468f0412d882306bdb20401", "semantic_hash": "" }, "backend/src/orders/orders.service.spec.ts": { "mtime": 1786799852.2461178, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "977cf4033204a7b27252a939aa57664f", "semantic_hash": "" }, "backend/src/orders/orders.service.ts": { "mtime": 1787127978.2361033, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "36e0f20d4d60e0aa48540ffe11ca0d1c", "semantic_hash": "" }, "backend/src/pets/dto/create-health-log.dto.ts": { "mtime": 1785327951.2294433, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "da823d24eecce83c17760374fbc99131", "semantic_hash": "" }, "backend/src/pets/dto/create-pet.dto.ts": { "mtime": 1785327951.2309487, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "22e442118c4b4c44d887a9e72bf416e2", "semantic_hash": "" }, "backend/src/pets/dto/create-reminder.dto.ts": { "mtime": 1785327951.2319582, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "61e74b013460e406bd10197b3d3a95df", "semantic_hash": "" }, "backend/src/pets/dto/update-pet.dto.ts": { "mtime": 1783764561.7095575, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "a2086bbebe7ca2718d4933b9828b456d", "semantic_hash": "" }, "backend/src/pets/pets.controller.spec.ts": { "mtime": 1786799852.2481189, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "ea25cbbc55569e44ea0ceaf8c7af5111", "semantic_hash": "" }, "backend/src/pets/pets.controller.ts": { "mtime": 1787461919.454309, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "20c1ead48262a81ff538fedae048d784", "semantic_hash": "" }, "backend/src/pets/pets.module.ts": { "mtime": 1783764561.71447, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "1e30ca9c5823c33d4f3266d5b48fee01", "semantic_hash": "" }, "backend/src/pets/pets.service.spec.ts": { "mtime": 1785327951.238208, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "49e5e2df9d623a5510db8d9c3eefdbd5", "semantic_hash": "" }, "backend/src/pets/pets.service.ts": { "mtime": 1786799852.2501173, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "f34775f4106e2ac19efff3a9b140db3f", "semantic_hash": "" }, "backend/src/prescriptions/prescriptions.controller.ts": { "mtime": 1786799852.2537484, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "3b657f5cac989600c165b8eac3a6a2af", "semantic_hash": "" }, "backend/src/prescriptions/prescriptions.module.ts": { "mtime": 1786954681.8158092, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "0f9ea31fa7fa71f4ec87e461ce7d444f", "semantic_hash": "" }, "backend/src/prescriptions/prescriptions.service.ts": { "mtime": 1787072106.408779, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "6b018d33377fdfcba9e4512e50da48a0", "semantic_hash": "" }, "backend/src/prisma/prisma.module.ts": { "mtime": 1783764561.7181997, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "3505a1831c78f0a9475e4ce0f0092410", "semantic_hash": "" }, "backend/src/prisma/prisma.service.ts": { "mtime": 1787640806.107781, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "1a6d7ac4a114351a0a3deb1835481a59", "semantic_hash": "" }, "backend/src/products/dto/get-products.dto.ts": { "mtime": 1786799852.2602715, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "bed3d5bd69f866349bfc408bfea60e78", "semantic_hash": "" }, "backend/src/products/products.controller.spec.ts": { "mtime": 1785327951.243281, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "6fde28604e799d5c5c0d2c6c2fcb4372", "semantic_hash": "" }, "backend/src/products/products.controller.ts": { "mtime": 1786799852.2612817, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "db015311d34c7985c1c4ab818070b297", "semantic_hash": "" }, "backend/src/products/products.module.ts": { "mtime": 1783764561.7236724, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "a70b434bb1a044adf542a78cd9461264", "semantic_hash": "" }, "backend/src/products/products.service.spec.ts": { "mtime": 1786799852.2632794, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "8a76d805cab28967eec85b1cd03d608c", "semantic_hash": "" }, "backend/src/products/products.service.ts": { "mtime": 1787579631.7735837, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "fb99501a3e2e051e47c4a731117b5b32", "semantic_hash": "" }, "backend/src/redis/redis.module.ts": { "mtime": 1783764561.727662, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "0856864a521a862369a89de9b2d3c9f0", "semantic_hash": "" }, "backend/src/redis/redis.service.spec.ts": { "mtime": 1783764561.7286723, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "f3a16f7f1721be9e6ddb7ddd2949ea6c", "semantic_hash": "" }, "backend/src/redis/redis.service.ts": { "mtime": 1786895436.2118347, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "4f5e58ffc36bbaed17ee669e5a7394b7", "semantic_hash": "" }, "backend/src/seo/seo.controller.ts": { "mtime": 1785327951.2472832, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "4c11a3beaa94a769acf206bf9ff279b0", "semantic_hash": "" }, "backend/src/seo/seo.module.ts": { "mtime": 1785148022.268581, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "4160982445b855a6406e8713e95bf91b", "semantic_hash": "" }, "backend/src/seo/seo.service.ts": { "mtime": 1787127978.249385, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "c104390de2fa710428b6d69c6201f4d8", "semantic_hash": "" }, "backend/src/settings/settings.controller.spec.ts": { "mtime": 1787073059.1090057, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "4c231fa106a8d505132abd86db2eb393", "semantic_hash": "" }, "backend/src/settings/settings.controller.ts": { "mtime": 1787072106.423348, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "d9785a80bc7e90198192a97d4f7cbb7b", "semantic_hash": "" }, "backend/src/settings/settings.module.ts": { "mtime": 1783764561.7355156, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "b84a45f92537de41c7c3821847271004", "semantic_hash": "" }, "backend/src/settings/settings.service.spec.ts": { "mtime": 1783764561.7368565, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "06de60c1699a6f72858da21e9c6bf45a", "semantic_hash": "" }, "backend/src/settings/settings.service.ts": { "mtime": 1787461919.45531, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "8750d228767aa14db2551f72de954d73", "semantic_hash": "" }, "backend/src/smart-advisor/smart-advisor.controller.ts": { "mtime": 1786799852.2754414, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "eacb4fc2f3d82eb3833f4b04d851d4c3", "semantic_hash": "" }, "backend/src/smart-advisor/smart-advisor.module.ts": { "mtime": 1786799852.2764418, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "40d2882f5f8a0733c940c754631be24b", "semantic_hash": "" }, "backend/src/smart-advisor/smart-advisor.service.ts": { "mtime": 1786799852.2774403, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "1824f7151599e310cd2de7435e345afe", "semantic_hash": "" }, "backend/src/testimonials/testimonials.controller.ts": { "mtime": 1787148092.3297865, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "077ac1d08fbec205f030f3cc6b7f357c", "semantic_hash": "" }, "backend/src/testimonials/testimonials.module.ts": { "mtime": 1786799852.2794418, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "e2778d19b65d66f61d35f1a98333c873", "semantic_hash": "" }, "backend/src/testimonials/testimonials.service.ts": { "mtime": 1787148092.3325016, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "7c108b6bdfc5625fc3c058f1db527bbe", "semantic_hash": "" }, "backend/src/users/dto/address.dto.ts": { "mtime": 1783764561.7398715, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "d42a8da106b862f8934b4268e5974025", "semantic_hash": "" }, "backend/src/users/dto/update-profile.dto.ts": { "mtime": 1786885876.8054721, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "7c5b2601ea43f7045a5691ed1fde7840", "semantic_hash": "" }, "backend/src/users/users.controller.spec.ts": { "mtime": 1785327951.2537966, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "8879233da361926bf496aa33fc24a0a4", "semantic_hash": "" }, "backend/src/users/users.controller.ts": { "mtime": 1786799852.2824814, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "0c14b005ce0dddc5c6be9fb33672c659", "semantic_hash": "" }, "backend/src/users/users.module.ts": { "mtime": 1783764561.7481544, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "6a22d47a72af32e6726ff5025c1d6f0b", "semantic_hash": "" }, "backend/src/users/users.service.spec.ts": { "mtime": 1786799852.2834806, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "f94ef87eb1f8de11ecd622f47181dbb7", "semantic_hash": "" }, "backend/src/users/users.service.ts": { "mtime": 1787127978.2530408, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "30b5b653694deebda2e072a57145b3d6", "semantic_hash": "" }, "backend/src/videos/dto/create-video.dto.ts": { "mtime": 1786971396.042094, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "292c465ed02d974fc16c674ca6f7caf5", "semantic_hash": "" }, "backend/src/videos/dto/get-videos-query.dto.ts": { "mtime": 1786799852.2876434, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "22029a395d4906dec82a0472af9827a2", "semantic_hash": "" }, "backend/src/videos/videos.controller.ts": { "mtime": 1786799852.2911532, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "64de50207aa54dc4d9866fb41a3cf11e", "semantic_hash": "" }, "backend/src/videos/videos.module.ts": { "mtime": 1785148022.3065836, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "79c989585f2c5da29199d914ca54abdf", "semantic_hash": "" }, "backend/src/videos/videos.service.ts": { "mtime": 1786971396.0478723, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "dbbcb0abb72bb6eee16d6ca2c7927f9e", "semantic_hash": "" }, "backend/src/wholesale/dto/wholesale-apply.dto.ts": { "mtime": 1785148022.3176222, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "dda43ea50daed66d9ddf56ff14c2ac31", "semantic_hash": "" }, "backend/src/wholesale/wholesale.controller.ts": { "mtime": 1786799852.294177, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "85347767e9b0508aa27c8fc2ada57403", "semantic_hash": "" }, "backend/src/wholesale/wholesale.module.ts": { "mtime": 1785148022.3287463, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "431fcacfcaaf5ee3872869c796581db3", "semantic_hash": "" }, "backend/src/wholesale/wholesale.service.ts": { "mtime": 1785330913.1492333, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "f17e69107c7ddb8baedfb9fa1177c8a0", "semantic_hash": "" }, "backend/src/wiki/dto/create-wiki.dto.ts": { "mtime": 1783764561.7529333, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "bff0bff5978c808b3f6c7c0471ecc09f", "semantic_hash": "" }, "backend/src/wiki/dto/update-wiki.dto.ts": { "mtime": 1783764561.753945, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "aafeafc832089a9d47f2b09c15f5166c", "semantic_hash": "" }, "backend/src/wiki/entities/wiki.entity.ts": { "mtime": 1783764561.7550395, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "0babba8c13baba4a2ad2fd70395060f2", "semantic_hash": "" }, "backend/src/wiki/wiki.controller.ts": { "mtime": 1785327951.2728505, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "ca3a7279ecce06e6747e4b5d1b83f042", "semantic_hash": "" }, "backend/src/wiki/wiki.module.ts": { "mtime": 1783764561.756925, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "22c999c57982f13d0526d25d7990b745", "semantic_hash": "" }, "backend/src/wiki/wiki.service.ts": { "mtime": 1786799852.295173, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "4f9a02a302512579c6eaed6e06da679e", "semantic_hash": "" }, "backend/test/app-audit-verification.e2e-spec.ts": { "mtime": 1786799852.2961748, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "5df6593dd9fd1f88f2b1e13f44b7b350", "semantic_hash": "" }, "backend/test/app.e2e-spec.ts": { "mtime": 1786799852.297175, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "8373bf2ee758abe47f5681e898cde506", "semantic_hash": "" }, "backend/tsconfig.build.json": { "mtime": 1783764561.763447, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "d3d6c627ed113034e4138ae830ca9221", "semantic_hash": "" }, "backend/tsconfig.json": { "mtime": 1787073059.1161675, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "bc2ddace3dc933b714ebc21504c43b62", "semantic_hash": "" }, "docs/audit/build_manifest.js": { "mtime": 1786799852.3383932, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "5865147d3b17e6ddad0be4f4b9dc00d0", "semantic_hash": "" }, "docs/audit/generate_classification.js": { "mtime": 1786799852.3393898, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "01cdce5da0cdc41b49a7e9560a0b8ae9", "semantic_hash": "" }, "docs/audit/generate_evidence.js": { "mtime": 1786799852.3403902, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "f31d1dafad3e771e9602776460c04761", "semantic_hash": "" }, "docs/audit/generate_ledger.js": { "mtime": 1786799852.3418972, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "c502805af184c8efe08a66030ff0203b", "semantic_hash": "" }, "docs/audit/generate_manifest.js": { "mtime": 1786799852.3418972, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "d9ead302d1023a72718e60261725e429", "semantic_hash": "" }, "docs/audit/rebuild_honest_ledger.js": { "mtime": 1786799852.348953, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "5a505fbc55dbabd0557377ce8de0643a", "semantic_hash": "" }, "docs/audit/sync_honest_manifest.js": { "mtime": 1786799852.3499532, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "3f2ec3b689e720b6e50fe4666a9b8bb0", "semantic_hash": "" }, "docs/audit/sync_manifest.js": { "mtime": 1786799852.3509533, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "7315ba82c162ad4c2a0cec307966c580", "semantic_hash": "" }, "docs/audit/validate_evidence_grade.js": { "mtime": 1786799852.351954, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "5f68ed3e8236ececf82e5da4ac47d93b", "semantic_hash": "" }, "docs/audit/validate_integrity.js": { "mtime": 1786799852.3529525, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "7bd05a71bd8c0c23db65db5201d3c030", "semantic_hash": "" }, "frontend/admin-panel/eslint.config.js": { "mtime": 1787148092.3345017, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "b204828b41a3391dd9ab65a1087e197f", "semantic_hash": "" }, "frontend/admin-panel/package.json": { "mtime": 1785570791.953119, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "f9e35fdccbe93fd60b511f72bf414766", "semantic_hash": "" }, "frontend/admin-panel/postcss.config.js": { "mtime": 1783764561.7962818, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "c1ee9ce6a4fe04105dbf8e619390df5e", "semantic_hash": "" }, "frontend/admin-panel/src/App.tsx": { "mtime": 1786799852.3654811, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "140226fcd94080d00f56e2f8b65f95e5", "semantic_hash": "" }, "frontend/admin-panel/src/components/Layout.tsx": { "mtime": 1784621786.9585948, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "e2192f9b6c86f07ff6c6ec9bf9d1cb71", "semantic_hash": "" }, "frontend/admin-panel/src/components/ProtectedRoute.tsx": { "mtime": 1786799852.369164, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "bcb0329847fb25e9fe1e990a30609210", "semantic_hash": "" }, "frontend/admin-panel/src/components/Sidebar.tsx": { "mtime": 1787461920.8420844, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "0020921da1b729dd663979b02a39e91f", "semantic_hash": "" }, "frontend/admin-panel/src/components/Topbar.tsx": { "mtime": 1787466234.9643857, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "ffa50e46783a27f148b41212e5810b46", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/ConfirmModal.tsx": { "mtime": 1786972191.3590996, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "982712b3d0130cbc66035a9caa4dc173", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/MediaSelector.tsx": { "mtime": 1787038450.536697, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "ed6a6da6e5929bf77a82b5cda0fb3eeb", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Pagination.tsx": { "mtime": 1786799852.387442, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "8ab314264c858bcd6cb53fc4c9985cf0", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Skeleton.tsx": { "mtime": 1783856792.9775357, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "dd6a1fca8a8db341521aa315829143e0", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Spinner.tsx": { "mtime": 1783856792.9790492, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "32a95c9dc25ac088596fdccd17d7284a", "semantic_hash": "" }, "frontend/admin-panel/src/main.tsx": { "mtime": 1787062325.3950386, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "e9195a72ddf4287e9eac6200a579623c", "semantic_hash": "" }, "frontend/admin-panel/src/pages/B2BManager.tsx": { "mtime": 1787467799.8731155, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "4ba876f493901aedcbf7b664bd5cc83a", "semantic_hash": "" }, "frontend/admin-panel/src/pages/BannersManager.tsx": { "mtime": 1787467799.8741717, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "d567c9ad3dcbf316b5622aeaa1b8e71d", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Blogs.tsx": { "mtime": 1787577523.7063534, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "721f91a86759072ccd884208406bca5a", "semantic_hash": "" }, "frontend/admin-panel/src/pages/CMS.tsx": { "mtime": 1787467933.66426, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "7c60aa58d334f1ffbaba2bf881492999", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Categories.tsx": { "mtime": 1787469989.1415117, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "db0c156eff28f6adb66eeebf37f0cd0c", "semantic_hash": "" }, "frontend/admin-panel/src/pages/ContactSubmissions.tsx": { "mtime": 1787467799.877344, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "b636f5f1432d4e2842d4bcea297ad4b8", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Coupons.tsx": { "mtime": 1787469989.1442049, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "1131b4561720966f7ad1693f0d93b1c9", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Dashboard.tsx": { "mtime": 1786885876.82951, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "025cbf432db0594426593332e01d5924", "semantic_hash": "" }, "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx": { "mtime": 1787467799.8829253, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "1051e6ca581035434cfb7f44408e24ab", "semantic_hash": "" }, "frontend/admin-panel/src/pages/IngredientsManager.tsx": { "mtime": 1787467933.6699345, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "ff90e4e00c59efc1decad824ccd74f2f", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Login.tsx": { "mtime": 1787127978.262361, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "49f753cc3593cff1360ca981e8f7682e", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Media.tsx": { "mtime": 1787467799.8859253, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "82bca4823f75ac46b5c99010d90406c0", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Orders.tsx": { "mtime": 1787471287.5966976, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "7e634f3aae144af71332a0e71f19f3ad", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Pets.tsx": { "mtime": 1787467799.8919382, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "d7193caca6127917bb62d9303859c55f", "semantic_hash": "" }, "frontend/admin-panel/src/pages/PrescriptionsManager.tsx": { "mtime": 1787467799.8929358, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "da18bacd672ffa7453f1a0dd00a0c1e5", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Products.tsx": { "mtime": 1787640978.2455652, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "16a53e2753f3f7455d817f33de589fd3", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Reports.tsx": { "mtime": 1787467799.896935, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "b3653c55b42ea883fb94bfdb35e3aa8d", "semantic_hash": "" }, "frontend/admin-panel/src/pages/SeoSettingsPage.tsx": { "mtime": 1787467799.8999343, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "07c293b237c544f1c22771ff40dcf432", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Settings.tsx": { "mtime": 1787468615.4578195, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "48d2a21e7213783f8fded696ef514d40", "semantic_hash": "" }, "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx": { "mtime": 1787467799.9029336, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "c7581c0ab40797e55144e588e75741de", "semantic_hash": "" }, "frontend/admin-panel/src/pages/SystemSettingsPage.tsx": { "mtime": 1787467799.907448, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "38fb335cb65c244bccddceed7c578a03", "semantic_hash": "" }, "frontend/admin-panel/src/pages/TestimonialsManager.tsx": { "mtime": 1787467799.9089553, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "4efa3f2d1fe0f23974fa880da26e6768", "semantic_hash": "" }, "frontend/admin-panel/src/pages/UITexts.tsx": { "mtime": 1787564362.2671711, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "c6981f08494a46ffd28f085b88d15e1a", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Users.tsx": { "mtime": 1787469989.1562152, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "a396144633f5ef2f44217b1e1e1de786", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Videos.tsx": { "mtime": 1787467799.9145484, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "a256966fc9e335d84a7e5e4746d2d055", "semantic_hash": "" }, "frontend/admin-panel/src/pages/WholesaleApplications.tsx": { "mtime": 1787467799.9168525, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "706933237e883550fbb7cdb6dd379815", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Wiki.tsx": { "mtime": 1787469989.158213, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "c563794e3da6d723f67834eed032495a", "semantic_hash": "" }, "frontend/admin-panel/src/routes/adminRoutes.tsx": { "mtime": 1787461920.8540971, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "50755a1d58935bf5b70406d2e83564f3", "semantic_hash": "" }, "frontend/admin-panel/src/services/api.ts": { "mtime": 1786896758.433963, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "2bec645a6dc0218587030146034dbea0", "semantic_hash": "" }, "frontend/admin-panel/src/store/adminAuthStore.ts": { "mtime": 1786799852.469037, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "a2ca7b287d2c7efe08802b6187d95d67", "semantic_hash": "" }, "frontend/admin-panel/src/types/admin.ts": { "mtime": 1787139270.9574077, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "7e167fef2655f090edc24e3575bb84f4", "semantic_hash": "" }, "frontend/admin-panel/tailwind.config.js": { "mtime": 1783764561.8617213, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "3346df3fd0a1ea3f84440703bf8fd2cb", "semantic_hash": "" }, "frontend/admin-panel/tsconfig.app.json": { "mtime": 1787055476.7795663, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "b885d5f97cf6fc2c1e7997d4b8abfb88", "semantic_hash": "" }, "frontend/admin-panel/tsconfig.json": { "mtime": 1783764561.8633935, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "a3d39fa780ebff65444de257f291ce6c", "semantic_hash": "" }, "frontend/admin-panel/tsconfig.node.json": { "mtime": 1783764561.863923, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "70bdd0a673bcfc0e828080b306e7c680", "semantic_hash": "" }, "frontend/admin-panel/vite.config.ts": { "mtime": 1783764561.864455, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "88439104b3c207f17d33ef3160e3b080", "semantic_hash": "" }, "frontend/application/app/ClientLayout.tsx": { "mtime": 1787579631.7780943, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "42306ecdf0e04ae00c1a91dcfad56d5a", "semantic_hash": "" }, "frontend/application/app/HomeClient.tsx": { "mtime": 1787148092.3474615, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "18591b46769b1276ee55bb9f92ed1ca6", "semantic_hash": "" }, "frontend/application/app/about/page.tsx": { "mtime": 1787139270.9594126, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "dea769499f3e4d950e310655b5b9b455", "semantic_hash": "" }, "frontend/application/app/blog/[slug]/page.tsx": { "mtime": 1787641161.057694, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "1d3634d4395f48acdfe8e322f306ec3d", "semantic_hash": "" }, "frontend/application/app/blog/page.tsx": { "mtime": 1787581191.8700745, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "416294d2e09bc26e025103dda8ddb7fc", "semantic_hash": "" }, "frontend/application/app/catalog/CatalogClient.tsx": { "mtime": 1786872121.5664852, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "32fa6454837b8cc0eabeec1f43f7208e", "semantic_hash": "" }, "frontend/application/app/catalog/page.tsx": { "mtime": 1787139270.9655254, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "a3df5895707ba1f0809841320a2b7dff", "semantic_hash": "" }, "frontend/application/app/checkout/page.tsx": { "mtime": 1787139270.9675355, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "3f670c85242a956b39b07dbada3e11d0", "semantic_hash": "" }, "frontend/application/app/checkout/success/[id]/page.tsx": { "mtime": 1783764561.8786683, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "0e0899f968c15078ee01116c3e34d4a4", "semantic_hash": "" }, "frontend/application/app/contact/page.tsx": { - "mtime": 1787641634.113276, - "seen": 1787644157.071601, + "mtime": 1787644197.1431985, + "seen": 1787658246.1502194, "ast_hash": "d2c5d581794a3db28e310d33cdef4ef1", "semantic_hash": "" }, "frontend/application/app/dashboard/page.tsx": { "mtime": 1787394935.3182175, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "82cfc707ac8e663e34c742ee14b11a4e", "semantic_hash": "" }, "frontend/application/app/error.tsx": { "mtime": 1785148022.478709, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "aea86a6d5b21cbff7bb38f382d1dd82d", "semantic_hash": "" }, "frontend/application/app/layout.tsx": { - "mtime": 1787641625.284745, - "seen": 1787644157.071601, + "mtime": 1787644197.1441965, + "seen": 1787658246.1502194, "ast_hash": "ab20541699ab83332ce9fcfe454aacdb", "semantic_hash": "" }, "frontend/application/app/loading.tsx": { "mtime": 1785148022.48765, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "daf62321fecabcbf8379d39f84a07c03", "semantic_hash": "" }, "frontend/application/app/not-found.tsx": { "mtime": 1783764561.8914113, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "6cada341f40f65b06a39f2a3020d7b96", "semantic_hash": "" }, "frontend/application/app/page.tsx": { "mtime": 1787139270.9749596, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "cf29e953f9b3c0666b71f7d97136e8d3", "semantic_hash": "" }, "frontend/application/app/privacy/page.tsx": { "mtime": 1787139270.9765637, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "54bf1a02ddfd06de2d9ec536a04ba97f", "semantic_hash": "" }, "frontend/application/app/profile/page.tsx": { "mtime": 1787139270.9788032, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "1a4283a6fb6b3120519acbd35cb5282e", "semantic_hash": "" }, "frontend/application/app/robots.ts": { "mtime": 1787578481.501464, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "c0e38b88b84ac47f4400128cfbc87987", "semantic_hash": "" }, "frontend/application/app/search/page.tsx": { "mtime": 1787139270.9799466, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "27d03ec9568875b47bb7d5bad3632085", "semantic_hash": "" }, "frontend/application/app/shop/[slug]/page.tsx": { "mtime": 1787579631.7871044, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "42d0bbe6ca70f218a49cb016d75bf606", "semantic_hash": "" }, "frontend/application/app/shop/page.tsx": { - "mtime": 1787641686.985162, - "seen": 1787644157.071601, + "mtime": 1787644197.146199, + "seen": 1787658246.1502194, "ast_hash": "746a67c82411b1d01b564dc0838cf26c", "semantic_hash": "" }, "frontend/application/app/sitemap.ts": { "mtime": 1787578481.5104632, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "5ce17876bf57c30d753801930423e32c", "semantic_hash": "" }, "frontend/application/app/track/page.tsx": { "mtime": 1787139270.9842136, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "ead1a36ba8de0ddbc98d68c77fcd0c68", "semantic_hash": "" }, "frontend/application/app/trust-seals/page.tsx": { "mtime": 1787394001.6093068, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "8dca9a0847bedf92637fc07ed89e39b3", "semantic_hash": "" }, "frontend/application/app/videos/page.tsx": { - "mtime": 1787641664.0212622, - "seen": 1787644157.071601, + "mtime": 1787644197.1471968, + "seen": 1787658246.1502194, "ast_hash": "54232e77a222f6de008a9709b2975274", "semantic_hash": "" }, "frontend/application/app/wiki/[slug]/page.tsx": { - "mtime": 1787641766.5593035, - "seen": 1787644157.071601, + "mtime": 1787644197.1491973, + "seen": 1787658246.1502194, "ast_hash": "198d84f897be0d678ec7f4c3d9aeb25d", "semantic_hash": "" }, "frontend/application/app/wiki/page.tsx": { "mtime": 1787139270.9878309, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "79fec8952ae04bb5c7c9a1fc753da583", "semantic_hash": "" }, "frontend/application/components/AddressModal.tsx": { "mtime": 1786799852.5711784, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "34e9382058aac3b8ee1d4b3a4dea8be9", "semantic_hash": "" }, "frontend/application/components/ArchivePage.tsx": { - "mtime": 1787641699.5748806, - "seen": 1787644157.071601, - "ast_hash": "7cf3b059fd6424e703815559ad657071", + "mtime": 1787657100.159062, + "seen": 1787658246.1502194, + "ast_hash": "1766109ef96f3a3102823e7514c24da3", "semantic_hash": "" }, "frontend/application/components/AuthModal.tsx": { "mtime": 1786891855.357692, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "4eb81d742b697c063f6c82d4a3c20a76", "semantic_hash": "" }, "frontend/application/components/B2BPortal.tsx": { "mtime": 1786894580.1568575, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "cd073e8a2de7b93496df2310de77f41a", "semantic_hash": "" }, "frontend/application/components/BackButton.tsx": { "mtime": 1786965281.3572779, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "9537791a36d9fc0245ab1edd523bad9e", "semantic_hash": "" }, "frontend/application/components/BlogPage.tsx": { "mtime": 1787640735.4441352, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "c2e99bfe8abbb31d0186555c37d5f68a", "semantic_hash": "" }, "frontend/application/components/CartDrawer.tsx": { "mtime": 1787407740.7650876, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "58f79e19a009cb61cc88effa5e007eda", "semantic_hash": "" }, "frontend/application/components/CheckoutPage.tsx": { - "mtime": 1787461919.458564, - "seen": 1787644157.071601, - "ast_hash": "64575cc4d350dae49e2f38ca9ea1737c", + "mtime": 1787657845.522979, + "seen": 1787658246.1502194, + "ast_hash": "41bcb6fffeadb1a54653a29727aa8d52", "semantic_hash": "" }, "frontend/application/components/ContactFormClient.tsx": { - "mtime": 1787127978.3109462, - "seen": 1787644157.071601, - "ast_hash": "94d604513c647fd2999603b6af274cb7", + "mtime": 1787645037.3822618, + "seen": 1787658246.1502194, + "ast_hash": "7a394005ab6fc914d9dbf74e6c39cb4f", "semantic_hash": "" }, "frontend/application/components/DeleteConfirmModal.tsx": { "mtime": 1786799852.6087523, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "831b2bddd3e6d156abdac216577e3c4c", "semantic_hash": "" }, "frontend/application/components/EnamadBadge.tsx": { "mtime": 1786799852.612362, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "37c7d2eaa27905307e5b2b147849519c", "semantic_hash": "" }, "frontend/application/components/ErrorBoundary.tsx": { "mtime": 1786799852.6145496, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "21b1cf87a9176b9f7902e5fc4f8b6482", "semantic_hash": "" }, "frontend/application/components/ErrorPages.tsx": { "mtime": 1786885876.9207263, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "d367c117edee2e91bfaa263a9514b93c", "semantic_hash": "" }, "frontend/application/components/FeaturedProducts.tsx": { "mtime": 1787579631.7948093, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "63a9935307879477104301d3c3362c56", "semantic_hash": "" }, "frontend/application/components/Footer.tsx": { - "mtime": 1787641615.9961033, - "seen": 1787644157.071601, + "mtime": 1787644197.154199, + "seen": 1787658246.1502194, "ast_hash": "dbf0963193c1d9ac2196d518e03b7eaf", "semantic_hash": "" }, "frontend/application/components/Header.tsx": { - "mtime": 1787641607.741118, - "seen": 1787644157.071601, + "mtime": 1787644197.1551993, + "seen": 1787658246.1502194, "ast_hash": "d7b2cb276542d7e7f71f598eebecd64e", "semantic_hash": "" }, "frontend/application/components/HeaderButton.tsx": { "mtime": 1786799852.637156, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "5e4679ee49ad04e753de83a405255e44", "semantic_hash": "" }, "frontend/application/components/Hero.tsx": { "mtime": 1787577523.5395882, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "d145306fb9a034169df4a873138bfd51", "semantic_hash": "" }, "frontend/application/components/IngredientWiki.tsx": { "mtime": 1786965281.3742068, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "5a656dd2b9fd9e8f8c83544b706da19a", "semantic_hash": "" }, "frontend/application/components/LoginModal.tsx": { "mtime": 1786885876.9322674, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "8e7bdd175df5e72f59814fac75ff6254", "semantic_hash": "" }, "frontend/application/components/MaintenancePage.tsx": { "mtime": 1786946249.984693, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "ddff8dfe25db6a3b4667f52a92ffbd12", "semantic_hash": "" }, "frontend/application/components/NetworkBanner.tsx": { "mtime": 1786799852.662139, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "17a159f769af90f446309ca321c86805", "semantic_hash": "" }, "frontend/application/components/OrderDetailsModal.tsx": { "mtime": 1787564348.6949298, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "0c74c1847f6de23d78e0069d1c438ea8", "semantic_hash": "" }, "frontend/application/components/OrderSuccess.tsx": { "mtime": 1786799852.6655424, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "1af189b677cfa054b76f3a1b518113f8", "semantic_hash": "" }, "frontend/application/components/OrderTracking.tsx": { - "mtime": 1786965281.3801894, - "seen": 1787644157.071601, - "ast_hash": "876caa8bc755d8087e403e043a1358a1", + "mtime": 1787657266.639234, + "seen": 1787658246.1502194, + "ast_hash": "93ce4adc177efe4a3b2aadc4ede6f0bc", "semantic_hash": "" }, "frontend/application/components/PetProfile.tsx": { "mtime": 1787564348.6959305, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "861afaf9b756009c2694d3c922639dc4", "semantic_hash": "" }, "frontend/application/components/PrescriptionUploadModal.tsx": { "mtime": 1786965281.3856564, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "f622bde4484b9f8728858fdc5330f8c2", "semantic_hash": "" }, "frontend/application/components/ProductPage.tsx": { "mtime": 1787579631.7998354, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "cfc1df273d7bc47f58dd4ebf656ff3a5", "semantic_hash": "" }, "frontend/application/components/SafeImage.tsx": { "mtime": 1787579631.8018367, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "235b36eded315b4311a301e21467a90d", "semantic_hash": "" }, "frontend/application/components/SearchResultsPage.tsx": { "mtime": 1786799852.7015781, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "a5418e889a76fa054734277bd9a77a3d", "semantic_hash": "" }, "frontend/application/components/SearchableSelect.tsx": { "mtime": 1785575516.1555548, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "9a5010afe35da7c9584bf60e69e47002", "semantic_hash": "" }, "frontend/application/components/Skeleton.tsx": { "mtime": 1783764561.943997, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "3df12c74c99d1d9ac25dfe620cf2b2c5", "semantic_hash": "" }, "frontend/application/components/SmartAdvisor.tsx": { "mtime": 1787461919.461079, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "bd8fa36143ed2ea7231a93b7dedb383e", "semantic_hash": "" }, "frontend/application/components/TickerBanner.tsx": { "mtime": 1786885876.9608357, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "e00022d0f2300ac98510a6f8c040598b", "semantic_hash": "" }, "frontend/application/components/Tooltip.tsx": { "mtime": 1786885876.9641032, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "cd556c004e25bf31fc7955015e1be6c2", "semantic_hash": "" }, "frontend/application/components/TopUpModal.tsx": { "mtime": 1787406597.3033493, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "178766a9fff90dd0b233dc958a2f79b8", "semantic_hash": "" }, "frontend/application/components/UserDashboard.tsx": { "mtime": 1787394935.3203175, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "4217d24d0a41643d249cd53267ffdf05", "semantic_hash": "" }, "frontend/application/components/VetGallery.tsx": { "mtime": 1787074301.6929152, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "0e687985dddefab3b7fc4592a61cb85a", "semantic_hash": "" }, "frontend/application/components/VideosPage.tsx": { "mtime": 1787048863.6937873, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "00d2e61c0207e03b31a8303370cf4860", "semantic_hash": "" }, "frontend/application/components/__tests__/CartDrawer.test.tsx": { "mtime": 1786799852.7618258, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "6840b24eb0f28d8120a320f0fd466154", "semantic_hash": "" }, "frontend/application/components/__tests__/FeaturedProducts.test.tsx": { "mtime": 1786799852.7656322, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "4059af6498e993d64024592623b58a2b", "semantic_hash": "" }, "frontend/application/components/__tests__/Footer.test.tsx": { "mtime": 1786885876.9765952, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "a258662661bb7865fe657b76abc97003", "semantic_hash": "" }, "frontend/application/components/__tests__/Header.test.tsx": { "mtime": 1786799852.770019, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "40d1ba45b7b0272cfc6d4d6addbaf2af", "semantic_hash": "" }, "frontend/application/components/__tests__/Hero.test.tsx": { "mtime": 1786799852.7760108, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "cba126955eaf2edc40fe24ce0c42d850", "semantic_hash": "" }, "frontend/application/components/__tests__/Tooltip.test.tsx": { "mtime": 1786799852.784349, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "a43df52896070e694d06a2d1ae89a99a", "semantic_hash": "" }, "frontend/application/eslint.config.mjs": { "mtime": 1787148092.3580558, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "b4917d5d92dcb4fe98715b5625b397e2", "semantic_hash": "" }, "frontend/application/lib/data/products.ts": { "mtime": 1787578481.5139885, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "369af05791a87fe7f4ce5e039b8388d5", "semantic_hash": "" }, "frontend/application/lib/data/provinces.ts": { "mtime": 1785571725.610676, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "cd814c89c40909d1da24ac1e01fd99c0", "semantic_hash": "" }, "frontend/application/lib/data/scientificTerms.ts": { "mtime": 1786958978.7430973, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "b469da9f5c2d6e81279c853211bc197f", "semantic_hash": "" }, "frontend/application/lib/hooks/useNetworkStatus.ts": { "mtime": 1786799852.793488, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "d6ece33f5f0149a299c49366f0e314d0", "semantic_hash": "" }, "frontend/application/lib/services/api.ts": { "mtime": 1786954681.8442974, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "ae46ef7c44f6cbfe689fb6807c23b26b", "semantic_hash": "" }, "frontend/application/lib/services/authService.ts": { "mtime": 1786885876.9861848, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "497045bd75576ee0cb6f37fc0ad831da", "semantic_hash": "" }, "frontend/application/lib/services/orderService.ts": { "mtime": 1786799852.8107264, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "5b8b9c867e3db50a9ed5e6b3f765e3b5", "semantic_hash": "" }, "frontend/application/lib/services/productService.ts": { "mtime": 1787579631.803836, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "8f79080d8585c175fce100bd134c96cb", "semantic_hash": "" }, "frontend/application/lib/services/videoService.ts": { "mtime": 1786967385.8719704, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "2f5855cda678f065e6f3b44fcc97f7cf", "semantic_hash": "" }, "frontend/application/lib/store/__tests__/cartStore.test.ts": { "mtime": 1786799852.822037, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "741d154ab7044aa24c39b1694dbd9a32", "semantic_hash": "" }, "frontend/application/lib/store/__tests__/settingsStore.test.ts": { "mtime": 1783856793.0438032, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "9ca2a69a162e64abce0658a348454d97", "semantic_hash": "" }, "frontend/application/lib/store/__tests__/userStore.test.ts": { "mtime": 1786799852.8255477, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "9133574a4b0a49423dadbdc1d8d373b6", "semantic_hash": "" }, "frontend/application/lib/store/cartStore.ts": { "mtime": 1786895436.2356844, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "bca90351f647e0cbd364a37d7e193d8e", "semantic_hash": "" }, "frontend/application/lib/store/settingsStore.ts": { "mtime": 1786948119.7870967, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "ad4252536324b30028b5e4844fbd959b", "semantic_hash": "" }, "frontend/application/lib/store/uiStore.ts": { "mtime": 1786799852.833588, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "5b78ec13363f2456a9efa6189473f93b", "semantic_hash": "" }, "frontend/application/lib/store/usePetStore.ts": { "mtime": 1786954681.8453007, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "ad7e988e8e7561ed1c39db9964710806", "semantic_hash": "" }, "frontend/application/lib/store/userStore.ts": { "mtime": 1786885876.9946983, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "8b78aa320dffed6f73df4e7da060b79d", "semantic_hash": "" }, "frontend/application/lib/types.ts": { "mtime": 1786799852.8401117, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "d4375ccb9e1067339601af5cb0f1ae07", "semantic_hash": "" }, "frontend/application/lib/utils.ts": { "mtime": 1786799852.847284, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "13d70256fc31437c6a1d3c3450c0d5c6", "semantic_hash": "" }, "frontend/application/next.config.ts": { "mtime": 1787579631.8053873, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "72dbc54deb8d63c55f916796261d5b5d", "semantic_hash": "" }, "frontend/application/package.json": { "mtime": 1787640978.2471824, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "88157c39dd13eecd904d916a155dd1df", "semantic_hash": "" }, "frontend/application/postcss.config.mjs": { "mtime": 1783764561.9882522, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "239f3ebf717465dc636818a1a619398d", "semantic_hash": "" }, "frontend/application/tsconfig.json": { "mtime": 1786799852.86564, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "09df7544350f3ee3b4fe33841d294a86", "semantic_hash": "" }, "frontend/application/vitest.config.ts": { "mtime": 1786799852.8686528, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "ee482d93c3e5c516e021b7a68c5fb60b", "semantic_hash": "" }, "frontend/application/vitest.setup.ts": { "mtime": 1786799852.8706508, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "4dcc5d7d1d80795a12623d48fc61e3e5", "semantic_hash": "" }, "package.json": { - "mtime": 1783856793.674106, - "seen": 1787644157.071601, - "ast_hash": "fcb100aa3caf90be6b494c35499e0049", + "mtime": 1787646156.227921, + "seen": 1787658246.1502194, + "ast_hash": "0f9ae7076d1cf1b0f89f5eb37be05807", "semantic_hash": "" }, "scripts/backup_db.sh": { "mtime": 1786799852.8767846, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "82cb31279bdfacde5efe978a55256436", "semantic_hash": "" }, "scripts/deploy.sh": { "mtime": 1787136904.5590942, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "ad310d4368d2fe68ff5f902c248fcc22", "semantic_hash": "" }, "scripts/open-browsers.js": { "mtime": 1787640978.2482345, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "3b052f156a21c22d266ac6c38701c842", "semantic_hash": "" }, "scripts/start-dev.js": { "mtime": 1787072106.514647, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "4c029b34e1d38346196356018a747008", "semantic_hash": "" }, "start.sh": { "mtime": 1784033954.8130803, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "de3176806eab0abd69c6a8ea420b2095", "semantic_hash": "" }, "BACKEND_INTEGRATION.md": { "mtime": 1786885876.7688253, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "e1f23cc23d23159b32a35acc9fadc689", "semantic_hash": "" }, "DATABASE_SCHEMA.md": { "mtime": 1786885876.7713423, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "ca5ded565172da98231f6cf54af4843d", "semantic_hash": "" }, "README.md": { "mtime": 1786885876.7753718, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "830c27760b856f621e2498eb762743fa", "semantic_hash": "" }, "canina.md": { "mtime": 1786885876.8094723, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "seen": 1787644157.070595, + "ast_hash": "", + "semantic_hash": "" + }, + "backend/prisma/scientificTerms.ts": { + "mtime": 1787419447.0850022, + "seen": 1787690477.6411922, + "ast_hash": "cfd116a83e2014bfbb5137d5c9803e76", + "semantic_hash": "" + }, + "backend/prisma/seed-blogs.ts": { + "mtime": 1787419447.0874639, + "seen": 1787690477.6411958, + "ast_hash": "3a321bafe584c0752d2e802025bb7d17", + "semantic_hash": "" + }, + "backend/prisma/seed-custom.ts": { + "mtime": 1787419447.091476, + "seen": 1787690477.6411996, + "ast_hash": "90fb4f88c31d61c6611aab8168add2ca", + "semantic_hash": "" + }, + "backend/prisma/seed-home.ts": { + "mtime": 1787419447.0924768, + "seen": 1787690477.6412032, + "ast_hash": "84e6c6d21991e4a86e6b10174c4d0362", + "semantic_hash": "" + }, + "backend/prisma/seed-products.ts": { + "mtime": 1787419447.0974777, + "seen": 1787690477.6412115, + "ast_hash": "5843abe3a33a2409e457b57597d16af9", + "semantic_hash": "" + }, + "backend/prisma/seed-ui-texts.ts": { + "mtime": 1787419447.0990252, + "seen": 1787690477.641215, + "ast_hash": "6b26294824a3bbc1f7d20bb4f6ded8a2", + "semantic_hash": "" + }, + "backend/prisma/seed-wiki.ts": { + "mtime": 1787419447.100495, + "seen": 1787690477.6412182, + "ast_hash": "86d0e008fd749bd602ecdce3a5ef4d54", + "semantic_hash": "" + }, + "backend/prisma/seed.ts": { + "mtime": 1787419447.10478, + "seen": 1787690477.6412215, + "ast_hash": "5d47c6b1088514d49c23743b01355579", + "semantic_hash": "" + }, + "backend/prisma/tsconfig.seed.json": { + "mtime": 1787419447.108233, + "seen": 1787690477.6412306, + "ast_hash": "1c3a041bb1d6145b6dd3939bd4cb9082", + "semantic_hash": "" + }, + "backend/scripts/generate-openapi.ts": { + "mtime": 1787419447.1167028, + "seen": 1787690477.641243, + "ast_hash": "f4e8eab9e17b41445a8bfb8a58c429f2", + "semantic_hash": "" + }, + "backend/src/admin/admin.controller.spec.ts": { + "mtime": 1787419447.1210036, + "seen": 1787690477.6412508, + "ast_hash": "77e40109d929ead88a7d8c7d753a5f6d", + "semantic_hash": "" + }, + "backend/src/admin/admin.controller.ts": { + "mtime": 1787685267.369699, + "seen": 1787690477.6412547, + "ast_hash": "ad0127167503653fe002ab701cec9bf2", + "semantic_hash": "" + }, + "backend/src/admin/admin.module.ts": { + "mtime": 1787419447.1230185, + "seen": 1787690477.6412585, + "ast_hash": "63db5ded0feb25df0890dea25a32b7f5", + "semantic_hash": "" + }, + "backend/src/admin/admin.service.spec.ts": { + "mtime": 1787690131.7806044, + "seen": 1787690477.6412625, + "ast_hash": "1dff29f7c3ecaeaf2baab64828726b1d", + "semantic_hash": "" + }, + "backend/src/admin/admin.service.ts": { + "mtime": 1787685267.3726997, + "seen": 1787690477.6412666, + "ast_hash": "0763c92e78a6504f338d6fcfbba2b9bb", + "semantic_hash": "" + }, + "backend/src/admin/blogs.controller.ts": { + "mtime": 1787685267.3746984, + "seen": 1787690477.6412709, + "ast_hash": "f9a3cb37a2914448819d7e9b3d3c2516", + "semantic_hash": "" + }, + "backend/src/admin/blogs.service.ts": { + "mtime": 1787685267.3766992, + "seen": 1787690477.6412745, + "ast_hash": "2b1f459027dc6238a4bb4d4c9650d9ea", + "semantic_hash": "" + }, + "backend/src/admin/categories.controller.ts": { + "mtime": 1787419447.131965, + "seen": 1787690477.6412783, + "ast_hash": "beb49b7fbff3aaefa9949f8f34da4e3a", + "semantic_hash": "" + }, + "backend/src/admin/categories.service.ts": { + "mtime": 1787419447.1343584, + "seen": 1787690477.641282, + "ast_hash": "ca2ee943937b7f1633c082018d9b1712", + "semantic_hash": "" + }, + "backend/src/admin/dto/admin-query.dto.ts": { + "mtime": 1787419447.1371584, + "seen": 1787690477.6412857, + "ast_hash": "453127d7adec3c4d194e29899d0f11e8", + "semantic_hash": "" + }, + "backend/src/admin/media.controller.ts": { + "mtime": 1787419447.1411524, + "seen": 1787690477.641297, + "ast_hash": "b0859e18da9e6ef252f69f081c9eb33c", + "semantic_hash": "" + }, + "backend/src/admin/media.service.ts": { + "mtime": 1787419447.1428616, + "seen": 1787690477.6413007, + "ast_hash": "6fd49f2f590e92c63790777749f25881", + "semantic_hash": "" + }, + "backend/src/admin/pets.controller.ts": { + "mtime": 1787419447.1438787, + "seen": 1787690477.6413043, + "ast_hash": "4a67863c0d14f78abc432f301e1a12ec", + "semantic_hash": "" + }, + "backend/src/admin/pets.service.ts": { + "mtime": 1787419447.1448772, + "seen": 1787690477.6413078, + "ast_hash": "47bef86cc2bce9c6a02dd1291edfa0f7", + "semantic_hash": "" + }, + "backend/src/admin/reports.controller.ts": { + "mtime": 1787690131.7806044, + "seen": 1787690477.641312, + "ast_hash": "c0e65b41735dc91df523d173fd22a992", + "semantic_hash": "" + }, + "backend/src/admin/reports.service.ts": { + "mtime": 1787690131.7806044, + "seen": 1787690477.6413157, + "ast_hash": "82b9fa305590127b8360456e4e3ede28", + "semantic_hash": "" + }, + "backend/src/admin/wiki.controller.ts": { + "mtime": 1787419447.1524487, + "seen": 1787690477.6413271, + "ast_hash": "c3dc42b20fb1f3581b4066c7dbea1214", + "semantic_hash": "" + }, + "backend/src/admin/wiki.service.ts": { + "mtime": 1787419447.1554663, + "seen": 1787690477.6413307, + "ast_hash": "43920ded89173e39b156f883d455d4e0", + "semantic_hash": "" + }, + "backend/src/app.controller.spec.ts": { + "mtime": 1787419447.1574638, + "seen": 1787690477.6413345, + "ast_hash": "e91fed2ee35431d60d1adbf1d5739b83", + "semantic_hash": "" + }, + "backend/src/app.controller.ts": { + "mtime": 1787419447.158312, + "seen": 1787690477.6413386, + "ast_hash": "ae15d1c5a85e6ebfad68b7193766dfb5", + "semantic_hash": "" + }, + "backend/src/app.module.ts": { + "mtime": 1787685267.3806994, + "seen": 1787690477.6413422, + "ast_hash": "41bfbf3b2f8e7849707289d355548759", + "semantic_hash": "" + }, + "backend/src/app.service.ts": { + "mtime": 1787419447.1608388, + "seen": 1787690477.6413457, + "ast_hash": "08e985e831bca61f6be89c5c2ecef2fa", + "semantic_hash": "" + }, + "backend/src/auth/auth.controller.spec.ts": { + "mtime": 1787419447.1637266, + "seen": 1787690477.6413527, + "ast_hash": "e0a0bc1dfd69edc210a0736e8447be39", + "semantic_hash": "" + }, + "backend/src/auth/auth.controller.ts": { + "mtime": 1787685267.3836975, + "seen": 1787690477.641357, + "ast_hash": "1d930350785addaee3f62c22b1eb231d", + "semantic_hash": "" + }, + "backend/src/auth/auth.module.ts": { + "mtime": 1787419447.1667242, + "seen": 1787690477.6413624, + "ast_hash": "69513edb3291be24e1f5d843e493e0c2", + "semantic_hash": "" + }, + "backend/src/auth/auth.service.spec.ts": { + "mtime": 1787689074.6747842, + "seen": 1787690477.641366, + "ast_hash": "fa5db9189875db6181ddfbd0689c4662", + "semantic_hash": "" + }, + "backend/src/auth/auth.service.ts": { + "mtime": 1787419447.1716566, + "seen": 1787690477.6413696, + "ast_hash": "7087ee4ab89a34300b144b2c27d52d86", + "semantic_hash": "" + }, + "backend/src/auth/dto/admin-login.dto.ts": { + "mtime": 1787419447.173655, + "seen": 1787690477.6413734, + "ast_hash": "b08cc712a20e3d66d35892fd36ee04fa", + "semantic_hash": "" + }, + "backend/src/auth/dto/login.dto.ts": { + "mtime": 1787419447.175606, + "seen": 1787690477.6413772, + "ast_hash": "93ded6cf822accbc5a28649e67433eab", + "semantic_hash": "" + }, + "backend/src/auth/dto/register.dto.ts": { + "mtime": 1787419447.1766186, + "seen": 1787690477.641381, + "ast_hash": "908c5073e329d2b3d0d568e68c889741", + "semantic_hash": "" + }, + "backend/src/auth/dto/send-otp.dto.ts": { + "mtime": 1787419447.1776206, + "seen": 1787690477.6413846, + "ast_hash": "3a38aa22a3f2f590dc34587036572bee", + "semantic_hash": "" + }, + "backend/src/auth/dto/verify-otp.dto.ts": { + "mtime": 1787419447.179446, + "seen": 1787690477.641389, + "ast_hash": "5c67f26293765a968689b575abb29350", + "semantic_hash": "" + }, + "backend/src/auth/jwt-auth.guard.ts": { + "mtime": 1787419447.182641, + "seen": 1787690477.6413927, + "ast_hash": "28118342c470935281e5bb456586cb69", + "semantic_hash": "" + }, + "backend/src/auth/jwt.strategy.ts": { + "mtime": 1787419447.183642, + "seen": 1787690477.6413958, + "ast_hash": "180f68858a6e4bd785abff39b56354e9", + "semantic_hash": "" + }, + "backend/src/auth/roles.decorator.ts": { + "mtime": 1787419447.185641, + "seen": 1787690477.6413987, + "ast_hash": "445d2fa4b68069a148014a3c1e4ff77f", + "semantic_hash": "" + }, + "backend/src/auth/roles.guard.ts": { + "mtime": 1787419447.1876426, + "seen": 1787690477.641402, + "ast_hash": "38176797cb1ca781f3266d26e0c7d8a4", + "semantic_hash": "" + }, + "backend/src/b2b/b2b.controller.ts": { + "mtime": 1787685267.3856995, + "seen": 1787690477.641405, + "ast_hash": "9ed14065b6ff6e93f84072fcf6074c00", + "semantic_hash": "" + }, + "backend/src/b2b/b2b.module.ts": { + "mtime": 1787419447.192739, + "seen": 1787690477.6414084, + "ast_hash": "8a31f88146c94cef8de4be1bf06a2abf", + "semantic_hash": "" + }, + "backend/src/b2b/b2b.service.ts": { + "mtime": 1787419447.1947546, + "seen": 1787690477.641412, + "ast_hash": "1121fdac3d4bd193a89404930709718a", + "semantic_hash": "" + }, + "backend/src/banners/banners.controller.ts": { + "mtime": 1787419447.1987603, + "seen": 1787690477.6414158, + "ast_hash": "489ff8f5e32c643a43a83b69bce090fa", + "semantic_hash": "" + }, + "backend/src/banners/banners.module.ts": { + "mtime": 1787419447.2017102, + "seen": 1787690477.64142, + "ast_hash": "cd3273d3c9d9fef8693824e0a7ed0089", + "semantic_hash": "" + }, + "backend/src/banners/banners.service.ts": { + "mtime": 1787419447.2035012, + "seen": 1787690477.6414237, + "ast_hash": "e3e741c6f4f2d733f9e36c214c0ef76d", + "semantic_hash": "" + }, + "backend/src/blogs/blogs.controller.ts": { + "mtime": 1787685267.3887117, + "seen": 1787690477.6414268, + "ast_hash": "505cfd3b94cad5dd3ef2a0180f8590fd", + "semantic_hash": "" + }, + "backend/src/blogs/blogs.module.ts": { + "mtime": 1787419447.2085216, + "seen": 1787690477.6414306, + "ast_hash": "22cdf6a7d996ecdcf253e00f44ab7f3c", + "semantic_hash": "" + }, + "backend/src/blogs/blogs.service.ts": { + "mtime": 1787685267.3907106, + "seen": 1787690477.6414342, + "ast_hash": "419edb0c1b14c5413bae25c25ca7bb68", + "semantic_hash": "" + }, + "backend/src/blogs/dto/create-blog.dto.ts": { + "mtime": 1787419447.2111661, + "seen": 1787690477.6414378, + "ast_hash": "ae0041b36871ccc19b2fa0acf3f28f33", + "semantic_hash": "" + }, + "backend/src/blogs/dto/update-blog.dto.ts": { + "mtime": 1787419447.2121801, + "seen": 1787690477.641441, + "ast_hash": "73a137d70b861bec84b405052e62d604", + "semantic_hash": "" + }, + "backend/src/blogs/entities/blog.entity.ts": { + "mtime": 1787419447.2142348, + "seen": 1787690477.6414435, + "ast_hash": "e073c623d13e6bd84efe7ee64067ce5c", + "semantic_hash": "" + }, + "backend/src/cms/cms.controller.ts": { + "mtime": 1787419447.216249, + "seen": 1787690477.6414478, + "ast_hash": "fa7eabf1d55b456fe4b2f1497146fe82", + "semantic_hash": "" + }, + "backend/src/cms/cms.module.ts": { + "mtime": 1787419447.2172496, + "seen": 1787690477.6414516, + "ast_hash": "0d40207d3189a5b11368ad775e83e636", + "semantic_hash": "" + }, + "backend/src/cms/cms.service.ts": { + "mtime": 1787419447.2182505, + "seen": 1787690477.6414557, + "ast_hash": "c70de6ed8b959d3689a29ce6998a5bca", + "semantic_hash": "" + }, + "backend/src/cms/dto/cms.dto.ts": { + "mtime": 1787419447.2202504, + "seen": 1787690477.6414592, + "ast_hash": "3c8c9d19af6280bb37c4261f90d378a2", + "semantic_hash": "" + }, + "backend/src/common/decorators/roles.decorator.ts": { + "mtime": 1787419447.2232494, + "seen": 1787690477.6414633, + "ast_hash": "6ecfd73c2d7490b4a9b3192a8d31d310", + "semantic_hash": "" + }, + "backend/src/common/dto/pagination.dto.ts": { + "mtime": 1787419447.2259023, + "seen": 1787690477.6414666, + "ast_hash": "cf9cbd7eabe2a4e93eb56532d84b6123", + "semantic_hash": "" + }, + "backend/src/common/filters/http-exception.filter.ts": { + "mtime": 1787685267.3947115, + "seen": 1787690477.6414769, + "ast_hash": "9ce9d968bdb8bd0b2b527664001dd944", + "semantic_hash": "" + }, + "backend/src/common/filters/prisma-exception.filter.ts": { + "mtime": 1787685267.3967109, + "seen": 1787690477.6414807, + "ast_hash": "7f2b4762769d6dce98b58c16ba725d51", + "semantic_hash": "" + }, + "backend/src/common/guards/roles.guard.spec.ts": { + "mtime": 1787419447.2321444, + "seen": 1787690477.6414845, + "ast_hash": "fe951d2e1e5b22fe1274821390de189e", + "semantic_hash": "" + }, + "backend/src/common/guards/roles.guard.ts": { + "mtime": 1787419447.2341566, + "seen": 1787690477.6414886, + "ast_hash": "f4a6337d03562343b734c18be4134502", + "semantic_hash": "" + }, + "backend/src/common/interceptors/decimal.interceptor.spec.ts": { + "mtime": 1787419447.2411566, + "seen": 1787690477.6414924, + "ast_hash": "2ddd82f783ef49528d3d91679caad1fd", + "semantic_hash": "" + }, + "backend/src/common/interceptors/decimal.interceptor.ts": { + "mtime": 1787419447.2431602, + "seen": 1787690477.6414962, + "ast_hash": "95958857ac7f072abd7fc9c5cc4a7289", + "semantic_hash": "" + }, + "backend/src/common/metrics.controller.ts": { + "mtime": 1787419447.2471573, + "seen": 1787690477.6414998, + "ast_hash": "71ceb838543101884d3deb1e3434b2ee", + "semantic_hash": "" + }, + "backend/src/common/schemas/error-response.schema.ts": { + "mtime": 1787419447.248668, + "seen": 1787690477.6415105, + "ast_hash": "c29c6ca8ea88a75ce89d955e70040062", + "semantic_hash": "" + }, + "backend/src/common/schemas/paginated-response.schema.ts": { + "mtime": 1787419447.250682, + "seen": 1787690477.641514, + "ast_hash": "023b76c11ab671a99ddb007ec50c8615", + "semantic_hash": "" + }, + "backend/src/common/services/sms.service.ts": { + "mtime": 1787419447.2536821, + "seen": 1787690477.6415176, + "ast_hash": "b59dbcdbaa42fdf2d74b46953943e46a", + "semantic_hash": "" + }, + "backend/src/common/sms.module.ts": { + "mtime": 1787419447.2566812, + "seen": 1787690477.6415215, + "ast_hash": "f25aa161ea86ce7c2992cdb8f5c9ccff", + "semantic_hash": "" + }, + "backend/src/contact/contact.controller.ts": { + "mtime": 1787685267.401711, + "seen": 1787690477.6415286, + "ast_hash": "b908f41730180857e37c2fb9ab346371", + "semantic_hash": "" + }, + "backend/src/contact/contact.module.ts": { + "mtime": 1787419447.2626822, + "seen": 1787690477.6415322, + "ast_hash": "99dcfd13ef6f73fb291ff4ba3772d87c", + "semantic_hash": "" + }, + "backend/src/contact/contact.service.ts": { + "mtime": 1787419447.263788, + "seen": 1787690477.6415358, + "ast_hash": "5f667187fc1a3d5516b09d7e1cc15139", + "semantic_hash": "" + }, + "backend/src/home/dto/create-home.dto.ts": { + "mtime": 1787419447.2773902, + "seen": 1787690477.6415648, + "ast_hash": "df4077ae467d2c365fa78f916d7c3c2f", + "semantic_hash": "" + }, + "backend/src/home/dto/update-home.dto.ts": { + "mtime": 1787419447.2783892, + "seen": 1787690477.6415684, + "ast_hash": "422b8d0643c0ed6189a55c4f3fe28c2d", + "semantic_hash": "" + }, + "backend/src/home/entities/home.entity.ts": { + "mtime": 1787419447.2793875, + "seen": 1787690477.6415718, + "ast_hash": "55a983c522298deae4d37035d192c08a", + "semantic_hash": "" + }, + "backend/src/home/home.controller.ts": { + "mtime": 1787419447.2803905, + "seen": 1787690477.6415746, + "ast_hash": "a7b123273863b8e27dcdf97a914d3136", + "semantic_hash": "" + }, + "backend/src/home/home.module.ts": { + "mtime": 1787419447.2813885, + "seen": 1787690477.6415775, + "ast_hash": "5c0864406c5bfa6b32f51b6511c32f54", + "semantic_hash": "" + }, + "backend/src/home/home.service.ts": { + "mtime": 1787419447.283913, + "seen": 1787690477.6415803, + "ast_hash": "39498bf5facebaf8e5d628c157f4efc6", + "semantic_hash": "" + }, + "backend/src/ingredients/ingredients.controller.ts": { + "mtime": 1787419447.2872872, + "seen": 1787690477.6415834, + "ast_hash": "7c34fbf682f889ef36b2550604df9529", + "semantic_hash": "" + }, + "backend/src/ingredients/ingredients.module.ts": { + "mtime": 1787419447.2898164, + "seen": 1787690477.6415868, + "ast_hash": "7375ef7a1e61582aee17ad5a8e35b96f", + "semantic_hash": "" + }, + "backend/src/ingredients/ingredients.service.ts": { + "mtime": 1787419447.2921636, + "seen": 1787690477.6415904, + "ast_hash": "3377f4b9da09def5e567c0770989b3f9", + "semantic_hash": "" + }, + "backend/src/main.ts": { + "mtime": 1787685267.4042451, + "seen": 1787690477.6415937, + "ast_hash": "47eec0530887282a2051a6a9ca6012d9", + "semantic_hash": "" + }, + "backend/src/orders/dto/create-order.dto.ts": { + "mtime": 1787419447.3018267, + "seen": 1787690477.641615, + "ast_hash": "3eb822ba5a86ab5a07118dafb11b9be5", + "semantic_hash": "" + }, + "backend/src/orders/orders.controller.spec.ts": { + "mtime": 1787419447.3038373, + "seen": 1787690477.6416185, + "ast_hash": "638a1bf6226b5ee3491d963d528f389b", + "semantic_hash": "" + }, + "backend/src/orders/orders.controller.ts": { + "mtime": 1787419447.3048415, + "seen": 1787690477.6416216, + "ast_hash": "2394133da39f84a78074ba74c6626212", + "semantic_hash": "" + }, + "backend/src/orders/orders.module.ts": { + "mtime": 1787419447.3068357, + "seen": 1787690477.6416247, + "ast_hash": "65963365977ff4bf0b5dc14f332d3d01", + "semantic_hash": "" + }, + "backend/src/orders/orders.service.spec.ts": { + "mtime": 1787689257.146934, + "seen": 1787690477.6416283, + "ast_hash": "7266d9e2e01767a30fa070cf32bbf220", + "semantic_hash": "" + }, + "backend/src/orders/orders.service.ts": { + "mtime": 1787419447.3108416, + "seen": 1787690477.6416318, + "ast_hash": "68ffd789d9e13b8089878e453b7fe1fd", + "semantic_hash": "" + }, + "backend/src/pets/dto/create-health-log.dto.ts": { + "mtime": 1787419447.3330498, + "seen": 1787690477.6416793, + "ast_hash": "33d52e915c86411d822fec6867d2d31d", + "semantic_hash": "" + }, + "backend/src/pets/dto/create-pet.dto.ts": { + "mtime": 1787419447.3357577, + "seen": 1787690477.6416848, + "ast_hash": "ac6b6ec98869ff43c8455efa48248684", + "semantic_hash": "" + }, + "backend/src/pets/dto/create-reminder.dto.ts": { + "mtime": 1787419447.3367567, + "seen": 1787690477.64169, + "ast_hash": "e8b99f99445499b9d2747476bb5d01fb", + "semantic_hash": "" + }, + "backend/src/pets/dto/update-pet.dto.ts": { + "mtime": 1787419447.338758, + "seen": 1787690477.6416955, + "ast_hash": "8b8b9cbedfcdefe431fca544902f5856", + "semantic_hash": "" + }, + "backend/src/pets/pets.controller.spec.ts": { + "mtime": 1787419447.3407574, + "seen": 1787690477.6417005, + "ast_hash": "b7896890c47836ebdbc350487f0b0d43", + "semantic_hash": "" + }, + "backend/src/pets/pets.controller.ts": { + "mtime": 1787419472.6844227, + "seen": 1787690477.641706, + "ast_hash": "20d94203b8b90f29b49602864c2d0301", + "semantic_hash": "" + }, + "backend/src/pets/pets.module.ts": { + "mtime": 1787419447.3437567, + "seen": 1787690477.641711, + "ast_hash": "ee4955ac9a9e16cfc305ccdf98be510b", + "semantic_hash": "" + }, + "backend/src/pets/pets.service.spec.ts": { + "mtime": 1787419447.344706, + "seen": 1787690477.6417165, + "ast_hash": "90bc98ffac2b3e95fd7cfb263156f22a", + "semantic_hash": "" + }, + "backend/src/pets/pets.service.ts": { + "mtime": 1787419447.3462317, + "seen": 1787690477.6417215, + "ast_hash": "9a1db130da778d480115c18b153966d5", + "semantic_hash": "" + }, + "backend/src/prescriptions/prescriptions.controller.ts": { + "mtime": 1787419447.3487427, + "seen": 1787690477.641727, + "ast_hash": "7890603140b50c69be341eadd9d764d7", + "semantic_hash": "" + }, + "backend/src/prescriptions/prescriptions.module.ts": { + "mtime": 1787419447.3497567, + "seen": 1787690477.641732, + "ast_hash": "1953382363319256b3e5b260ddd3647f", + "semantic_hash": "" + }, + "backend/src/prescriptions/prescriptions.service.ts": { + "mtime": 1787419447.350758, + "seen": 1787690477.6417372, + "ast_hash": "5a984a0557b75f48a347ced7a2108129", + "semantic_hash": "" + }, + "backend/src/prisma/prisma.module.ts": { + "mtime": 1787419447.3527582, + "seen": 1787690477.6417427, + "ast_hash": "0d14fad4b4742f49ea6d9d9c48069e8b", + "semantic_hash": "" + }, + "backend/src/prisma/prisma.service.ts": { + "mtime": 1787685267.413258, + "seen": 1787690477.6417482, + "ast_hash": "551a5772d6f7c5c486656bb40ad4347b", + "semantic_hash": "" + }, + "backend/src/products/dto/get-products.dto.ts": { + "mtime": 1787419447.356758, + "seen": 1787690477.6417537, + "ast_hash": "7be5a16cea53f5a0e162f50e538ae806", + "semantic_hash": "" + }, + "backend/src/products/products.controller.spec.ts": { + "mtime": 1787419447.3577566, + "seen": 1787690477.6417594, + "ast_hash": "716f2912f860310c02d70b894b7f4185", + "semantic_hash": "" + }, + "backend/src/products/products.controller.ts": { + "mtime": 1787419447.3607576, + "seen": 1787690477.6417646, + "ast_hash": "af1d663c2e6172a7c98d3b67cdc6595d", + "semantic_hash": "" + }, + "backend/src/products/products.module.ts": { + "mtime": 1787419447.3627608, + "seen": 1787690477.6417708, + "ast_hash": "e878bf5aadb04cf92b6c13ab5cc2fd16", + "semantic_hash": "" + }, + "backend/src/products/products.service.spec.ts": { + "mtime": 1787689035.974116, + "seen": 1787690477.6417763, + "ast_hash": "453aaccd9ee6bf73191fdbea10a97372", + "semantic_hash": "" + }, + "backend/src/products/products.service.ts": { + "mtime": 1787685267.415257, + "seen": 1787690477.641782, + "ast_hash": "d0203568e266240feee6ace2d85725e0", + "semantic_hash": "" + }, + "backend/src/redis/redis.module.ts": { + "mtime": 1787419447.368757, + "seen": 1787690477.6417875, + "ast_hash": "71949c2bf69ce43c1f2c08da0e06a909", + "semantic_hash": "" + }, + "backend/src/redis/redis.service.spec.ts": { + "mtime": 1787419447.370759, + "seen": 1787690477.6417933, + "ast_hash": "d2fc4cdae209924ea964855dadbf9664", + "semantic_hash": "" + }, + "backend/src/redis/redis.service.ts": { + "mtime": 1787419447.371759, + "seen": 1787690477.641799, + "ast_hash": "9dde0cb60def4cda219fbfd6308cc80c", + "semantic_hash": "" + }, + "backend/src/seo/seo.controller.ts": { + "mtime": 1787419447.3813937, + "seen": 1787690477.6418297, + "ast_hash": "2bfeb64350ce8850515418978d1387d0", + "semantic_hash": "" + }, + "backend/src/seo/seo.module.ts": { + "mtime": 1787419447.3823936, + "seen": 1787690477.641833, + "ast_hash": "465aedb9322bc7300b47e50a9b91c2a7", + "semantic_hash": "" + }, + "backend/src/seo/seo.service.ts": { + "mtime": 1787419447.383396, + "seen": 1787690477.6418364, + "ast_hash": "294df8372a5ba1c0dca2cad328ba6e61", + "semantic_hash": "" + }, + "backend/src/settings/settings.controller.spec.ts": { + "mtime": 1787689108.952156, + "seen": 1787690477.6418512, + "ast_hash": "e0daf39a81af49770b9f01d749fc90d8", + "semantic_hash": "" + }, + "backend/src/settings/settings.controller.ts": { + "mtime": 1787419447.3918915, + "seen": 1787690477.641856, + "ast_hash": "d01f18a4b05bd80cfc5d35e4136f48ed", + "semantic_hash": "" + }, + "backend/src/settings/settings.module.ts": { + "mtime": 1787419447.3928921, + "seen": 1787690477.6418588, + "ast_hash": "2f23688e3eabb3f2523723426c294fe1", + "semantic_hash": "" + }, + "backend/src/settings/settings.service.spec.ts": { + "mtime": 1787689361.1569347, + "seen": 1787690477.6418629, + "ast_hash": "f505ca5fbfde718cb374d0c42c9d766a", + "semantic_hash": "" + }, + "backend/src/settings/settings.service.ts": { + "mtime": 1787419472.6872165, + "seen": 1787690477.6418655, + "ast_hash": "d85058ceb0abfa98b11c27ce7f6c5f74", + "semantic_hash": "" + }, + "backend/src/smart-advisor/smart-advisor.controller.ts": { + "mtime": 1787419447.3987586, + "seen": 1787690477.6418712, + "ast_hash": "61dd83ebf4f339d8b9a3a7e434f99f2b", + "semantic_hash": "" + }, + "backend/src/smart-advisor/smart-advisor.module.ts": { + "mtime": 1787419447.4012039, + "seen": 1787690477.641875, + "ast_hash": "c2fe6e63526431bbd01b86e24bd2ce71", + "semantic_hash": "" + }, + "backend/src/smart-advisor/smart-advisor.service.ts": { + "mtime": 1787419447.402725, + "seen": 1787690477.6418781, + "ast_hash": "d7e925d8c643fd6fd07053f031f68501", + "semantic_hash": "" + }, + "backend/src/testimonials/testimonials.controller.ts": { + "mtime": 1787419447.4047272, + "seen": 1787690477.6418808, + "ast_hash": "7026523d17bbe3ed2e54a19d6e14656b", + "semantic_hash": "" + }, + "backend/src/testimonials/testimonials.module.ts": { + "mtime": 1787419447.4098227, + "seen": 1787690477.641884, + "ast_hash": "7f75222fa6c0959e447618673d9b56af", + "semantic_hash": "" + }, + "backend/src/testimonials/testimonials.service.ts": { + "mtime": 1787419447.4118228, + "seen": 1787690477.6418872, + "ast_hash": "65b07546f223bc46cc2c2a7da8f2a2a2", + "semantic_hash": "" + }, + "backend/src/users/dto/address.dto.ts": { + "mtime": 1787419447.4246159, + "seen": 1787690477.6419108, + "ast_hash": "3057c1d0dfe193a35d24ec0bf4bfe78b", + "semantic_hash": "" + }, + "backend/src/users/dto/update-profile.dto.ts": { + "mtime": 1787419447.4266162, + "seen": 1787690477.6419137, + "ast_hash": "1d21350785dcfedecefd1e218abd2ae1", + "semantic_hash": "" + }, + "backend/src/users/users.controller.spec.ts": { + "mtime": 1787419447.4276173, + "seen": 1787690477.6419165, + "ast_hash": "fa08c6089fe40b4717f0d754e5bd6004", + "semantic_hash": "" + }, + "backend/src/users/users.controller.ts": { + "mtime": 1787419447.4302597, + "seen": 1787690477.64192, + "ast_hash": "7a3fe3d0b36224f73d5954732568d3d0", + "semantic_hash": "" + }, + "backend/src/users/users.module.ts": { + "mtime": 1787419447.431727, + "seen": 1787690477.6419232, + "ast_hash": "cdb188eb18f47f28cd126f037d2a6d96", + "semantic_hash": "" + }, + "backend/src/users/users.service.spec.ts": { + "mtime": 1787689221.0236013, + "seen": 1787690477.6419268, + "ast_hash": "ab4f7af681ffc687ed8aa79aac741c58", + "semantic_hash": "" + }, + "backend/src/users/users.service.ts": { + "mtime": 1787419447.4381118, + "seen": 1787690477.6419299, + "ast_hash": "c7e67ccf404025558ea83c423c263eec", + "semantic_hash": "" + }, + "backend/src/videos/dto/create-video.dto.ts": { + "mtime": 1787419447.4411094, + "seen": 1787690477.6419337, + "ast_hash": "bb1325c7e842337611b85c5261185c35", + "semantic_hash": "" + }, + "backend/src/videos/dto/get-videos-query.dto.ts": { + "mtime": 1787419447.4421153, + "seen": 1787690477.6419377, + "ast_hash": "3a8779b897271f907c69f7ff2cb97dce", + "semantic_hash": "" + }, + "backend/src/videos/videos.controller.ts": { + "mtime": 1787419447.444019, + "seen": 1787690477.6419406, + "ast_hash": "31939b3a8491384a6fc87ba65281b6e5", + "semantic_hash": "" + }, + "backend/src/videos/videos.module.ts": { + "mtime": 1787419447.4450336, + "seen": 1787690477.6419444, + "ast_hash": "b5a7f36affbf945a2732068d4358eb63", + "semantic_hash": "" + }, + "backend/src/videos/videos.service.ts": { + "mtime": 1787419447.4460294, + "seen": 1787690477.6419475, + "ast_hash": "ecf681a8895b4ed7f1fb3860d351de59", + "semantic_hash": "" + }, + "backend/src/wholesale/dto/wholesale-apply.dto.ts": { + "mtime": 1787419447.4490292, + "seen": 1787690477.641951, + "ast_hash": "370a357e4a2d8ab2b63910b1a06a0961", + "semantic_hash": "" + }, + "backend/src/wholesale/wholesale.controller.ts": { + "mtime": 1787419447.4525533, + "seen": 1787690477.6419544, + "ast_hash": "053a7bc76d6817f0d9d7d61336cd7471", + "semantic_hash": "" + }, + "backend/src/wholesale/wholesale.module.ts": { + "mtime": 1787419447.454555, + "seen": 1787690477.6419573, + "ast_hash": "bbd31d666b40420987773d467b41fbf9", + "semantic_hash": "" + }, + "backend/src/wholesale/wholesale.service.ts": { + "mtime": 1787419447.455557, + "seen": 1787690477.6419601, + "ast_hash": "bb27f787ebace47dc7adb3341f3b27fb", + "semantic_hash": "" + }, + "backend/src/wiki/dto/create-wiki.dto.ts": { + "mtime": 1787419447.4582222, + "seen": 1787690477.6419632, + "ast_hash": "2e71a338ebd08b2b2bc544e4b138918e", + "semantic_hash": "" + }, + "backend/src/wiki/dto/update-wiki.dto.ts": { + "mtime": 1787419447.4599707, + "seen": 1787690477.6419666, + "ast_hash": "5647bfa9110cc275a05b5abe1545bc64", + "semantic_hash": "" + }, + "backend/src/wiki/entities/wiki.entity.ts": { + "mtime": 1787419447.462367, + "seen": 1787690477.6419702, + "ast_hash": "d1616f5e4ff1b13c3139b31d8ae903d1", + "semantic_hash": "" + }, + "backend/src/wiki/wiki.controller.ts": { + "mtime": 1787419447.4633677, + "seen": 1787690477.641973, + "ast_hash": "5405d3de6e9596f5ca209b9c9cc58be3", + "semantic_hash": "" + }, + "backend/src/wiki/wiki.module.ts": { + "mtime": 1787419447.4656882, + "seen": 1787690477.6419764, + "ast_hash": "65da924f2771bb2bd80f536ac446ff50", + "semantic_hash": "" + }, + "backend/src/wiki/wiki.service.ts": { + "mtime": 1787419447.4678478, + "seen": 1787690477.6419795, + "ast_hash": "19beea2629748a333d58fc7bbaf82833", + "semantic_hash": "" + }, + "backend/test/app-audit-verification.e2e-spec.ts": { + "mtime": 1787419447.4768798, + "seen": 1787690477.6419904, + "ast_hash": "c8e43f02f9454c3936e18a2226f51f9a", + "semantic_hash": "" + }, + "backend/test/app.e2e-spec.ts": { + "mtime": 1787419447.4838781, + "seen": 1787690477.642001, + "ast_hash": "513e0b1b62239578b5f34cf07e18bc25", + "semantic_hash": "" + }, + "backend/tsconfig.build.json": { + "mtime": 1787419447.4863586, + "seen": 1787690477.6420083, + "ast_hash": "0904b7029f6696a1059ce70a6aceba2b", + "semantic_hash": "" + }, + "backend/tsconfig.json": { + "mtime": 1787419447.4869833, + "seen": 1787690477.642012, + "ast_hash": "fda93625ad86af234796ec38813d43f0", + "semantic_hash": "" + }, + "docs/audit/build_manifest.js": { + "mtime": 1787419447.753911, + "seen": 1787690477.6420686, + "ast_hash": "89eb3bf5f98e862ab63388034c4b40be", + "semantic_hash": "" + }, + "docs/audit/generate_classification.js": { + "mtime": 1787419447.7641265, + "seen": 1787690477.642073, + "ast_hash": "b9394b3a0417332320f85855ce9c9b38", + "semantic_hash": "" + }, + "docs/audit/generate_evidence.js": { + "mtime": 1787419447.7662418, + "seen": 1787690477.6420774, + "ast_hash": "c5b179959394c82e7e80a58d130cfd93", + "semantic_hash": "" + }, + "docs/audit/generate_ledger.js": { + "mtime": 1787419447.769255, + "seen": 1787690477.6420817, + "ast_hash": "37af0a7ccf837e147ed990c41848c656", + "semantic_hash": "" + }, + "docs/audit/generate_manifest.js": { + "mtime": 1787419447.771257, + "seen": 1787690477.6420856, + "ast_hash": "9dbc50df5afe747f54af5eb4ac7ca19e", + "semantic_hash": "" + }, + "docs/audit/rebuild_honest_ledger.js": { + "mtime": 1787419447.8012547, + "seen": 1787690477.6420946, + "ast_hash": "1cec30217b23961a7545e187bf506aad", + "semantic_hash": "" + }, + "docs/audit/sync_honest_manifest.js": { + "mtime": 1787419447.8042545, + "seen": 1787690477.6421006, + "ast_hash": "7ea75c069e0aa64acabd358c87846677", + "semantic_hash": "" + }, + "docs/audit/sync_manifest.js": { + "mtime": 1787419447.8072748, + "seen": 1787690477.6421058, + "ast_hash": "fb0b5e85da9988385461c9874b81f098", + "semantic_hash": "" + }, + "docs/audit/validate_evidence_grade.js": { + "mtime": 1787419447.8092697, + "seen": 1787690477.6421092, + "ast_hash": "c1d1588bda6bf7af78e33346d79f91bd", + "semantic_hash": "" + }, + "docs/audit/validate_integrity.js": { + "mtime": 1787419447.812268, + "seen": 1787690477.6421125, + "ast_hash": "a3b980c7fa29a6027b9c4d9655be040b", + "semantic_hash": "" + }, + "frontend/admin-panel/eslint.config.js": { + "mtime": 1787419447.8182826, + "seen": 1787690477.6421158, + "ast_hash": "469375c6626501bacfd4c0ccd0c378e6", + "semantic_hash": "" + }, + "frontend/admin-panel/package.json": { + "mtime": 1787419447.828282, + "seen": 1787690477.642119, + "ast_hash": "c3c6b2a5cb69e912965b5e64269955df", + "semantic_hash": "" + }, + "frontend/admin-panel/postcss.config.js": { + "mtime": 1787419447.8292823, + "seen": 1787690477.642122, + "ast_hash": "ac96fa81e8dd4224012bce81068fe169", + "semantic_hash": "" + }, + "frontend/admin-panel/src/App.tsx": { + "mtime": 1787419450.0987012, + "seen": 1787690477.6421251, + "ast_hash": "07ad8fa90c7724d58bc2272232e84304", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/Layout.tsx": { + "mtime": 1787419450.120241, + "seen": 1787690477.6421287, + "ast_hash": "b6e0388d77bf986189f18633a2b848e2", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ProtectedRoute.tsx": { + "mtime": 1787419450.122357, + "seen": 1787690477.6421325, + "ast_hash": "9b0965a0c597dbed24e361dc38eabc62", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/Sidebar.tsx": { + "mtime": 1787503865.7887416, + "seen": 1787690477.6421397, + "ast_hash": "91feef4058bd7dea86998ce6513cd27c", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/Topbar.tsx": { + "mtime": 1787503865.79075, + "seen": 1787690477.642144, + "ast_hash": "29413e6c7b6ea8598aa7e394e330e4ac", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/ConfirmModal.tsx": { + "mtime": 1787419450.132507, + "seen": 1787690477.6421673, + "ast_hash": "ac8a3a8c64f0fa323bada59255e54770", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/MediaSelector.tsx": { + "mtime": 1787419450.1422079, + "seen": 1787690477.6422074, + "ast_hash": "604e8770ef400157577ac6ca672fbe5f", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/Pagination.tsx": { + "mtime": 1787419450.1437314, + "seen": 1787690477.6422203, + "ast_hash": "05a517227751a7eccaba34297e4e72f4", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/Skeleton.tsx": { + "mtime": 1787419450.1489928, + "seen": 1787690477.642242, + "ast_hash": "d0e0b68406b961327ce6fd161d3ee38f", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/Spinner.tsx": { + "mtime": 1787419450.150992, + "seen": 1787690477.642245, + "ast_hash": "860c9ddc5f95388cc04315b0c68a40b2", + "semantic_hash": "" + }, + "frontend/admin-panel/src/main.tsx": { + "mtime": 1787419450.1775818, + "seen": 1787690477.642262, + "ast_hash": "288b6263eff18a102e65eb7bf9214580", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/B2BManager.tsx": { + "mtime": 1787503865.8035686, + "seen": 1787690477.642266, + "ast_hash": "5f94a736044e1ad4b1d86b1dd5433a6e", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/BannersManager.tsx": { + "mtime": 1787503865.8061829, + "seen": 1787690477.6423094, + "ast_hash": "c719d0adce478ffd0aeb0a7cdbc4c3ea", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/Blogs.tsx": { + "mtime": 1787688180.0009122, + "seen": 1787690477.6423142, + "ast_hash": "2e70e5b875d746e82a7cd82b6f767710", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/CMS.tsx": { + "mtime": 1787503865.811185, + "seen": 1787690477.6423178, + "ast_hash": "ff1e756a14a9b95debfbdec4f21b9424", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/Categories.tsx": { + "mtime": 1787503865.8149645, + "seen": 1787690477.6423213, + "ast_hash": "7efdd3e5fa717cb2c0b66bb2eaedc95b", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/ContactSubmissions.tsx": { + "mtime": 1787503865.8165739, + "seen": 1787690477.6423244, + "ast_hash": "9e68faae1cab867faf7a57bc7f239f76", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/Coupons.tsx": { + "mtime": 1787503865.8191109, + "seen": 1787690477.6423283, + "ast_hash": "662c4254487f086260d234979179ee20", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/Dashboard.tsx": { + "mtime": 1787419450.1951823, + "seen": 1787690477.6423318, + "ast_hash": "d5d6ab4fd01e3941b51e524649dc5edd", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/FinancialSettingsPage.tsx": { + "mtime": 1787503865.826406, + "seen": 1787690477.6423464, + "ast_hash": "b3862c61a93eaea81fff83c5850985b0", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/IngredientsManager.tsx": { + "mtime": 1787503865.8284216, + "seen": 1787690477.6423512, + "ast_hash": "00358139f5c088cd2d1e7897f7e93d69", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/Login.tsx": { + "mtime": 1787419450.2020392, + "seen": 1787690477.642357, + "ast_hash": "5d702d3e065a2f7416df25f28b0e1062", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/Media.tsx": { + "mtime": 1787503865.830418, + "seen": 1787690477.642361, + "ast_hash": "2a2bd7a70066c4d06d58491c00beeaff", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/Orders.tsx": { + "mtime": 1787503865.8381035, + "seen": 1787690477.6423721, + "ast_hash": "39fafcfdd305e53489c5faa0be116ea0", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/Pets.tsx": { + "mtime": 1787503865.842475, + "seen": 1787690477.6423793, + "ast_hash": "7cbec12a36c65cced68e89ff5f61bb64", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/PrescriptionsManager.tsx": { + "mtime": 1787503865.8449986, + "seen": 1787690477.642383, + "ast_hash": "d46ffa0bc945f3211dab760331d3a84d", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/Products.tsx": { + "mtime": 1787685267.4337914, + "seen": 1787690477.6423893, + "ast_hash": "16f3af190668ce197a7d8a7b73b7dc5d", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/Reports.tsx": { + "mtime": 1787687651.0996404, + "seen": 1787690477.6423926, + "ast_hash": "c00ee8b51522ba7303f694f92928a599", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/SeoSettingsPage.tsx": { + "mtime": 1787503865.8711812, + "seen": 1787690477.6424084, + "ast_hash": "b89faf96d530f11e10acce12fd594dd0", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/Settings.tsx": { + "mtime": 1787503865.874658, + "seen": 1787690477.642414, + "ast_hash": "21e937a64900980dd9f9e0228586bd45", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/SmartAdvisorManager.tsx": { + "mtime": 1787503865.878831, + "seen": 1787690477.642426, + "ast_hash": "6a81f2e1c7a91294c3a0d4e25b6dece9", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/SystemSettingsPage.tsx": { + "mtime": 1787503865.8857567, + "seen": 1787690477.6424417, + "ast_hash": "acf69cb759334aca252338930118175d", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/TestimonialsManager.tsx": { + "mtime": 1787503865.887891, + "seen": 1787690477.6424468, + "ast_hash": "c9f48c661c593f7c60e8e4cd224a3f1e", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/UITexts.tsx": { + "mtime": 1787685267.438068, + "seen": 1787690477.642464, + "ast_hash": "82091f8bcd3abd15250dd95884fe958b", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/Users.tsx": { + "mtime": 1787503865.8986168, + "seen": 1787690477.6424694, + "ast_hash": "28183f8ded632c927a11d1e4876fcd66", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/Videos.tsx": { + "mtime": 1787503865.9039042, + "seen": 1787690477.6424747, + "ast_hash": "d8b10804162ea9891ecbc88ef9de20a2", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/WholesaleApplications.tsx": { + "mtime": 1787503865.907041, + "seen": 1787690477.6424801, + "ast_hash": "4a8e1a99b42ac58f623eb3563f817ea7", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/Wiki.tsx": { + "mtime": 1787503865.9161067, + "seen": 1787690477.6424856, + "ast_hash": "293baa4570b42529ac96ab788c417427", + "semantic_hash": "" + }, + "frontend/admin-panel/src/routes/adminRoutes.tsx": { + "mtime": 1787503865.9275491, + "seen": 1787690477.642496, + "ast_hash": "a6249e0ca28439d0698e614c4c336b1e", + "semantic_hash": "" + }, + "frontend/admin-panel/src/services/api.ts": { + "mtime": 1787419450.269887, + "seen": 1787690477.642501, + "ast_hash": "0c1b1fc8da36abf0cdbe2daacda1229c", + "semantic_hash": "" + }, + "frontend/admin-panel/src/store/adminAuthStore.ts": { + "mtime": 1787419450.2769375, + "seen": 1787690477.642506, + "ast_hash": "14c723815e4fda2462f19194b89bcee8", + "semantic_hash": "" + }, + "frontend/admin-panel/src/types/admin.ts": { + "mtime": 1787419450.285071, + "seen": 1787690477.6425107, + "ast_hash": "8c155e134a1706d3fa8e1239bb00b93a", + "semantic_hash": "" + }, + "frontend/admin-panel/tailwind.config.js": { + "mtime": 1787419450.2908182, + "seen": 1787690477.642526, + "ast_hash": "9afb21cebd97d1d0507d3a6067926a05", + "semantic_hash": "" + }, + "frontend/admin-panel/tsconfig.app.json": { + "mtime": 1787419450.2921057, + "seen": 1787690477.6425312, + "ast_hash": "de0354eb5fafd189bac40f57c4d19ae6", + "semantic_hash": "" + }, + "frontend/admin-panel/tsconfig.json": { + "mtime": 1787419450.2932396, + "seen": 1787690477.6425357, + "ast_hash": "852c3a5df14a4b43ac28e9554ebedf4a", + "semantic_hash": "" + }, + "frontend/admin-panel/tsconfig.node.json": { + "mtime": 1787419450.2944238, + "seen": 1787690477.6425405, + "ast_hash": "1cd4c6b260b0dccbad5bc0a25029f390", + "semantic_hash": "" + }, + "frontend/admin-panel/vite.config.ts": { + "mtime": 1787419450.29612, + "seen": 1787690477.6425455, + "ast_hash": "199e1221ae03d6974fdc8b5e23787b98", + "semantic_hash": "" + }, + "frontend/application/app/ClientLayout.tsx": { + "mtime": 1787687679.711992, + "seen": 1787690477.6425507, + "ast_hash": "33fb19917143b6db2cbd2398d1c07b6d", + "semantic_hash": "" + }, + "frontend/application/app/HomeClient.tsx": { + "mtime": 1787419450.3064482, + "seen": 1787690477.642556, + "ast_hash": "96501c39e96a0390c0cfe934a83dde91", + "semantic_hash": "" + }, + "frontend/application/app/about/page.tsx": { + "mtime": 1787419450.3114164, + "seen": 1787690477.6425607, + "ast_hash": "1b91e23e04c4c1407a15ed384e9573d3", + "semantic_hash": "" + }, + "frontend/application/app/blog/[slug]/page.tsx": { + "mtime": 1787685267.4540634, + "seen": 1787690477.6425855, + "ast_hash": "57a46f2afd0ad7a9a6f59c89b85bb203", + "semantic_hash": "" + }, + "frontend/application/app/blog/page.tsx": { + "mtime": 1787685267.4590633, + "seen": 1787690477.642601, + "ast_hash": "1ef51891f0abd9e10daf349ccb5e0548", + "semantic_hash": "" + }, + "frontend/application/app/catalog/CatalogClient.tsx": { + "mtime": 1787419450.3180406, + "seen": 1787690477.642612, + "ast_hash": "4930fa8d5a26f8dad97ea0034af4a11d", + "semantic_hash": "" + }, + "frontend/application/app/catalog/page.tsx": { + "mtime": 1787419450.3195107, + "seen": 1787690477.6426172, + "ast_hash": "830de4643df6964602330c7c921dafdc", + "semantic_hash": "" + }, + "frontend/application/app/checkout/page.tsx": { + "mtime": 1787419450.3229702, + "seen": 1787690477.6426225, + "ast_hash": "de09434e1b8cc493aba8f68a9a4877de", + "semantic_hash": "" + }, + "frontend/application/app/checkout/success/[id]/page.tsx": { + "mtime": 1787419450.3257985, + "seen": 1787690477.6426287, + "ast_hash": "4b8d1a44de16d954f2ee250ffab2393f", + "semantic_hash": "" + }, + "frontend/application/app/contact/page.tsx": { + "mtime": 1787685267.464064, + "seen": 1787690477.642634, + "ast_hash": "c6efaf5602c23d89bf23cc0f2c3c547b", + "semantic_hash": "" + }, + "frontend/application/app/dashboard/page.tsx": { + "mtime": 1787419450.3295455, + "seen": 1787690477.6426394, + "ast_hash": "7e5f3aec18a3e994f37de7ba22e179e1", + "semantic_hash": "" + }, + "frontend/application/app/error.tsx": { + "mtime": 1787419450.3300738, + "seen": 1787690477.642645, + "ast_hash": "8787d6fd167a2cccf79a6cbb647a87dd", + "semantic_hash": "" + }, + "frontend/application/app/layout.tsx": { + "mtime": 1787685267.468064, + "seen": 1787690477.6426501, + "ast_hash": "b784eccc3667056137dce4f088c657a5", + "semantic_hash": "" + }, + "frontend/application/app/loading.tsx": { + "mtime": 1787419450.3370085, + "seen": 1787690477.6426558, + "ast_hash": "59b94663682a5cd89fa40cbd756dd05b", + "semantic_hash": "" + }, + "frontend/application/app/not-found.tsx": { + "mtime": 1787419450.3380215, + "seen": 1787690477.6426613, + "ast_hash": "142f5f3e6ffc3f99154cbec8f8be6c2d", + "semantic_hash": "" + }, + "frontend/application/app/page.tsx": { + "mtime": 1787419450.3390248, + "seen": 1787690477.6426675, + "ast_hash": "d9bee08f09678d8824eb5674dbb8e32f", + "semantic_hash": "" + }, + "frontend/application/app/privacy/page.tsx": { + "mtime": 1787419450.3444185, + "seen": 1787690477.6426797, + "ast_hash": "8aa76bf2165b08741e318f7d02c40ee7", + "semantic_hash": "" + }, + "frontend/application/app/profile/page.tsx": { + "mtime": 1787419450.3648918, + "seen": 1787690477.642685, + "ast_hash": "8cb315514a14d77cbffc60c7c78caa15", + "semantic_hash": "" + }, + "frontend/application/app/robots.ts": { + "mtime": 1787685267.4700637, + "seen": 1787690477.6426904, + "ast_hash": "edd21ccda3988914966bab117fa66858", + "semantic_hash": "" + }, + "frontend/application/app/search/page.tsx": { + "mtime": 1787419450.369915, + "seen": 1787690477.6426957, + "ast_hash": "0802e98f53f607a3276f2da1d9020b67", + "semantic_hash": "" + }, + "frontend/application/app/shop/[slug]/page.tsx": { + "mtime": 1787685267.4720638, + "seen": 1787690477.6427014, + "ast_hash": "fa83e548c310e8dc71070bd2c2896e31", + "semantic_hash": "" + }, + "frontend/application/app/shop/page.tsx": { + "mtime": 1787685267.4780638, + "seen": 1787690477.642723, + "ast_hash": "9911b5868fa0738672fb3f00e2092d6f", + "semantic_hash": "" + }, + "frontend/application/app/sitemap.ts": { + "mtime": 1787685267.4840631, + "seen": 1787690477.64274, + "ast_hash": "97b2d23330f435169d3fc9c141073c53", + "semantic_hash": "" + }, + "frontend/application/app/track/page.tsx": { + "mtime": 1787419450.382848, + "seen": 1787690477.6427455, + "ast_hash": "fc127e68ff3b25857286fe86a9e5b714", + "semantic_hash": "" + }, + "frontend/application/app/trust-seals/page.tsx": { + "mtime": 1787419450.3868961, + "seen": 1787690477.642751, + "ast_hash": "dcb73e6b7a0d4ad7446df3fa5845dd6a", + "semantic_hash": "" + }, + "frontend/application/app/videos/page.tsx": { + "mtime": 1787685267.4860642, + "seen": 1787690477.642756, + "ast_hash": "acc643abe7bfba049de995c42fb7fbf1", + "semantic_hash": "" + }, + "frontend/application/app/wiki/[slug]/page.tsx": { + "mtime": 1787685267.4890904, + "seen": 1787690477.642762, + "ast_hash": "1a8d0c92f2131e44c2797f65086347a1", + "semantic_hash": "" + }, + "frontend/application/app/wiki/page.tsx": { + "mtime": 1787419450.3991275, + "seen": 1787690477.6427677, + "ast_hash": "771d018bf3a87a9d3842d9b148e44d02", + "semantic_hash": "" + }, + "frontend/application/components/AddressModal.tsx": { + "mtime": 1787419450.4072487, + "seen": 1787690477.6427724, + "ast_hash": "017e607066feba21332274700b9e2ad4", + "semantic_hash": "" + }, + "frontend/application/components/ArchivePage.tsx": { + "mtime": 1787687912.7148325, + "seen": 1787690477.6427774, + "ast_hash": "9e69038249143301bf6706df79596a37", + "semantic_hash": "" + }, + "frontend/application/components/AuthModal.tsx": { + "mtime": 1787687760.3842044, + "seen": 1787690477.6427822, + "ast_hash": "48cff5adca98aa25506ae9e7016240d8", + "semantic_hash": "" + }, + "frontend/application/components/B2BPortal.tsx": { + "mtime": 1787419450.4136097, + "seen": 1787690477.6427934, + "ast_hash": "94ac7168aee8a51332eae4093ae1fd35", + "semantic_hash": "" + }, + "frontend/application/components/BackButton.tsx": { + "mtime": 1787419450.4146087, + "seen": 1787690477.642799, + "ast_hash": "d1cb2d3cb8a33562ab207887b3bcc3fb", + "semantic_hash": "" + }, + "frontend/application/components/BlogPage.tsx": { + "mtime": 1787688103.3433633, + "seen": 1787690477.6428108, + "ast_hash": "3752c4ce62102936b2bafb3dd1a26918", + "semantic_hash": "" + }, + "frontend/application/components/CartDrawer.tsx": { + "mtime": 1787419450.4463902, + "seen": 1787690477.6428332, + "ast_hash": "7a64f40b5054f199aa136d5254c2316c", + "semantic_hash": "" + }, + "frontend/application/components/CheckoutPage.tsx": { + "mtime": 1787419472.692564, + "seen": 1787690477.642838, + "ast_hash": "bd3bbac0766f8cc9a9465e5d9503ec26", + "semantic_hash": "" + }, + "frontend/application/components/ContactFormClient.tsx": { + "mtime": 1787685267.5256252, + "seen": 1787690477.642844, + "ast_hash": "dc345ef64e42f0e837e6e8d18a02f196", + "semantic_hash": "" + }, + "frontend/application/components/DeleteConfirmModal.tsx": { + "mtime": 1787419450.4607077, + "seen": 1787690477.6428494, + "ast_hash": "63cc1149452ece0a07ac753015907009", + "semantic_hash": "" + }, + "frontend/application/components/EnamadBadge.tsx": { + "mtime": 1787419450.4622374, + "seen": 1787690477.6428552, + "ast_hash": "b5854d2a605a97d225c81ab4c47c7a87", + "semantic_hash": "" + }, + "frontend/application/components/ErrorBoundary.tsx": { + "mtime": 1787419450.4659553, + "seen": 1787690477.6428607, + "ast_hash": "71d2afac25459167ce6d1e0fa486968c", + "semantic_hash": "" + }, + "frontend/application/components/ErrorPages.tsx": { + "mtime": 1787419450.466914, + "seen": 1787690477.6428668, + "ast_hash": "b048d01831b173b8d86418ffebee61fd", + "semantic_hash": "" + }, + "frontend/application/components/FeaturedProducts.tsx": { + "mtime": 1787687869.8279884, + "seen": 1787690477.642879, + "ast_hash": "68cc419eb98fc5ea5af8667e0453a425", + "semantic_hash": "" + }, + "frontend/application/components/Footer.tsx": { + "mtime": 1787685267.5296268, + "seen": 1787690477.642885, + "ast_hash": "ca48eebac0c4c12a8efad75d12f3f9a7", + "semantic_hash": "" + }, + "frontend/application/components/Header.tsx": { + "mtime": 1787687937.595677, + "seen": 1787690477.642891, + "ast_hash": "23e0bcd011ed234bbf1b4849fb613376", + "semantic_hash": "" + }, + "frontend/application/components/HeaderButton.tsx": { + "mtime": 1787419450.477613, + "seen": 1787690477.6428967, + "ast_hash": "b11c1414f16b1b87b882e005b3d37da2", + "semantic_hash": "" + }, + "frontend/application/components/Hero.tsx": { + "mtime": 1787685267.5332847, + "seen": 1787690477.6429024, + "ast_hash": "e5ffb6f0f298bd2bfa76ee6c80053d51", + "semantic_hash": "" + }, + "frontend/application/components/IngredientWiki.tsx": { + "mtime": 1787419450.4811347, + "seen": 1787690477.6429079, + "ast_hash": "a6ec99bd65c9da1e087ca5f2f39a2c99", + "semantic_hash": "" + }, + "frontend/application/components/LoginModal.tsx": { + "mtime": 1787419450.484645, + "seen": 1787690477.642914, + "ast_hash": "dca89beecafa773bb4e1f82805d152c2", + "semantic_hash": "" + }, + "frontend/application/components/MaintenancePage.tsx": { + "mtime": 1787419450.5073144, + "seen": 1787690477.6429198, + "ast_hash": "1494f58671c036d2ed5182cc0d3c545f", + "semantic_hash": "" + }, + "frontend/application/components/NetworkBanner.tsx": { + "mtime": 1787419450.510854, + "seen": 1787690477.6429253, + "ast_hash": "273de8b57e5c45d407668498f4759235", + "semantic_hash": "" + }, + "frontend/application/components/OrderDetailsModal.tsx": { + "mtime": 1787521873.5190487, + "seen": 1787690477.6429305, + "ast_hash": "33f3b67271e3aebb658832bcd55dc724", + "semantic_hash": "" + }, + "frontend/application/components/OrderSuccess.tsx": { + "mtime": 1787419450.5153818, + "seen": 1787690477.6429362, + "ast_hash": "0201046d6089eadcf9b8ddb076e5a2f2", + "semantic_hash": "" + }, + "frontend/application/components/OrderTracking.tsx": { + "mtime": 1787419450.5163789, + "seen": 1787690477.642942, + "ast_hash": "3d7af2568b988d683493cd93988d6a92", + "semantic_hash": "" + }, + "frontend/application/components/PetProfile.tsx": { + "mtime": 1787521873.5280473, + "seen": 1787690477.6429477, + "ast_hash": "eb76224ae401494b5c53f98bc663bbba", + "semantic_hash": "" + }, + "frontend/application/components/PrescriptionUploadModal.tsx": { + "mtime": 1787419450.5259638, + "seen": 1787690477.6429665, + "ast_hash": "18100a7fc6ff7dbc917c5840b993bbfc", + "semantic_hash": "" + }, + "frontend/application/components/ProductPage.tsx": { + "mtime": 1787685267.5382853, + "seen": 1787690477.642972, + "ast_hash": "80d545b8de7623182c042cc934b3d71d", + "semantic_hash": "" + }, + "frontend/application/components/SafeImage.tsx": { + "mtime": 1787685267.5402844, + "seen": 1787690477.642986, + "ast_hash": "8178793f69aabb3b8491178d9754d112", + "semantic_hash": "" + }, + "frontend/application/components/SearchResultsPage.tsx": { + "mtime": 1787419450.5334897, + "seen": 1787690477.6429942, + "ast_hash": "e63e1b0972aa099b6dfadae6e24e23b2", + "semantic_hash": "" + }, + "frontend/application/components/SearchableSelect.tsx": { + "mtime": 1787419450.5354893, + "seen": 1787690477.642999, + "ast_hash": "e920c3c54f2595c7e40d59440b2704a9", + "semantic_hash": "" + }, + "frontend/application/components/Skeleton.tsx": { + "mtime": 1787419450.537495, + "seen": 1787690477.6430047, + "ast_hash": "4b651986b149717491545a2f52d56f57", + "semantic_hash": "" + }, + "frontend/application/components/SmartAdvisor.tsx": { + "mtime": 1787687839.480016, + "seen": 1787690477.6430104, + "ast_hash": "b08a182467ca2a719c069187942bfae3", + "semantic_hash": "" + }, + "frontend/application/components/TickerBanner.tsx": { + "mtime": 1787419450.5457299, + "seen": 1787690477.643022, + "ast_hash": "9e80f3efc10d34eebc1c48bf7c039d33", + "semantic_hash": "" + }, + "frontend/application/components/Tooltip.tsx": { + "mtime": 1787419450.5484922, + "seen": 1787690477.6430275, + "ast_hash": "15c983e07372660722d3f37b08429604", + "semantic_hash": "" + }, + "frontend/application/components/TopUpModal.tsx": { + "mtime": 1787419450.5602293, + "seen": 1787690477.6430326, + "ast_hash": "536e56ecf3aafe52f475513d02b42c21", + "semantic_hash": "" + }, + "frontend/application/components/UserDashboard.tsx": { + "mtime": 1787419450.5622191, + "seen": 1787690477.6430385, + "ast_hash": "a90b997758e671fa6afa40111c84c936", + "semantic_hash": "" + }, + "frontend/application/components/VetGallery.tsx": { + "mtime": 1787419450.5637302, + "seen": 1787690477.6430447, + "ast_hash": "211ed5614aed99d7b5fad287ef399e5b", + "semantic_hash": "" + }, + "frontend/application/components/VideosPage.tsx": { + "mtime": 1787688056.482025, + "seen": 1787690477.6430562, + "ast_hash": "19a26534b0ad61a5cd18b8491c291ad8", + "semantic_hash": "" + }, + "frontend/application/components/__tests__/CartDrawer.test.tsx": { + "mtime": 1787419450.5784655, + "seen": 1787690477.6430619, + "ast_hash": "5778d00be315bb1b8f48043fbbca2e71", + "semantic_hash": "" + }, + "frontend/application/components/__tests__/FeaturedProducts.test.tsx": { + "mtime": 1787689907.3675404, + "seen": 1787690477.643068, + "ast_hash": "08c047fec5e514c84afa9d159ea796e1", + "semantic_hash": "" + }, + "frontend/application/components/__tests__/Footer.test.tsx": { + "mtime": 1787689960.6928315, + "seen": 1787690477.6430736, + "ast_hash": "0d81ccb7ebdc070acd40ac43e03b1123", + "semantic_hash": "" + }, + "frontend/application/components/__tests__/Header.test.tsx": { + "mtime": 1787689862.4157581, + "seen": 1787690477.6430783, + "ast_hash": "f3cbdcb95983846f814cf627b7840863", + "semantic_hash": "" + }, + "frontend/application/components/__tests__/Hero.test.tsx": { + "mtime": 1787419450.58305, + "seen": 1787690477.6430838, + "ast_hash": "a4cdefac5abdd0e9886016e1f9ce4e5e", + "semantic_hash": "" + }, + "frontend/application/components/__tests__/Tooltip.test.tsx": { + "mtime": 1787419450.5845878, + "seen": 1787690477.6430893, + "ast_hash": "d1f99e79619a128a5a5f3b061a10b296", + "semantic_hash": "" + }, + "frontend/application/eslint.config.mjs": { + "mtime": 1787419450.5921216, + "seen": 1787690477.6431155, + "ast_hash": "dac07a5c0170c457122495df5854ec40", + "semantic_hash": "" + }, + "frontend/application/lib/data/products.ts": { + "mtime": 1787685267.5442882, + "seen": 1787690477.6431215, + "ast_hash": "78a444b2948f6818ef4f2b1ac40ce4ec", + "semantic_hash": "" + }, + "frontend/application/lib/data/provinces.ts": { + "mtime": 1787419450.6287239, + "seen": 1787690477.6431267, + "ast_hash": "37d1012b2cc815b0c3dcf2b8c4b69602", + "semantic_hash": "" + }, + "frontend/application/lib/data/scientificTerms.ts": { + "mtime": 1787419450.6297255, + "seen": 1787690477.643133, + "ast_hash": "a973bbde2627bc378cf0cc1ab32f2645", + "semantic_hash": "" + }, + "frontend/application/lib/hooks/useNetworkStatus.ts": { + "mtime": 1787419450.632733, + "seen": 1787690477.6431446, + "ast_hash": "1b63b054307db1ef82ececca22086623", + "semantic_hash": "" + }, + "frontend/application/lib/services/api.ts": { + "mtime": 1787419450.6427474, + "seen": 1787690477.6431632, + "ast_hash": "c0556ab9dc44435efff49759d0bc3a0d", + "semantic_hash": "" + }, + "frontend/application/lib/services/authService.ts": { + "mtime": 1787419450.6460838, + "seen": 1787690477.6431692, + "ast_hash": "459b71b9663c9c530a17769395059376", + "semantic_hash": "" + }, + "frontend/application/lib/services/orderService.ts": { + "mtime": 1787419450.6473863, + "seen": 1787690477.6431746, + "ast_hash": "b4fbdeaf995b69e28d8a9052c99ab195", + "semantic_hash": "" + }, + "frontend/application/lib/services/productService.ts": { + "mtime": 1787685267.6660316, + "seen": 1787690477.6431804, + "ast_hash": "3f185bad9b9a2f5bb7617820b91a5584", + "semantic_hash": "" + }, + "frontend/application/lib/services/videoService.ts": { + "mtime": 1787419450.6519127, + "seen": 1787690477.6431918, + "ast_hash": "34cd269aafcab3d0613d7f134dcf29bb", + "semantic_hash": "" + }, + "frontend/application/lib/store/__tests__/cartStore.test.ts": { + "mtime": 1787419450.6571436, + "seen": 1787690477.6431966, + "ast_hash": "3b6d9e264f0e62f93a3a20561d4e277f", + "semantic_hash": "" + }, + "frontend/application/lib/store/__tests__/settingsStore.test.ts": { + "mtime": 1787419450.6581426, + "seen": 1787690477.6432025, + "ast_hash": "537ecfb8bab21fb33a938f6a1e786e90", + "semantic_hash": "" + }, + "frontend/application/lib/store/__tests__/userStore.test.ts": { + "mtime": 1787419450.6604438, + "seen": 1787690477.6432083, + "ast_hash": "30eb7d3d9a4dfebe98e3f5402204fc6b", + "semantic_hash": "" + }, + "frontend/application/lib/store/cartStore.ts": { + "mtime": 1787419450.66212, + "seen": 1787690477.643214, + "ast_hash": "2496dee011c2a69d7a5da1d72e492c81", + "semantic_hash": "" + }, + "frontend/application/lib/store/settingsStore.ts": { + "mtime": 1787419450.6633267, + "seen": 1787690477.64322, + "ast_hash": "37d30f03fdaec866630ab08c0cfd5f89", + "semantic_hash": "" + }, + "frontend/application/lib/store/uiStore.ts": { + "mtime": 1787419450.6647682, + "seen": 1787690477.6432254, + "ast_hash": "81919583ecb536f1afac268370a1c3b9", + "semantic_hash": "" + }, + "frontend/application/lib/store/usePetStore.ts": { + "mtime": 1787419450.6666508, + "seen": 1787690477.6432307, + "ast_hash": "ffb8c8313bd1f3674ae0e675e88d6bba", + "semantic_hash": "" + }, + "frontend/application/lib/store/userStore.ts": { + "mtime": 1787689838.887655, + "seen": 1787690477.6432366, + "ast_hash": "268e7eae4def6670a7397f7d3c419342", + "semantic_hash": "" + }, + "frontend/application/lib/types.ts": { + "mtime": 1787419450.679008, + "seen": 1787690477.643242, + "ast_hash": "c752cf6241f4bfc9f3b895e45f6e6c12", + "semantic_hash": "" + }, + "frontend/application/lib/utils.ts": { + "mtime": 1787419450.6807587, + "seen": 1787690477.643248, + "ast_hash": "2ba8c36aab62e8c642cbf9c1358f76c4", + "semantic_hash": "" + }, + "frontend/application/next.config.ts": { + "mtime": 1787685267.6694372, + "seen": 1787690477.6432538, + "ast_hash": "8d09cf025289b252b8251372b85b75cd", + "semantic_hash": "" + }, + "frontend/application/package.json": { + "mtime": 1787685267.6719615, + "seen": 1787690477.643259, + "ast_hash": "a4a229e9dbc62ed49745f0782f9ae631", + "semantic_hash": "" + }, + "frontend/application/postcss.config.mjs": { + "mtime": 1787419450.6921093, + "seen": 1787690477.643264, + "ast_hash": "481fac0fdecd70e1821cc30b86030c1a", + "semantic_hash": "" + }, + "frontend/application/tsconfig.json": { + "mtime": 1787419452.8995028, + "seen": 1787690477.6432693, + "ast_hash": "150b3381875d6f76397141983562d08e", + "semantic_hash": "" + }, + "frontend/application/vitest.config.ts": { + "mtime": 1787419452.9004984, + "seen": 1787690477.643275, + "ast_hash": "7a272bd4a8ec605c1843537fcc33a8f9", + "semantic_hash": "" + }, + "frontend/application/vitest.setup.ts": { + "mtime": 1787689445.2946248, + "seen": 1787690477.643281, + "ast_hash": "3ad0490b2253222a71f1f064518f3e0f", + "semantic_hash": "" + }, + "package.json": { + "mtime": 1787419453.8047268, + "seen": 1787690477.6433318, + "ast_hash": "9b46f51c202ba25a6fc345e8fa78b939", + "semantic_hash": "" + }, + "scripts/backup_db.sh": { + "mtime": 1787419453.8087287, + "seen": 1787690477.643346, + "ast_hash": "6439c46867d3a7dc34e2d95b42a100ea", + "semantic_hash": "" + }, + "scripts/deploy.sh": { + "mtime": 1787419453.827465, + "seen": 1787690477.6433523, + "ast_hash": "1908c48306dd9440353b1919e4ec6a1b", + "semantic_hash": "" + }, + "scripts/open-browsers.js": { + "mtime": 1787685272.9894705, + "seen": 1787690477.643358, + "ast_hash": "f3eac7fa5b084301435e847c6256958b", + "semantic_hash": "" + }, + "scripts/start-dev.js": { + "mtime": 1787419453.83048, + "seen": 1787690477.643364, + "ast_hash": "aa4b3fdf17f246929ef3f2cd6e59c96b", + "semantic_hash": "" + }, + "start.sh": { + "mtime": 1787419453.8314812, + "seen": 1787690477.6433692, + "ast_hash": "04bb219350a6ad6fc96b7482497fcc09", + "semantic_hash": "" + }, + "BACKEND_INTEGRATION.md": { + "mtime": 1787419447.0530272, + "seen": 1787690477.6436336, + "ast_hash": "54cf17dcec2593e9d44ba33ce097ecaa", + "semantic_hash": "" + }, + "DATABASE_SCHEMA.md": { + "mtime": 1787419447.0571246, + "seen": 1787690477.6436448, + "ast_hash": "c68b70835ce47bce74c777eef1fa92d8", + "semantic_hash": "" + }, + "README.md": { + "mtime": 1787419447.060138, + "seen": 1787690477.643651, + "ast_hash": "b47146f819653bf4d3b1fd15405b22af", + "semantic_hash": "" + }, + "canina.md": { + "mtime": 1787419447.4980748, + "seen": 1787690477.6436644, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "9dd630592bc7905abc25f844ff134305", "semantic_hash": "" }, "docker-compose.yml": { +<<<<<<< HEAD "mtime": 1786883225.8115642, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "a78a74898646cdf374c4d83e43cfa854", "semantic_hash": "" }, "docs/01-introduction.md": { "mtime": 1786885876.812475, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "4089d3e4da9e473cd14c984e646abe93", "semantic_hash": "" }, "docs/02-user-guide.md": { "mtime": 1786885876.8139858, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "96bf8f4516994e99012a5b6c710835cd", "semantic_hash": "" }, "docs/03-developer-guide.md": { "mtime": 1783764561.7716606, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "14f25993a3a77357739f6cd082c1e566", "semantic_hash": "" }, "docs/audit/05-architectural-audit.md": { "mtime": 1786799852.3026898, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "ab18a41271f0f845054f52f4dfa715eb", "semantic_hash": "" }, "docs/audit/10-security-audit.md": { "mtime": 1786799852.3079526, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "125471bb12e468a0ddcd9a1dccca1001", "semantic_hash": "" }, "docs/audit/ADR-AUTH-001.md": { "mtime": 1786799852.3326428, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "2616cbbcbbc3d461d3b6ca00195902a9", "semantic_hash": "" }, "docs/audit/CROSS_BOUNDARY_DEPENDENCIES.md": { "mtime": 1786799852.3326428, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "6d851d9e754115841a5accab7efcf0dc", "semantic_hash": "" }, "docs/audit/FRONTEND_INTEGRATION_REQUIREMENTS.md": { "mtime": 1787127978.2588482, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "8210201eae0692d1e76cad23d60c804b", "semantic_hash": "" }, "docs/audit/MASTER-TASK-BACKLOG.md": { "mtime": 1786799852.3354702, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "0efc4759c15a04ca934ec32bb6b6fa6b", "semantic_hash": "" }, "docs/audit/frontend-route-map.md": { "mtime": 1786799852.3393898, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "88fdef86c48b2164cdcced3e502c073f", "semantic_hash": "" }, "docs/audit/phase3-execution-plan.md": { "mtime": 1786799852.3439524, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "15babdd91198793f5b6b791d7a5edd22", "semantic_hash": "" }, "docs/backlog.md": { "mtime": 1786799852.3560216, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "cf6eb1a9c1daef121cfb40f1a7771808", "semantic_hash": "" }, "frontend/application/AGENTS.md": { "mtime": 1787127978.2689438, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "657cc62d228d2fcf56f1c843aad131fd", "semantic_hash": "" }, "frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md": { "mtime": 1783856793.2301185, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "eeaf2bb0943a16d43493f706d0867d1f", "semantic_hash": "" }, "frontend/application/public/fonts/shabnam-font-v5.0.1/README.md": { "mtime": 1783856793.2795427, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "5f851eefeeb4bffff8c5427a289f934d", "semantic_hash": "" }, "frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt": { "mtime": 1783856793.3161557, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "a5c1ec085d5dae2319c659151ffce3f0", "semantic_hash": "" }, "frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md": { "mtime": 1783856793.3176901, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "e7227ba84ca88111166000065d1bdacb", "semantic_hash": "" }, "frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt": { "mtime": 1783856793.319422, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "88985b4355a8a44627dde041f10aba75", "semantic_hash": "" }, "frontend/application/public/fonts/vazirmatn-v33.003/README.md": { "mtime": 1783856793.320489, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "e9d11601fc4c77fe3d8d1961d9c5d420", "semantic_hash": "" }, "scripts/compose.prod.yml": { "mtime": 1787077093.9907773, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "dab885e300a9524d8b4ad4c2e2e2cd3e", "semantic_hash": "" }, "scripts/compose.stage.yml": { "mtime": 1787077093.9917798, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "6c2045ddae8c6cac20ab3a0b87c39388", "semantic_hash": "" }, "backend/uploads/1781288429353-508765350.jpg": { "mtime": 1783764561.766257, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419447.567289, + "seen": 1787690477.6436706, + "ast_hash": "35d6974cf2fadb5ed457bb3ec91af31c", + "semantic_hash": "" + }, + "docs/01-introduction.md": { + "mtime": 1787419447.5702882, + "seen": 1787690477.6436765, + "ast_hash": "886be6988d8feb31dc4df8b21785d450", + "semantic_hash": "" + }, + "docs/02-user-guide.md": { + "mtime": 1787419447.5732868, + "seen": 1787690477.6436825, + "ast_hash": "8e6eb03fef1961f6ad69dceb8c240c2d", + "semantic_hash": "" + }, + "docs/03-developer-guide.md": { + "mtime": 1787419447.5802865, + "seen": 1787690477.6436884, + "ast_hash": "c817d28d3a7e25d1d7c42828b077d8a2", + "semantic_hash": "" + }, + "docs/audit/05-architectural-audit.md": { + "mtime": 1787419447.6172469, + "seen": 1787690477.6437528, + "ast_hash": "f2c71b927002fa5867a3650de9527ed8", + "semantic_hash": "" + }, + "docs/audit/10-security-audit.md": { + "mtime": 1787419447.6324205, + "seen": 1787690477.643781, + "ast_hash": "b6a22bf218a5882886e4862afb3776e0", + "semantic_hash": "" + }, + "docs/audit/ADR-AUTH-001.md": { + "mtime": 1787419447.7403717, + "seen": 1787690477.6438692, + "ast_hash": "35e6defae54a39ec32b50753c2b1be7e", + "semantic_hash": "" + }, + "docs/audit/CROSS_BOUNDARY_DEPENDENCIES.md": { + "mtime": 1787419447.7430544, + "seen": 1787690477.6438744, + "ast_hash": "63bc5a27e8a4df778b5d8a3da65051e0", + "semantic_hash": "" + }, + "docs/audit/FRONTEND_INTEGRATION_REQUIREMENTS.md": { + "mtime": 1787419447.7440531, + "seen": 1787690477.64388, + "ast_hash": "e3cb259d18f76025823931908404b039", + "semantic_hash": "" + }, + "docs/audit/MASTER-TASK-BACKLOG.md": { + "mtime": 1787419447.7478411, + "seen": 1787690477.6438847, + "ast_hash": "93b2a1802a895c076e94395fe7fc394a", + "semantic_hash": "" + }, + "docs/audit/frontend-route-map.md": { + "mtime": 1787419447.7609236, + "seen": 1787690477.6438901, + "ast_hash": "59134bbb7f37ecb8b89fcc0a5ebca9eb", + "semantic_hash": "" + }, + "docs/audit/phase3-execution-plan.md": { + "mtime": 1787419447.7802548, + "seen": 1787690477.6438956, + "ast_hash": "4998f8f9728993b64d9ad059d76fd1db", + "semantic_hash": "" + }, + "docs/backlog.md": { + "mtime": 1787419447.81427, + "seen": 1787690477.6440911, + "ast_hash": "9a2f32980add802c922ef42db11dc4a9", + "semantic_hash": "" + }, + "frontend/application/AGENTS.md": { + "mtime": 1787419450.2996094, + "seen": 1787690477.6441798, + "ast_hash": "d9623f29132b0209041f6c399d3ed097", + "semantic_hash": "" + }, + "frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md": { + "mtime": 1787419451.2853198, + "seen": 1787690477.6442435, + "ast_hash": "db005decfa8f6082819ebc2d8c0bd4e8", + "semantic_hash": "" + }, + "frontend/application/public/fonts/shabnam-font-v5.0.1/README.md": { + "mtime": 1787419451.4466276, + "seen": 1787690477.6442497, + "ast_hash": "9702c3b115833a7d2b2244c9af23c371", + "semantic_hash": "" + }, + "frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt": { + "mtime": 1787419451.574917, + "seen": 1787690477.6442556, + "ast_hash": "1c4e5bf09c3fafcebd4e398229756750", + "semantic_hash": "" + }, + "frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md": { + "mtime": 1787419451.576427, + "seen": 1787690477.644262, + "ast_hash": "a0b27c4acd04550e69aa2ae98a58666e", + "semantic_hash": "" + }, + "frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt": { + "mtime": 1787419451.5774412, + "seen": 1787690477.6442685, + "ast_hash": "d1b4bd0945af6c90b2bff4cfc13ff3e6", + "semantic_hash": "" + }, + "frontend/application/public/fonts/vazirmatn-v33.003/README.md": { + "mtime": 1787419451.5784402, + "seen": 1787690477.6442723, + "ast_hash": "562eb27004fa6a294b72621d0f371143", + "semantic_hash": "" + }, + "scripts/compose.prod.yml": { + "mtime": 1787419453.8097286, + "seen": 1787690477.6442904, + "ast_hash": "aacd066d916f805e29db811a997ce4b5", + "semantic_hash": "" + }, + "scripts/compose.stage.yml": { + "mtime": 1787419453.8107288, + "seen": 1787690477.6442957, + "ast_hash": "3238f5746e64b17cab35a3560a458856", + "semantic_hash": "" + }, + "backend/uploads/1781288429353-508765350.jpg": { + "mtime": 1787419447.4965527, + "seen": 1787690477.6443133, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "ebf86506731de8ec10f2c4ea0ba14609", "semantic_hash": "ebf86506731de8ec10f2c4ea0ba14609" }, "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif": { +<<<<<<< HEAD "mtime": 1783856792.5464964, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419448.207721, + "seen": 1787690477.6443276, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "9d0c1a4764b2b06807578b33c40838ca", "semantic_hash": "9d0c1a4764b2b06807578b33c40838ca" }, "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png": { +<<<<<<< HEAD "mtime": 1783856792.6456678, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419448.458377, + "seen": 1787690477.644334, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "8bca253cfb55f954622145010756efa9", "semantic_hash": "8bca253cfb55f954622145010756efa9" }, "frontend/application/public/assets/images/regenerated_image_1779109861747.png": { +<<<<<<< HEAD "mtime": 1783764562.0141103, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419450.9459908, + "seen": 1787690477.6443777, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "47111b66c208d1fa0c74877dfc0ee2a5", "semantic_hash": "47111b66c208d1fa0c74877dfc0ee2a5" }, "frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif": { +<<<<<<< HEAD "mtime": 1783856793.2291198, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419451.2833045, + "seen": 1787690477.6443903, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "9d0c1a4764b2b06807578b33c40838ca", "semantic_hash": "9d0c1a4764b2b06807578b33c40838ca" }, "frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png": { +<<<<<<< HEAD "mtime": 1783856793.3151467, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419451.572915, + "seen": 1787690477.6443965, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "8bca253cfb55f954622145010756efa9", "semantic_hash": "8bca253cfb55f954622145010756efa9" }, ".ai_agency/memory/backlog.json": { "mtime": 1787419446.9989989, - "seen": 1787521817.2497525, - "ast_hash": "", + "seen": 1787690477.6411314, + "ast_hash": "31dc97851403856edf2283b4e4111b13", "semantic_hash": "" }, ".ai_agency/memory/state.json": { "mtime": 1787419447.0019975, - "seen": 1787521817.2497718, - "ast_hash": "", + "seen": 1787690477.6411495, + "ast_hash": "7c99fb58d5a84d6ca48b35fa564d6131", "semantic_hash": "" }, "backend/prisma/seed-products-data.json": { "mtime": 1787419447.0954776, - "seen": 1787521817.2498417, - "ast_hash": "", + "seen": 1787690477.6412075, + "ast_hash": "fb99388fb13600a1b8d9e47d486792e6", "semantic_hash": "" }, "backend/test/jest-e2e.json": { "mtime": 1787419447.4848826, - "seen": 1787521817.2508726, - "ast_hash": "", + "seen": 1787690477.6420047, + "ast_hash": "707a50895cb1c565825637916e9cf290", "semantic_hash": "" }, "docs/audit/15-raw-findings-index.json": { "mtime": 1787419447.6474326, - "seen": 1787521817.2508867, - "ast_hash": "", + "seen": 1787690477.6420157, + "ast_hash": "ad3b103b2fc638f03842167eb8b30268", "semantic_hash": "" }, "docs/audit/17-source-coverage-manifest.json": { "mtime": 1787419447.6559634, - "seen": 1787521817.2508926, - "ast_hash": "", + "seen": 1787690477.6420195, + "ast_hash": "4fa149a70570e471895e8f005bac1a01", "semantic_hash": "" }, "docs/audit/20-verified-findings-index.json": { "mtime": 1787419447.6659625, - "seen": 1787521817.2508981, - "ast_hash": "", + "seen": 1787690477.6420233, + "ast_hash": "86cdab16b10516e34ae10c8d2127db7a", "semantic_hash": "" }, "docs/audit/25-reference-integrity-validation.json": { "mtime": 1787419447.6869783, - "seen": 1787521817.2509034, - "ast_hash": "", + "seen": 1787690477.642027, + "ast_hash": "b23e3747bf36f0dc116e26057685d464", "semantic_hash": "" }, "docs/audit/28-full-repository-classification.json": { "mtime": 1787419447.7123296, - "seen": 1787521817.250907, - "ast_hash": "", + "seen": 1787690477.6420305, + "ast_hash": "7a502ec78945c379c470f523361dd1e0", "semantic_hash": "" }, "docs/audit/29-file-content-evidence.json": { "mtime": 1787419447.7158856, - "seen": 1787521817.2509103, - "ast_hash": "", + "seen": 1787690477.6420364, + "ast_hash": "411f4c4e73ba8b26da0f16ebb14bf75f", "semantic_hash": "" }, "docs/audit/30-compiler-diagnostics-index.json": { "mtime": 1787419447.718403, - "seen": 1787521817.250916, - "ast_hash": "", + "seen": 1787690477.6420438, + "ast_hash": "ef1e5f7a5475a98d74b4969f61fa1f5a", "semantic_hash": "" }, "docs/audit/32-evidence-grade-validation.json": { "mtime": 1787419447.723418, - "seen": 1787521817.2509222, - "ast_hash": "", + "seen": 1787690477.6420493, + "ast_hash": "252e191887980b76ecff2e865377d9a5", "semantic_hash": "" }, "docs/audit/34-repository-observations.json": { "mtime": 1787419447.7296033, - "seen": 1787521817.2509282, - "ast_hash": "", + "seen": 1787690477.6420527, + "ast_hash": "021abe3b0d35f986939931c745517b6b", "semantic_hash": "" }, "docs/audit/35-semantic-review-ledger.json": { "mtime": 1787419447.7345626, - "seen": 1787521817.2509341, - "ast_hash": "", + "seen": 1787690477.642056, + "ast_hash": "1bf690443c377bc0fddf695fc50a0ec9", "semantic_hash": "" }, "docs/audit/36-mandatory-semantic-scope.json": { "mtime": 1787419447.7367916, - "seen": 1787521817.2509384, - "ast_hash": "", + "seen": 1787690477.6420598, + "ast_hash": "01443a0903004aa64b06f01d4126c1c0", "semantic_hash": "" }, "docs/audit/audit-state.json": { "mtime": 1787419447.7510066, - "seen": 1787521817.2509422, - "ast_hash": "", + "seen": 1787690477.6420636, + "ast_hash": "e64132a92b03c0873bf7e0bfd8263e72", "semantic_hash": "" }, "docs/audit/master-task-backlog.json": { "mtime": 1787419447.7762554, - "seen": 1787521817.2509713, - "ast_hash": "", + "seen": 1787690477.6420906, + "ast_hash": "49f919be745227bc183f8e369803a253", "semantic_hash": "" }, "metadata.json": { "mtime": 1786025098.905429, - "seen": 1787521817.25157, - "ast_hash": "", + "seen": 1787690477.6432877, + "ast_hash": "ebedf01fcfb6cc5a77438d851cd57bf9", "semantic_hash": "" }, ".ai_agency/AGENCY.md": { +<<<<<<< HEAD "mtime": 1785148021.9796073, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "9a615cfac3d434770f0fa036a32b71f9", "semantic_hash": "" }, ".ai_agency/agents/00_intake.md": { "mtime": 1785148021.984319, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "f1b0d3a7e74c834af83cd068a97bc240", "semantic_hash": "" }, ".ai_agency/agents/01_auditor.md": { "mtime": 1785148021.9877827, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "a41d382a1269c2d6432522485e1b3301", "semantic_hash": "" }, ".ai_agency/agents/02_ceo.md": { "mtime": 1785148021.9983747, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "caf2825294f63004fa58a8b3775f10dc", "semantic_hash": "" }, ".ai_agency/agents/03_product_manager.md": { "mtime": 1785148022.0019681, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "d5a7823925324506c4c0f91534c713cc", "semantic_hash": "" }, ".ai_agency/agents/04_architect.md": { "mtime": 1785148022.004966, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "fa9c501ee0e0f13da21dd138ed9116b3", "semantic_hash": "" }, ".ai_agency/agents/05_dev_backend.md": { "mtime": 1785148022.0124812, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "9753813406d32d60a4f82b62ffc3f00f", "semantic_hash": "" }, ".ai_agency/agents/06_dev_frontend.md": { "mtime": 1785148022.01702, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "061855c65baa90ab44d77285cf1475f2", "semantic_hash": "" }, ".ai_agency/agents/07_qa_engineer.md": { "mtime": 1785148022.0200446, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "fe33c91f65cbfa2a4e9e9e007cd03370", "semantic_hash": "" }, ".ai_agency/agents/08_visual_qa.md": { "mtime": 1785148022.0300832, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "7e8b5e90bb7c668ce961bb1c117d4291", "semantic_hash": "" }, ".ai_agency/agents/09_devops_security.md": { "mtime": 1785148022.0340874, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "f4ce074e72eade7153ee4785ae9a89c6", "semantic_hash": "" }, ".ai_agency/agents/10_tech_writer.md": { "mtime": 1785148022.0370827, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "9315ddc6c2960907d7dda7804c1debac", "semantic_hash": "" }, ".ai_agency/agents/11_deploy.md": { "mtime": 1785148022.0406027, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "0f644be55161acf799ccc0b89ebfaa03", "semantic_hash": "" }, ".ai_agency/agents/12_seo_content.md": { "mtime": 1785148022.048604, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "a053bac412fb66749c22ddfc58882766", "semantic_hash": "" }, ".ai_agency/memory/agent_outputs/README.txt": { "mtime": 1785148022.0521505, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "7b3064fbf48b53032a8d4bfb73ca9ca7", "semantic_hash": "" }, ".ai_agency/memory/scratchpad.md": { "mtime": 1785148022.0651145, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "04648e7db23c144f89cdf78d071a32a0", "semantic_hash": "" }, ".ai_agency/specs/api_contract.md": { "mtime": 1785148022.0776649, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "2641fc7a31d9fe4761dad3ae7c944cb0", "semantic_hash": "" }, ".ai_agency/specs/architecture_spec.md": { "mtime": 1785148022.0822608, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "8763e7670f9cd0281273e139b484e701", "semantic_hash": "" }, ".ai_agency/specs/prd.md": { "mtime": 1785148022.0872517, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "a030931c59700809b29fa5e2dcbaaf18", "semantic_hash": "" }, ".ai_agency/specs/project_health.md": { "mtime": 1785148022.0983145, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "063e14c4ad0f62b79e412580319d6e6a", "semantic_hash": "" }, ".ai_agency/specs/reviews/README.md": { "mtime": 1785148022.105835, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "e68ba8a85edcd2394cb46d8f03fa09b7", "semantic_hash": "" }, ".ai_agency/specs/reviews/backend_review.md": { "mtime": 1785148022.1103623, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "34de73a13f5917bee531b6c2036e6fd6", "semantic_hash": "" }, ".ai_agency/specs/reviews/code_health_review.md": { "mtime": 1785148022.1143596, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "6ac531c22e5d025f50e6375323a52ed7", "semantic_hash": "" }, ".ai_agency/specs/reviews/frontend_review.md": { "mtime": 1785148022.118487, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "0fd2a25383bafe358068544b4fd5e5f9", "semantic_hash": "" }, ".ai_agency/specs/reviews/security_review.md": { "mtime": 1785148022.1214871, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "ed5139209a62a8a4a461b8a0eff9ac02", "semantic_hash": "" }, ".ai_agency/specs/reviews/seo_content_review.md": { "mtime": 1785148022.1315339, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "4cd7283f78877c1a14ff5b682c762702", "semantic_hash": "" }, ".ai_agency/specs/reviews/ux_review.md": { "mtime": 1785148022.1365507, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "4edeb2b914b36277d8381de722df56ef", "semantic_hash": "" }, ".antigravity/instructions.md": { "mtime": 1786870552.8334057, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "9b31786b637be3c13978bec4c2330752", "semantic_hash": "" }, ".antigravity/workflows/graphify.md": { "mtime": 1786870552.8379214, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "3953c31b4ef6d89d3b1cb43f0110817d", "semantic_hash": "" }, ".claude/CLAUDE.md": { "mtime": 1786870552.83892, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "9b31786b637be3c13978bec4c2330752", "semantic_hash": "" }, ".claude/skills/graphify/SKILL.md": { "mtime": 1786870552.845041, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "3953c31b4ef6d89d3b1cb43f0110817d", "semantic_hash": "" }, ".claude/skills/graphify/references/add-watch.md": { "mtime": 1786870552.848102, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "d59d027fe449f06aa03905a01184e779", "semantic_hash": "" }, ".claude/skills/graphify/references/exports.md": { "mtime": 1786870552.849102, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "9da2a2152e60a22f07f05fed5158f287", "semantic_hash": "" }, ".claude/skills/graphify/references/extraction-spec.md": { "mtime": 1786870552.850102, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "42fef56a01698118f7fd722acdadea34", "semantic_hash": "" }, ".claude/skills/graphify/references/github-and-merge.md": { "mtime": 1786870552.853101, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "cde13df085e4c492aeb7ba298a996d0d", "semantic_hash": "" }, ".claude/skills/graphify/references/hooks.md": { "mtime": 1786870552.8550987, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "3f545db6ce646650bb9de588f5512a27", "semantic_hash": "" }, ".claude/skills/graphify/references/query.md": { "mtime": 1786870552.857703, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "3c46f8ad006874260614ed8657d02307", "semantic_hash": "" }, ".claude/skills/graphify/references/transcribe.md": { "mtime": 1786870552.8587108, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "67b6a5fa6c0974e18f60db9f8932fbd8", "semantic_hash": "" }, ".claude/skills/graphify/references/update.md": { "mtime": 1786870552.86071, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "9378bd03d56baaf78bd738ab3848f142", "semantic_hash": "" }, ".gitea/workflows/deploy.yml": { "mtime": 1787078454.7624714, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "8dba2b15f1a2baf9ad6fa20a0b3dc467", "semantic_hash": "" }, "CLAUDE.md": { "mtime": 1786870552.8637102, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "82efb97a359f5c7290bf2513d14686be", "semantic_hash": "" }, "backend/README.md": { "mtime": 1783764561.6013825, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "f9b30a57e215bc0b63868065fc71a1ac", "semantic_hash": "" }, "docs/04-setup-and-deployment.md": { "mtime": 1787127978.2568479, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "7def44fff8cdd0d28b700f711e2443ed", "semantic_hash": "" }, "docs/05-devops-and-monitoring.md": { "mtime": 1783764561.774446, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "7dade1c1d477d70ced55a7580b812127", "semantic_hash": "" }, "docs/06-testing.md": { "mtime": 1783764561.7749674, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "2ed3cd7f39157774928e65d5cc0588d0", "semantic_hash": "" }, "docs/README.md": { "mtime": 1786885876.8169968, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "64dfe035bc8fdb4b42f7af8336bf4ab3", "semantic_hash": "" }, "docs/audit/00-repository-map.md": { "mtime": 1786799852.2981741, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "5343b55148ced4eed7f13aa32b689936", "semantic_hash": "" }, "docs/audit/01-system-discovery.md": { "mtime": 1786799852.2991743, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "5fcfb853f894f8697b6badb692dfe249", "semantic_hash": "" }, "docs/audit/02-audit-plan.md": { "mtime": 1786799852.3001754, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "d6a5dbf5ddc5fc174e8a041e835481db", "semantic_hash": "" }, "docs/audit/03-baseline-command-plan.md": { "mtime": 1786799852.3001754, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "7d40f368e9ed0f27fa2ef5ad01249ad2", "semantic_hash": "" }, "docs/audit/04-open-questions.md": { "mtime": 1786799852.301682, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "773b455bb84b5df87cfbaa76dfa951f0", "semantic_hash": "" }, "docs/audit/06-storefront-audit.md": { "mtime": 1786799852.3036914, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "7c3aff371cdb919bb885bf4a6f625780", "semantic_hash": "" }, "docs/audit/07-backend-audit.md": { "mtime": 1786799852.30469, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "53927123ba5acca71e57780ca9bd34f9", "semantic_hash": "" }, "docs/audit/08-admin-features-audit.md": { "mtime": 1786799852.3059514, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "d4da7eb2396ad939251ccc541f1fd165", "semantic_hash": "" }, "docs/audit/09-database-audit.md": { "mtime": 1786799852.3069694, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "bdd7e4c3b4723b2006053563ac345819", "semantic_hash": "" }, "docs/audit/11-code-quality-audit.md": { "mtime": 1786799852.308957, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "c48e39113f2334fae743488668ecf618", "semantic_hash": "" }, "docs/audit/12-testing-audit.md": { "mtime": 1786799852.3099525, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "0d1570f5138328d090a43edc1f7bc4f0", "semantic_hash": "" }, "docs/audit/13-devops-audit.md": { "mtime": 1786799852.3109539, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "986acddf4e09ccbe2b8b8f6806bc01d5", "semantic_hash": "" }, "docs/audit/14-documentation-audit.md": { "mtime": 1786799852.311952, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "d1f8496a0dae10993495691dc58098ef", "semantic_hash": "" }, "docs/audit/16-deep-audit-summary.md": { "mtime": 1786799852.313067, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "f17a01bf7b59276d28c6948fd14eafd2", "semantic_hash": "" }, "docs/audit/18-compiler-diagnostic-dispositions.md": { "mtime": 1786799852.315065, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "5b402b064300709c7723a63885894c29", "semantic_hash": "" }, "docs/audit/19-finding-verification-report.md": { "mtime": 1786799852.3160648, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "c3363af4c68792722ebadddc10319f14", "semantic_hash": "" }, "docs/audit/21-phase2-quality-gate-summary.md": { "mtime": 1786799852.318066, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "c336937acd576ee2efc36d67dbaf69e2", "semantic_hash": "" }, "docs/audit/22-tracked-first-party-files.txt": { "mtime": 1786799852.319066, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "3f66b26b7f4217a065ed3d3403fe40fd", "semantic_hash": "" }, "docs/audit/23-untracked-first-party-files.txt": { "mtime": 1786799852.319066, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "9fe0a15ea45d03f8e4ccd0ad786dd9fb", "semantic_hash": "" }, "docs/audit/24-omitted-file-inspection-report.md": { "mtime": 1786799852.3200657, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "6fb068c98fefc544e9ff687c1b3c0351", "semantic_hash": "" }, "docs/audit/26-phase2-integrity-repair-report.md": { "mtime": 1786799852.3220918, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "aecc17ca01002edfbdf472cf4f4aaa4c", "semantic_hash": "" }, "docs/audit/27-all-tracked-repository-files.txt": { "mtime": 1786799852.3230999, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "f35e68d28e4c31002698e68cc18242e3", "semantic_hash": "" }, "docs/audit/31-module-audit-closure.md": { "mtime": 1786799852.3276167, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "b66f589f8c3bd0b53b7d61626eec0985", "semantic_hash": "" }, "docs/audit/33-final-phase2-audit-closure.md": { "mtime": 1786799852.3286169, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "ca898e1caffc2764de11b6a10e84d1ea", "semantic_hash": "" }, "docs/audit/phase3-traceability-matrix.md": { "mtime": 1786799852.3449528, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "40cd32ed7fa433342aa547fa5aa21d86", "semantic_hash": "" }, "docs/audit/phase3.1-backlog-review.md": { "mtime": 1786799852.3459527, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "78810767668f7d90e980648ec8c17869", "semantic_hash": "" }, "docs/audit/phase3.1-change-log.md": { "mtime": 1786799852.3469548, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "eed1734c4a6d1d8464dd63f6cbc33e9f", "semantic_hash": "" }, "docs/audit/phase3.2-change-log.md": { "mtime": 1786799852.3479521, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "b13460f1fa8aaecd88bc007a2c5e2ecb", "semantic_hash": "" }, "docs/audit/phase3.2-implementation-readiness.md": { "mtime": 1786799852.3479521, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "ffe4bce7401d65f9d44e8740d3c2ccf6", "semantic_hash": "" }, "frontend/admin-panel/README.md": { "mtime": 1783764561.7789528, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "f6e3faf55d738cf2affe1b44195f27cf", "semantic_hash": "" }, "frontend/admin-panel/index.html": { "mtime": 1783764561.7805586, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "d836c7a6b7be6d5b04a925b7ad32e539", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt": { "mtime": 1783856792.435855, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "607f9ca43b12868e8880a0d85831a878", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/IranNastaliq/IranNastaliq/read me!.txt": { "mtime": 1783856792.445365, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "607f9ca43b12868e8880a0d85831a878", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md": { "mtime": 1783856792.4546044, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "eaa55e166ec4a6b2ee875b746ef049a0", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md": { "mtime": 1783856792.5025032, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "0e4c260ce354bad51a6a184b5e236424", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md": { "mtime": 1783856792.5480056, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "eeaf2bb0943a16d43493f706d0867d1f", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md": { "mtime": 1783856792.5951552, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "5f851eefeeb4bffff8c5427a289f934d", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/AUTHORS.txt": { "mtime": 1783856792.646666, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "a5c1ec085d5dae2319c659151ffce3f0", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md": { "mtime": 1783856792.6476717, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "e7227ba84ca88111166000065d1bdacb", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/OFL.txt": { "mtime": 1783856792.6486697, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "88985b4355a8a44627dde041f10aba75", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md": { "mtime": 1783856792.6486697, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "e9d11601fc4c77fe3d8d1961d9c5d420", "semantic_hash": "" }, "frontend/admin-panel/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt": { "mtime": 1783856792.971535, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "975634eaf84a797674b29e99c311f54a", "semantic_hash": "" }, "frontend/application/CLAUDE.md": { "mtime": 1783764561.8667445, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "5c27369b226fcf2be8a6cfe52224e767", "semantic_hash": "" }, "frontend/application/README.md": { "mtime": 1783764561.8673544, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "f15aaa42d5d299d091b1171097ea56ad", "semantic_hash": "" }, "frontend/application/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt": { "mtime": 1783856793.098052, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "607f9ca43b12868e8880a0d85831a878", "semantic_hash": "" }, "frontend/application/public/fonts/IranNastaliq/IranNastaliq/read me!.txt": { "mtime": 1783856793.1076603, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "607f9ca43b12868e8880a0d85831a878", "semantic_hash": "" }, "frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md": { "mtime": 1783856793.1136606, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "eaa55e166ec4a6b2ee875b746ef049a0", "semantic_hash": "" }, "frontend/application/public/fonts/sahel-font-v3.4.0/README.md": { "mtime": 1783856793.1562517, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "0e4c260ce354bad51a6a184b5e236424", "semantic_hash": "" }, "frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt": { "mtime": 1783856793.6680968, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "975634eaf84a797674b29e99c311f54a", "semantic_hash": "" }, "prometheus.yml": { "mtime": 1783764562.0277793, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "45dc28cd8d9656e7141713ece5a7aa2c", "semantic_hash": "" }, "swagger.yml": { "mtime": 1786799852.8920915, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "34b5e7e5e1b19e6e3596ef669f8a0d0d", "semantic_hash": "" }, "canina.pdf": { "mtime": 1785148022.3708115, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419446.9739988, + "seen": 1787690477.6433864, + "ast_hash": "296b044b346123f15a66ca9e6c348b0d", + "semantic_hash": "" + }, + ".ai_agency/agents/00_intake.md": { + "mtime": 1787419446.9760008, + "seen": 1787690477.6433914, + "ast_hash": "2378eed2c40c0eb7346665165a10d30f", + "semantic_hash": "" + }, + ".ai_agency/agents/01_auditor.md": { + "mtime": 1787419446.9779997, + "seen": 1787690477.6433966, + "ast_hash": "154920954a48bee693ccf96ac5a4bcc4", + "semantic_hash": "" + }, + ".ai_agency/agents/02_ceo.md": { + "mtime": 1787419446.9789987, + "seen": 1787690477.643403, + "ast_hash": "e08fbee939955fc11ba5d1407cb22ab5", + "semantic_hash": "" + }, + ".ai_agency/agents/03_product_manager.md": { + "mtime": 1787419446.9839976, + "seen": 1787690477.6434095, + "ast_hash": "79e679944257b0cb40e2f31532b64623", + "semantic_hash": "" + }, + ".ai_agency/agents/04_architect.md": { + "mtime": 1787419446.9849985, + "seen": 1787690477.6434152, + "ast_hash": "07e1995c1df385c7c4f3d55f4d3c4577", + "semantic_hash": "" + }, + ".ai_agency/agents/05_dev_backend.md": { + "mtime": 1787419446.9859993, + "seen": 1787690477.643421, + "ast_hash": "e5b3a7364cbb30f0d848cf2ab2c7c131", + "semantic_hash": "" + }, + ".ai_agency/agents/06_dev_frontend.md": { + "mtime": 1787419446.9880016, + "seen": 1787690477.643427, + "ast_hash": "ad1f5c89c6ba7a7de1b13fa4bc56339f", + "semantic_hash": "" + }, + ".ai_agency/agents/07_qa_engineer.md": { + "mtime": 1787419446.988998, + "seen": 1787690477.6434333, + "ast_hash": "29defbc0be1c3f929adf32e68f69616c", + "semantic_hash": "" + }, + ".ai_agency/agents/08_visual_qa.md": { + "mtime": 1787419446.9899988, + "seen": 1787690477.6434393, + "ast_hash": "2a060846e781d3e1c7d3313fefa6c738", + "semantic_hash": "" + }, + ".ai_agency/agents/09_devops_security.md": { + "mtime": 1787419446.9919977, + "seen": 1787690477.643445, + "ast_hash": "4669915ff0518d8ecc365e32d46c4883", + "semantic_hash": "" + }, + ".ai_agency/agents/10_tech_writer.md": { + "mtime": 1787419446.9929984, + "seen": 1787690477.6434512, + "ast_hash": "1084e5278bb6364f1a1ae3730a77a4ea", + "semantic_hash": "" + }, + ".ai_agency/agents/11_deploy.md": { + "mtime": 1787419446.9940016, + "seen": 1787690477.643458, + "ast_hash": "0ac52ff29d1b7df187407a1758c935af", + "semantic_hash": "" + }, + ".ai_agency/agents/12_seo_content.md": { + "mtime": 1787419446.9949985, + "seen": 1787690477.6434636, + "ast_hash": "86fbbe45af7dbf2ce794646dae0b3787", + "semantic_hash": "" + }, + ".ai_agency/memory/agent_outputs/README.txt": { + "mtime": 1787419446.9979987, + "seen": 1787690477.6434696, + "ast_hash": "a213b6bc6f78d03e3f37ea5aa830518a", + "semantic_hash": "" + }, + ".ai_agency/memory/scratchpad.md": { + "mtime": 1787419446.999999, + "seen": 1787690477.6434762, + "ast_hash": "52a978cc692f0cc236426d7b76c14a71", + "semantic_hash": "" + }, + ".ai_agency/specs/api_contract.md": { + "mtime": 1787419447.0050044, + "seen": 1787690477.6434827, + "ast_hash": "862999fd6fc74071d6d796dc2e94d48a", + "semantic_hash": "" + }, + ".ai_agency/specs/architecture_spec.md": { + "mtime": 1787419447.0069993, + "seen": 1787690477.6434884, + "ast_hash": "7810af61c0b65f9d5818557d4b7c3fe0", + "semantic_hash": "" + }, + ".ai_agency/specs/prd.md": { + "mtime": 1787419447.0079992, + "seen": 1787690477.643494, + "ast_hash": "2d00e27d4db743aee1a553928e98c8b4", + "semantic_hash": "" + }, + ".ai_agency/specs/project_health.md": { + "mtime": 1787419447.009737, + "seen": 1787690477.6435, + "ast_hash": "133b77e7f63d54cb759525476480b79f", + "semantic_hash": "" + }, + ".ai_agency/specs/reviews/README.md": { + "mtime": 1787419447.0112617, + "seen": 1787690477.6435065, + "ast_hash": "d2e080c0674671ce94e40a6e34b60e04", + "semantic_hash": "" + }, + ".ai_agency/specs/reviews/backend_review.md": { + "mtime": 1787419447.0122643, + "seen": 1787690477.6435125, + "ast_hash": "24d994b7bd2096a91e302e83c162bb19", + "semantic_hash": "" + }, + ".ai_agency/specs/reviews/code_health_review.md": { + "mtime": 1787419447.0132632, + "seen": 1787690477.6435182, + "ast_hash": "f7302a6850087c127da08cd0cdb4d5e8", + "semantic_hash": "" + }, + ".ai_agency/specs/reviews/frontend_review.md": { + "mtime": 1787419447.0152626, + "seen": 1787690477.6435246, + "ast_hash": "5f078e81644f7c3616c49733b4697dfb", + "semantic_hash": "" + }, + ".ai_agency/specs/reviews/security_review.md": { + "mtime": 1787419447.0162625, + "seen": 1787690477.6435318, + "ast_hash": "dad8e51f0c882a9e25c764e8e49517b8", + "semantic_hash": "" + }, + ".ai_agency/specs/reviews/seo_content_review.md": { + "mtime": 1787419447.0172665, + "seen": 1787690477.6435368, + "ast_hash": "99c0607aaddb8cff2e925b3de763c1a7", + "semantic_hash": "" + }, + ".ai_agency/specs/reviews/ux_review.md": { + "mtime": 1787419447.0182674, + "seen": 1787690477.6435425, + "ast_hash": "c985041e5229af1be97a9379c89c7d2d", + "semantic_hash": "" + }, + ".antigravity/instructions.md": { + "mtime": 1787419447.0202694, + "seen": 1787690477.643548, + "ast_hash": "c232166e6492ba1ed955030b16979b05", + "semantic_hash": "" + }, + ".antigravity/workflows/graphify.md": { + "mtime": 1787419447.0222652, + "seen": 1787690477.6435537, + "ast_hash": "a8a2cc0acba50749dfe19bb2b5d48d59", + "semantic_hash": "" + }, + ".claude/CLAUDE.md": { + "mtime": 1787419447.024264, + "seen": 1787690477.6435595, + "ast_hash": "c232166e6492ba1ed955030b16979b05", + "semantic_hash": "" + }, + ".claude/skills/graphify/SKILL.md": { + "mtime": 1787419447.029275, + "seen": 1787690477.6435654, + "ast_hash": "a8a2cc0acba50749dfe19bb2b5d48d59", + "semantic_hash": "" + }, + ".claude/skills/graphify/references/add-watch.md": { + "mtime": 1787419447.0312762, + "seen": 1787690477.6435711, + "ast_hash": "58c888b5ec0689a886543dd765c1acc9", + "semantic_hash": "" + }, + ".claude/skills/graphify/references/exports.md": { + "mtime": 1787419447.0342753, + "seen": 1787690477.6435776, + "ast_hash": "ecc0c36852fee4ba6280cdf2b9149039", + "semantic_hash": "" + }, + ".claude/skills/graphify/references/extraction-spec.md": { + "mtime": 1787419447.0362747, + "seen": 1787690477.6435838, + "ast_hash": "024c6f2a3c146b03c72cc871dc56ed3c", + "semantic_hash": "" + }, + ".claude/skills/graphify/references/github-and-merge.md": { + "mtime": 1787419447.0372744, + "seen": 1787690477.6435897, + "ast_hash": "aa0e7ef186392cad062e60483ca7dbbf", + "semantic_hash": "" + }, + ".claude/skills/graphify/references/hooks.md": { + "mtime": 1787419447.0392778, + "seen": 1787690477.643596, + "ast_hash": "0045c2f12c69bff3a641a8908a1ac057", + "semantic_hash": "" + }, + ".claude/skills/graphify/references/query.md": { + "mtime": 1787419447.040275, + "seen": 1787690477.6436026, + "ast_hash": "852ef14334d60a75ae666ea103d4c4f0", + "semantic_hash": "" + }, + ".claude/skills/graphify/references/transcribe.md": { + "mtime": 1787419447.0412748, + "seen": 1787690477.6436086, + "ast_hash": "5c6a9af05d12b5797b2fa8b9493dcc37", + "semantic_hash": "" + }, + ".claude/skills/graphify/references/update.md": { + "mtime": 1787419447.0422754, + "seen": 1787690477.643615, + "ast_hash": "07bf4293ea21b4e00a9655dd4e7f0af5", + "semantic_hash": "" + }, + ".gitea/workflows/deploy.yml": { + "mtime": 1787419447.0490146, + "seen": 1787690477.643621, + "ast_hash": "04ede50d3232ff7c3976a7a608ec5df6", + "semantic_hash": "" + }, + "CLAUDE.md": { + "mtime": 1787419447.055051, + "seen": 1787690477.6436398, + "ast_hash": "8a6643a420fdad6bfb583523bc6cef16", + "semantic_hash": "" + }, + "backend/README.md": { + "mtime": 1787419447.0651374, + "seen": 1787690477.6436567, + "ast_hash": "ad12c0560e2e514d356da443998e8208", + "semantic_hash": "" + }, + "docs/04-setup-and-deployment.md": { + "mtime": 1787419447.5842886, + "seen": 1787690477.643694, + "ast_hash": "4b26de6a0e575dc2e19fd28aae465689", + "semantic_hash": "" + }, + "docs/05-devops-and-monitoring.md": { + "mtime": 1787419447.5862868, + "seen": 1787690477.6436994, + "ast_hash": "79cc5e34f3c5222e250466081cba49c0", + "semantic_hash": "" + }, + "docs/06-testing.md": { + "mtime": 1787419447.5935502, + "seen": 1787690477.6437056, + "ast_hash": "6fea30c5c131ed20fa774c46c885e394", + "semantic_hash": "" + }, + "docs/README.md": { + "mtime": 1787419447.5945506, + "seen": 1787690477.6437116, + "ast_hash": "5def98f519c1475491237ea4833537db", + "semantic_hash": "" + }, + "docs/audit/00-repository-map.md": { + "mtime": 1787419447.6005533, + "seen": 1787690477.6437168, + "ast_hash": "8ca3e584c2a2cd51591760435c9fb4f5", + "semantic_hash": "" + }, + "docs/audit/01-system-discovery.md": { + "mtime": 1787419447.606559, + "seen": 1787690477.6437228, + "ast_hash": "731483d8a83e801ddc79f78241ae3987", + "semantic_hash": "" + }, + "docs/audit/02-audit-plan.md": { + "mtime": 1787419447.6095533, + "seen": 1787690477.6437297, + "ast_hash": "dc3c11844e0b71e8748d9d08388edf88", + "semantic_hash": "" + }, + "docs/audit/03-baseline-command-plan.md": { + "mtime": 1787419447.6115541, + "seen": 1787690477.6437361, + "ast_hash": "795148f9b4229c465063bfbe0b8ff0c4", + "semantic_hash": "" + }, + "docs/audit/04-open-questions.md": { + "mtime": 1787419447.6142488, + "seen": 1787690477.643746, + "ast_hash": "1cd6e22d8abb6d298c679c665ed082a0", + "semantic_hash": "" + }, + "docs/audit/06-storefront-audit.md": { + "mtime": 1787419447.6202493, + "seen": 1787690477.6437578, + "ast_hash": "de474bebfad4beb5f79ba9579ee14ece", + "semantic_hash": "" + }, + "docs/audit/07-backend-audit.md": { + "mtime": 1787419447.6242497, + "seen": 1787690477.6437633, + "ast_hash": "0ee8acc5ed80abda078ad55bc9700cbd", + "semantic_hash": "" + }, + "docs/audit/08-admin-features-audit.md": { + "mtime": 1787419447.6274219, + "seen": 1787690477.6437693, + "ast_hash": "cf464e7a62acc0292c6c72f3d68f5e0f", + "semantic_hash": "" + }, + "docs/audit/09-database-audit.md": { + "mtime": 1787419447.6294188, + "seen": 1787690477.643775, + "ast_hash": "b4d1c61788666993d8a2765098ad7399", + "semantic_hash": "" + }, + "docs/audit/11-code-quality-audit.md": { + "mtime": 1787419447.6354325, + "seen": 1787690477.643786, + "ast_hash": "e1e1135ecedd0f3cdef24263f6620ca4", + "semantic_hash": "" + }, + "docs/audit/12-testing-audit.md": { + "mtime": 1787419447.6384342, + "seen": 1787690477.6437926, + "ast_hash": "5897c9f05289b4a673973ac35ff7bfe9", + "semantic_hash": "" + }, + "docs/audit/13-devops-audit.md": { + "mtime": 1787419447.6414342, + "seen": 1787690477.6437986, + "ast_hash": "6a954e8d41698840423fe6676841b2eb", + "semantic_hash": "" + }, + "docs/audit/14-documentation-audit.md": { + "mtime": 1787419447.6444328, + "seen": 1787690477.6438048, + "ast_hash": "c58600d736091a5537aff245afd78cfb", + "semantic_hash": "" + }, + "docs/audit/16-deep-audit-summary.md": { + "mtime": 1787419447.6499472, + "seen": 1787690477.6438103, + "ast_hash": "eb0cbbcba86e45157f6c82f6be0622ff", + "semantic_hash": "" + }, + "docs/audit/18-compiler-diagnostic-dispositions.md": { + "mtime": 1787419447.6599646, + "seen": 1787690477.6438155, + "ast_hash": "889710d0cce06a63f3a18b3f676980b5", + "semantic_hash": "" + }, + "docs/audit/19-finding-verification-report.md": { + "mtime": 1787419447.6629646, + "seen": 1787690477.6438212, + "ast_hash": "593dc4ee00b95c251e07ab4e96ebcbf2", + "semantic_hash": "" + }, + "docs/audit/21-phase2-quality-gate-summary.md": { + "mtime": 1787419447.6699624, + "seen": 1787690477.6438267, + "ast_hash": "f0d22fcf3181c8fb9e58a7240bfa6a2d", + "semantic_hash": "" + }, + "docs/audit/22-tracked-first-party-files.txt": { + "mtime": 1787419447.6749637, + "seen": 1787690477.643832, + "ast_hash": "1d93a3a50fa5cd3ada72b46ff2b239b6", + "semantic_hash": "" + }, + "docs/audit/23-untracked-first-party-files.txt": { + "mtime": 1787419447.679977, + "seen": 1787690477.6438375, + "ast_hash": "9587d3533de3aa72a09aadcb3233055d", + "semantic_hash": "" + }, + "docs/audit/24-omitted-file-inspection-report.md": { + "mtime": 1787419447.6829765, + "seen": 1787690477.6438422, + "ast_hash": "dcd57eb6f42ca409d3aec8365780a1ef", + "semantic_hash": "" + }, + "docs/audit/26-phase2-integrity-repair-report.md": { + "mtime": 1787419447.692508, + "seen": 1787690477.6438477, + "ast_hash": "5a48fbc42d54f16c8ec6c21ec163d347", + "semantic_hash": "" + }, + "docs/audit/27-all-tracked-repository-files.txt": { + "mtime": 1787419447.708956, + "seen": 1787690477.643853, + "ast_hash": "c14383e6ca1c14f8745ea680eb934b32", + "semantic_hash": "" + }, + "docs/audit/31-module-audit-closure.md": { + "mtime": 1787419447.72042, + "seen": 1787690477.6438587, + "ast_hash": "e5843be8a7932ded64c809efbe2fd80f", + "semantic_hash": "" + }, + "docs/audit/33-final-phase2-audit-closure.md": { + "mtime": 1787419447.727334, + "seen": 1787690477.643864, + "ast_hash": "9a62bbf74bbe0065121d27208b56905f", + "semantic_hash": "" + }, + "docs/audit/phase3-traceability-matrix.md": { + "mtime": 1787419447.784255, + "seen": 1787690477.6439013, + "ast_hash": "5723c535861338e717823edcdbea810b", + "semantic_hash": "" + }, + "docs/audit/phase3.1-backlog-review.md": { + "mtime": 1787419447.7892556, + "seen": 1787690477.6439965, + "ast_hash": "7241affd97c68b639520dcc0c3096fa6", + "semantic_hash": "" + }, + "docs/audit/phase3.1-change-log.md": { + "mtime": 1787419447.7922554, + "seen": 1787690477.644071, + "ast_hash": "51579166fc1c17ac6e8b04ca28fa704f", + "semantic_hash": "" + }, + "docs/audit/phase3.2-change-log.md": { + "mtime": 1787419447.7952552, + "seen": 1787690477.6440783, + "ast_hash": "05ca595b8ca78ab4089bd77c12fabda3", + "semantic_hash": "" + }, + "docs/audit/phase3.2-implementation-readiness.md": { + "mtime": 1787419447.7982552, + "seen": 1787690477.6440852, + "ast_hash": "6070eba0fc4b0cfbc23ec4ca8073d5ef", + "semantic_hash": "" + }, + "frontend/admin-panel/README.md": { + "mtime": 1787419447.8172822, + "seen": 1787690477.6440978, + "ast_hash": "1fd1975c826313d9af82af3562df872f", + "semantic_hash": "" + }, + "frontend/admin-panel/index.html": { + "mtime": 1787419447.8192816, + "seen": 1787690477.6441045, + "ast_hash": "8166c2891a0a48762fd1edf3fd12fd1c", + "semantic_hash": "" + }, + "frontend/admin-panel/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt": { + "mtime": 1787419447.8434775, + "seen": 1787690477.644111, + "ast_hash": "d192395dc05239664ae352b097f87ace", + "semantic_hash": "" + }, + "frontend/admin-panel/public/fonts/IranNastaliq/IranNastaliq/read me!.txt": { + "mtime": 1787419447.8998048, + "seen": 1787690477.6441169, + "ast_hash": "d192395dc05239664ae352b097f87ace", + "semantic_hash": "" + }, + "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md": { + "mtime": 1787419447.9201236, + "seen": 1787690477.6441243, + "ast_hash": "5235ff0e62aaed411055ec97d1ac1ab9", + "semantic_hash": "" + }, + "frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md": { + "mtime": 1787419448.066456, + "seen": 1787690477.6441302, + "ast_hash": "b52597335a28d24d1db7013e81d259a4", + "semantic_hash": "" + }, + "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md": { + "mtime": 1787419448.2095385, + "seen": 1787690477.6441371, + "ast_hash": "db005decfa8f6082819ebc2d8c0bd4e8", + "semantic_hash": "" + }, + "frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md": { + "mtime": 1787419448.3470643, + "seen": 1787690477.644143, + "ast_hash": "9702c3b115833a7d2b2244c9af23c371", + "semantic_hash": "" + }, + "frontend/admin-panel/public/fonts/vazirmatn-v33.003/AUTHORS.txt": { + "mtime": 1787419448.4593751, + "seen": 1787690477.644149, + "ast_hash": "1c4e5bf09c3fafcebd4e398229756750", + "semantic_hash": "" + }, + "frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md": { + "mtime": 1787419448.461377, + "seen": 1787690477.644155, + "ast_hash": "a0b27c4acd04550e69aa2ae98a58666e", + "semantic_hash": "" + }, + "frontend/admin-panel/public/fonts/vazirmatn-v33.003/OFL.txt": { + "mtime": 1787419448.4633963, + "seen": 1787690477.6441612, + "ast_hash": "d1b4bd0945af6c90b2bff4cfc13ff3e6", + "semantic_hash": "" + }, + "frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md": { + "mtime": 1787419448.4644103, + "seen": 1787690477.6441674, + "ast_hash": "562eb27004fa6a294b72621d0f371143", + "semantic_hash": "" + }, + "frontend/admin-panel/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt": { + "mtime": 1787419450.0946896, + "seen": 1787690477.6441746, + "ast_hash": "032edd0b277b4af964d6ff1e51028ea4", + "semantic_hash": "" + }, + "frontend/application/CLAUDE.md": { + "mtime": 1787419450.3006268, + "seen": 1787690477.6441863, + "ast_hash": "771faa62feb60b7de901a397aebb29b0", + "semantic_hash": "" + }, + "frontend/application/README.md": { + "mtime": 1787419450.301502, + "seen": 1787690477.644193, + "ast_hash": "9162add00befbcdb432430f405c4ad8d", + "semantic_hash": "" + }, + "frontend/application/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt": { + "mtime": 1787419450.9653656, + "seen": 1787690477.6442158, + "ast_hash": "d192395dc05239664ae352b097f87ace", + "semantic_hash": "" + }, + "frontend/application/public/fonts/IranNastaliq/IranNastaliq/read me!.txt": { + "mtime": 1787419451.0015028, + "seen": 1787690477.6442237, + "ast_hash": "d192395dc05239664ae352b097f87ace", + "semantic_hash": "" + }, + "frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md": { + "mtime": 1787419451.0346122, + "seen": 1787690477.6442306, + "ast_hash": "5235ff0e62aaed411055ec97d1ac1ab9", + "semantic_hash": "" + }, + "frontend/application/public/fonts/sahel-font-v3.4.0/README.md": { + "mtime": 1787419451.1708865, + "seen": 1787690477.6442366, + "ast_hash": "b52597335a28d24d1db7013e81d259a4", + "semantic_hash": "" + }, + "frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt": { + "mtime": 1787419452.8936715, + "seen": 1787690477.6442788, + "ast_hash": "032edd0b277b4af964d6ff1e51028ea4", + "semantic_hash": "" + }, + "prometheus.yml": { + "mtime": 1787419453.8067286, + "seen": 1787690477.6442847, + "ast_hash": "f59a34ed9d9500adef538ecd34ca3742", + "semantic_hash": "" + }, + "swagger.yml": { + "mtime": 1787419453.8354807, + "seen": 1787690477.644299, + "ast_hash": "c52cbad8369c5cd926b2cb7e3fb99de1", + "semantic_hash": "" + }, + "canina.pdf": { + "mtime": 1787419447.5652907, + "seen": 1787690477.6443055, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "900fb024ec3b91912a512a96c2a0c0a0", "semantic_hash": "" }, "frontend/admin-panel/public/favicon.svg": { +<<<<<<< HEAD "mtime": 1783764561.7978015, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419447.8317995, + "seen": 1787690477.6443212, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "7e840862161341271697daa99a40d76b", "semantic_hash": "" }, "frontend/admin-panel/public/icons.svg": { +<<<<<<< HEAD "mtime": 1783764561.7993202, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "3b4fcfcf393eca4d264dca4a4663bc37", "semantic_hash": "" }, "frontend/admin-panel/src/assets/hero.png": { "mtime": 1783764561.812863, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419450.095757, + "seen": 1787690477.6443403, + "ast_hash": "21c7473c592c67dc87223d49892c8f0a", + "semantic_hash": "" + }, + "frontend/admin-panel/src/assets/hero.png": { + "mtime": 1787419450.1003852, + "seen": 1787690477.644346, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "aead493361b27e7510691c5d7072dfc1", "semantic_hash": "" }, "frontend/admin-panel/src/assets/react.svg": { +<<<<<<< HEAD "mtime": 1783764561.8139248, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419450.1013985, + "seen": 1787690477.6443524, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "f0402b67b6ce880f65666bb49e841696", "semantic_hash": "" }, "frontend/admin-panel/src/assets/vite.svg": { +<<<<<<< HEAD "mtime": 1783764561.8149958, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "9960a24288958394ac50e57ff638b036", "semantic_hash": "" }, "frontend/application/public/assets/images/hero-section-image.png": { "mtime": 1783856793.0950441, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419450.1028583, + "seen": 1787690477.644359, + "ast_hash": "6d5180a782d64c8cf51ba01c2a2184d8", + "semantic_hash": "" + }, + "frontend/application/public/assets/images/hero-section-image.png": { + "mtime": 1787419450.8984866, + "seen": 1787690477.6443713, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "a9f359cce82a5ab0a24830ed59a33047", "semantic_hash": "" }, "frontend/application/public/file.svg": { +<<<<<<< HEAD "mtime": 1783764562.0162137, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419450.9484706, + "seen": 1787690477.644384, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "d09f95206c3fa0bb9bd9fefabfd0ea71", "semantic_hash": "" }, "frontend/application/public/globe.svg": { +<<<<<<< HEAD "mtime": 1783764562.0167208, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419452.8949862, + "seen": 1787690477.6444027, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "2aaafa6a49b6563925fe440891e32717", "semantic_hash": "" }, "frontend/application/public/next.svg": { +<<<<<<< HEAD "mtime": 1783764562.0182388, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419452.8954976, + "seen": 1787690477.644414, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "8e061864f388b47f33a1c3780831193e", "semantic_hash": "" }, "frontend/application/public/vercel.svg": { +<<<<<<< HEAD "mtime": 1783764562.019253, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419452.8974862, + "seen": 1787690477.6444197, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "c0af2f507b369b085b35ef4bbe3bcf1e", "semantic_hash": "" }, "frontend/application/public/window.svg": { +<<<<<<< HEAD "mtime": 1783764562.019253, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419452.8985014, + "seen": 1787690477.6444259, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "a2760511c65806022ad20adf74370ff3", "semantic_hash": "" }, ".claude/settings.json": { "mtime": 1787419447.0252633, - "seen": 1787521817.249788, - "ast_hash": "", + "seen": 1787690477.6411633, + "ast_hash": "2c806160ed3c6e2c45d4da8864a160f3", "semantic_hash": "" }, ".agents/rules/graphify.md": { +<<<<<<< HEAD "mtime": 1786870552.830271, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "f1e53ecc9194573d3c28fc116c743a2e", "semantic_hash": "" }, ".agents/workflows/graphify.md": { "mtime": 1786870552.8323984, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "6d73634a678cf1e1c71930adf80bd1f0", "semantic_hash": "" }, "backend/src/payment/dto/initiate-payment.dto.ts": { "mtime": 1786870552.8742464, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "a097fcbb5846e7cd00e7cb2cefc060bb", "semantic_hash": "" }, "backend/src/payment/dto/verify-payment.dto.ts": { "mtime": 1786894580.126858, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "f6db4b79ca261e36334ef84f39b8e87c", "semantic_hash": "" }, "backend/src/payment/payment.controller.ts": { "mtime": 1787564362.263176, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "a98c3805d67b740857686d128592a734", "semantic_hash": "" }, "backend/src/payment/payment.module.ts": { "mtime": 1787394001.605618, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "7ee5887f04915d1bd1471705a8f941ad", "semantic_hash": "" }, "backend/src/payment/payment.service.ts": { "mtime": 1787564362.2641742, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "3f65606fa57b8e2c85cfdfc600a02ec8", "semantic_hash": "" }, "backend/src/payment/zibal.service.ts": { "mtime": 1787461919.453309, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "0c7c645422cf2a3ba406390802ee365d", "semantic_hash": "" }, "frontend/application/app/payment/verify/page.tsx": { "mtime": 1786891855.3560786, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "68d1923f04a3300b7b6dca6023ab357e", "semantic_hash": "" }, "frontend/admin-panel/src/pages/SmsSettingsPage.tsx": { "mtime": 1787467799.904439, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "3f2bf95555c155f64faca1439356346f", "semantic_hash": "" }, "AGENTS.md": { "mtime": 1786870552.8627086, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "9b31786b637be3c13978bec4c2330752", "semantic_hash": "" }, "backend/src/payment/dto/admin-transaction-filter.dto.ts": { "mtime": 1787072106.4015906, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "afa18a9b091f326229902f10477bb1c1", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Transactions.tsx": { "mtime": 1787471434.8721883, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "50d95775caf9b786ee9dba4c5558d49e", "semantic_hash": "" }, "backend/src/payment/interfaces/payment-gateway.interface.ts": { "mtime": 1786870552.8767512, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "930a5f06cdec431d842bf9b12618eed5", "semantic_hash": "" }, "frontend/application/components/catalog/CatalogPageSpread.tsx": { "mtime": 1786885876.9791617, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "ee3ca1b91560e8f0fcf4c3385da4a0e2", "semantic_hash": "" }, "frontend/application/components/catalog/FlipbookCatalog.tsx": { "mtime": 1786885876.982162, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "eb46a7868a6b96139ca06b0ef4174dfb", "semantic_hash": "" }, "frontend/application/components/catalog/ProductDetailModal.tsx": { "mtime": 1786872121.572482, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "c95d3b01c3b379a6b3fce75788e96e21", "semantic_hash": "" }, "backend/scripts/generate-openapi.d.ts": { "mtime": 1786883225.7774837, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "e2ebd7ddedcadeeadbf819c35985c768", "semantic_hash": "" }, "backend/scripts/generate-openapi.js": { "mtime": 1786883225.77912, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "f7c2607fc067b04e7cb7716490ea1169", "semantic_hash": "" }, "backend/src/admin/dto/user.dto.ts": { "mtime": 1787072106.3819897, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "7f8b670a02bb9f6f52123a8e289f866a", "semantic_hash": "" }, "backend/src/admin/ssl.controller.ts": { "mtime": 1787072106.382979, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "460506a236a330ba614aae15a2659b2b", "semantic_hash": "" }, "backend/src/admin/ssl.service.ts": { "mtime": 1787072106.3839788, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "dc7ba9e922c1e3d80dae4f1593297fa7", "semantic_hash": "" }, "backend/src/auth/auth.constants.ts": { "mtime": 1787072106.3859801, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "382adefba83246badeae8701ef6335cd", "semantic_hash": "" }, "backend/src/common/utils/phone.utils.ts": { "mtime": 1786883225.801396, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "a4c682b767823a624163b9430f1db7d1", "semantic_hash": "" }, "backend/src/reviews/dto/create-review.dto.ts": { "mtime": 1787072106.4143064, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "2ae6e4616eaeeafd56d4c74bbfe79f12", "semantic_hash": "" }, "backend/src/reviews/dto/update-review.dto.ts": { "mtime": 1787072106.4158058, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "1c989ea4d1dd9c3fcf8b442e61a2d2e3", "semantic_hash": "" }, "backend/src/reviews/reviews.controller.ts": { - "mtime": 1786944769.516312, - "seen": 1787644157.070595, - "ast_hash": "25538b0ceb81aa984f9da7ae7cc6d404", + "mtime": 1787645037.3752687, + "seen": 1787658246.1492183, + "ast_hash": "afebaeead6edc0c9618daa1a3b16ac42", "semantic_hash": "" }, "backend/src/reviews/reviews.module.ts": { "mtime": 1786944769.5173109, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "7f5cb88dda0a902c24c48edb34647428", "semantic_hash": "" }, "backend/src/reviews/reviews.service.ts": { "mtime": 1787579631.7755866, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "fc9f239f7b233fd9549aaaaa226bd9f3", "semantic_hash": "" }, "backend/src/settings/default-ui-texts.ts": { "mtime": 1787564362.2661722, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "6b2cb7838c9b17d1856a03da34d299dd", "semantic_hash": "" }, "backend/src/settings/dto/sms-log-query.dto.ts": { "mtime": 1787072106.4213393, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "d1b143222dc6ecfcff03180de1a23e9e", "semantic_hash": "" }, "backend/src/tickets/dto/create-ticket.dto.ts": { "mtime": 1787072106.4308748, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "cb6ad48fdfa6c9c24158b32c4882a38f", "semantic_hash": "" }, "backend/src/tickets/dto/ticket-query.dto.ts": { "mtime": 1787072106.4318714, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "f7c6a4165ac086ba6de6fb111c75c2e9", "semantic_hash": "" }, "backend/src/tickets/tickets.controller.ts": { "mtime": 1787072106.433878, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "6eb0b4d21421f9f5aa1831b0402257e8", "semantic_hash": "" }, "backend/src/tickets/tickets.module.ts": { "mtime": 1786890779.3222969, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "0b3e226a18679b4bf37016c27b874ae9", "semantic_hash": "" }, "backend/src/tickets/tickets.service.ts": { "mtime": 1787072106.4348743, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "16b88701d7cc2a14f47e99f55882e67a", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Reviews.tsx": { "mtime": 1787467799.897935, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "a72ceff0caf7c8b09aed6ce67d3066f4", "semantic_hash": "" }, "frontend/admin-panel/src/pages/SslSettingsPage.tsx": { "mtime": 1787467799.9054468, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "a989703bb87076f3c9c3c4a26012a5cb", "semantic_hash": "" }, "frontend/admin-panel/src/pages/Tickets.tsx": { "mtime": 1787467799.909963, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "0a9562f28e15b5af8acc8c15fc130729", "semantic_hash": "" }, "frontend/application/components/BannerPlacement.tsx": { "mtime": 1787564348.689902, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "c8d73a358a8708e714e7e6d207aa4956", "semantic_hash": "" }, "frontend/application/components/BrandLogo.tsx": { "mtime": 1787564348.6908622, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "2a31c72d7a8773622e7c898ce6d366ca", "semantic_hash": "" }, "frontend/application/components/ProductReviews.tsx": { "mtime": 1787048863.6917748, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "814a762e9710ce872a7467ea0dd8e716", "semantic_hash": "" }, "frontend/application/lib/services/ticketService.ts": { "mtime": 1786890779.3409019, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "6fcf9ed78ca9194e01333602a1989947", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/PriceInput.tsx": { "mtime": 1786948119.7711625, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "09a84a9f29f735448d05e4327c0304b3", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Badge.tsx": { "mtime": 1787461920.844094, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "3b93789328a250499e58378552881527", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/FormField.tsx": { "mtime": 1786954681.823527, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "265c887af876e10153f2ac32844194c2", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx": { "mtime": 1786954681.824535, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "ada78d41f18a3dcce5e806a2ab252d30", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Input.tsx": { "mtime": 1786954681.825536, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "b3c0b6ae3bec10c6ac070ae60e804e28", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Select.tsx": { "mtime": 1786954681.8285375, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "a06e97672e210fdff460252966d2ab09", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Textarea.tsx": { "mtime": 1786954681.8285375, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "bbbdbaa3a2aeb68e7e406d555129fb79", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx": { "mtime": 1786954681.830045, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "f212eaa6017ac07b37356612883b2884", "semantic_hash": "" }, "backend/prisma/tsconfig.json": { "mtime": 1786961195.3002362, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "a12c81b60c5e9fdb3c1aba03ac7ecb27", "semantic_hash": "" }, "backend/src/admin/dto/product.dto.ts": { "mtime": 1787579631.7621782, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "8fb28b8f62bc610bdc1196d54cafb672", "semantic_hash": "" }, "backend/src/doctors/doctors.controller.ts": { "mtime": 1787148092.311693, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "a552f2b9fa5f186871234fa7ffc0c849", "semantic_hash": "" }, "backend/src/doctors/doctors.module.ts": { "mtime": 1786971396.0355752, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "6850f9203296ff749b5d7de975d3c6f7", "semantic_hash": "" }, "backend/src/doctors/doctors.service.ts": { "mtime": 1787148092.312693, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "b7473f48fc2a077328d9d054c075bf46", "semantic_hash": "" }, "frontend/admin-panel/src/pages/DoctorsManager.tsx": { "mtime": 1787467799.8799238, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "5671cef0d264dc92d9540058a929633e", "semantic_hash": "" }, "frontend/application/components/TestimonialsSection.tsx": { "mtime": 1787148092.3530457, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "59c30aa178ac6736fe743d3434fb38ec", "semantic_hash": "" }, "frontend/application/components/VideoModalPlayer.tsx": { "mtime": 1787061337.6364226, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "dad37eb462b526cd5a70cdd07e3a55ac", "semantic_hash": "" }, "frontend/application/components/PodcastPlayerModal.tsx": { "mtime": 1787564348.6979315, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "515b0ad877f8eca6c860906c805f88cb", "semantic_hash": "" }, "frontend/application/components/PodcastInlinePlayer.tsx": { "mtime": 1787579631.796809, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "dabe043685366225a2852033f3483ecb", "semantic_hash": "" }, "frontend/admin-panel/src/components/RouteErrorBoundary.tsx": { "mtime": 1787062174.623011, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "bede52b77e6efe56c4f710279fdbcfbd", "semantic_hash": "" }, "frontend/admin-panel/src/utils/lazyWithRetry.ts": { "mtime": 1787062174.6262279, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "8fd1116250eef64a64411d9dd8322c18", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/IconPickerModal.tsx": { "mtime": 1787071159.9599283, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "d4676fe2b24132bbfeb1b53f2b314ed7", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/RichTextEditor.tsx": { "mtime": 1787577523.7043533, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "11848112ef3b44fce5cabcb7abfefc91", "semantic_hash": "" }, "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx": { "mtime": 1787467799.8899395, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "3f56b1c5ba2b01fae9ed51faf870cb8d", "semantic_hash": "" }, "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx": { "mtime": 1787467799.9019353, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "329ce7c2b153a8d4f0ca26374759938e", "semantic_hash": "" }, "backend/test/app-audit-verification.e2e-spec.d.ts": { "mtime": 1787073059.1090057, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "e2ebd7ddedcadeeadbf819c35985c768", "semantic_hash": "" }, "backend/test/app-audit-verification.e2e-spec.js": { "mtime": 1787073059.1105163, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "3906e1e6a6fe48f74cd15f9b81b8775a", "semantic_hash": "" }, "backend/test/app.e2e-spec.d.ts": { "mtime": 1787073059.1125634, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "e2ebd7ddedcadeeadbf819c35985c768", "semantic_hash": "" }, "backend/test/app.e2e-spec.js": { "mtime": 1787073059.1135726, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "4ff6e84fd1b500597f4cc40d5877ad1b", "semantic_hash": "" }, "frontend/application/lib/seo.ts": { "mtime": 1787139270.9888349, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "63561ef7b8bd149b0e211fc4c9d0fab3", "semantic_hash": "" }, "backend/src/doctors/dto/doctor-query.dto.ts": { "mtime": 1787148092.3146994, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "9c9b8e83bb5b207eb88d5da473562843", "semantic_hash": "" }, "backend/src/faq/faq.controller.ts": { "mtime": 1787148092.3166947, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "09e34477f9322954d856b496009ba0d5", "semantic_hash": "" }, "backend/src/faq/faq.module.ts": { "mtime": 1787148092.3166947, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "eb0d0be8c8742a787d205ef121b50ee7", "semantic_hash": "" }, "backend/src/faq/faq.service.ts": { "mtime": 1787148092.3199117, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "76c44314a43aa61ca7ba02e6cce871be", "semantic_hash": "" }, "backend/src/menu/menu.controller.ts": { "mtime": 1787564348.681949, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "091e15205d159cebb946d545a9cec92a", "semantic_hash": "" }, "backend/src/menu/menu.module.ts": { "mtime": 1787148092.3238695, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "57340cf9c9a8c0562995738bac8efc7b", "semantic_hash": "" }, "backend/src/menu/menu.service.ts": { "mtime": 1787564362.2621727, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "50a88c362e71338570fa3aee831bb0ba", "semantic_hash": "" }, "backend/src/payment/dto/ebank-checkout.dto.ts": { "mtime": 1787394001.6034613, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "420fb2e706c51e65cac8615d130993fe", "semantic_hash": "" }, "backend/src/payment/zibal-ebank.service.ts": { "mtime": 1787461919.4523065, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "7075a9caf96d6f38e0a8b0208dbd0ab5", "semantic_hash": "" }, "frontend/admin-panel/src/pages/FAQManager.tsx": { "mtime": 1787467799.8819249, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "3024a02175a185553d0fe7bef61ba293", "semantic_hash": "" }, "frontend/admin-panel/src/pages/MenuManager.tsx": { "mtime": 1787469989.146215, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "22996483f9cfdd91ac8b003e0c88bf02", "semantic_hash": "" }, "frontend/application/components/BlogPreviewSection.tsx": { "mtime": 1787640735.445201, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "09e21e5c107f06f9402e0ab1b820b575", "semantic_hash": "" }, "frontend/application/components/FAQSection.tsx": { "mtime": 1787148092.3510475, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "4fd26d468cc8e143a5e67b7aebc1e44c", "semantic_hash": "" }, "frontend/admin-panel/src/pages/ZibalPortalPage.tsx": { "mtime": 1787570438.155805, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "7411a269c9220ed427aced022e858504", "semantic_hash": "" }, "frontend/admin-panel/src/components/TransactionReceiptModal.tsx": { "mtime": 1787405554.8046184, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "8931b7ade86ad779579db166eb148469", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Button.tsx": { "mtime": 1787467799.871536, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "8d920444901883ddb6e7b4745d28c0a7", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/MaskableField.tsx": { "mtime": 1787405554.805712, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "b97dc137463327fd294e929cfa65545c", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/Modal.tsx": { "mtime": 1787461920.8450942, - "seen": 1787644157.071601, + "seen": 1787658246.1492183, "ast_hash": "e11f7ea28068c2a268db4d032c3fc9f5", "semantic_hash": "" }, "frontend/admin-panel/src/components/ui/ThSort.tsx": { "mtime": 1787461920.8450942, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "421faa21b7189758f65616964f288b0c", "semantic_hash": "" }, "frontend/admin-panel/src/pages/MonitoringPage.tsx": { "mtime": 1787466234.9659803, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "0b2ef8e74d5b5c1cc7f1587445080cc1", "semantic_hash": "" }, "frontend/admin-panel/src/utils/useTableParams.ts": { "mtime": 1787461920.855096, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "beda95a77f5cf930e48d9d5dc365aa12", "semantic_hash": "" }, "frontend/application/public/assets/images/canina-product-placeholder.png": { "mtime": 1787461919.5050244, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419446.9689996, + "seen": 1787690477.6433754, + "ast_hash": "a0e4d192b9e2e17256124dbfc8e24e6a", + "semantic_hash": "" + }, + ".agents/workflows/graphify.md": { + "mtime": 1787419446.9709973, + "seen": 1787690477.6433804, + "ast_hash": "a831cf3669f1e6ab85d8a80ebe655f99", + "semantic_hash": "" + }, + "backend/src/payment/dto/initiate-payment.dto.ts": { + "mtime": 1787419447.3174126, + "seen": 1787690477.6416435, + "ast_hash": "362a5bea6c6489d4a92747379ea71c20", + "semantic_hash": "" + }, + "backend/src/payment/dto/verify-payment.dto.ts": { + "mtime": 1787419447.3184276, + "seen": 1787690477.6416466, + "ast_hash": "866f1e1417f12bc9f3dfcc0accab913b", + "semantic_hash": "" + }, + "backend/src/payment/payment.controller.ts": { + "mtime": 1787685267.4082577, + "seen": 1787690477.6416538, + "ast_hash": "d1a1b1335af44d65a971711dd712d86e", + "semantic_hash": "" + }, + "backend/src/payment/payment.module.ts": { + "mtime": 1787419447.3254292, + "seen": 1787690477.641657, + "ast_hash": "7b1686aff4def718dadeab4fb8f7eb7d", + "semantic_hash": "" + }, + "backend/src/payment/payment.service.ts": { + "mtime": 1787685267.4112568, + "seen": 1787690477.641663, + "ast_hash": "a0ecf83e325dda40d8aaa61278534684", + "semantic_hash": "" + }, + "backend/src/payment/zibal.service.ts": { + "mtime": 1787419472.6824076, + "seen": 1787690477.6416738, + "ast_hash": "d85e4208b8bb88b3044c0aa19153a118", + "semantic_hash": "" + }, + "frontend/application/app/payment/verify/page.tsx": { + "mtime": 1787419450.342405, + "seen": 1787690477.6426735, + "ast_hash": "b18d0854519809a02ad6c662409ac221", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/SmsSettingsPage.tsx": { + "mtime": 1787503865.8810556, + "seen": 1787690477.6424315, + "ast_hash": "287333d89bf03cb0ae11ca13f697d4b0", + "semantic_hash": "" + }, + "AGENTS.md": { + "mtime": 1787419447.0510268, + "seen": 1787690477.6436274, + "ast_hash": "c232166e6492ba1ed955030b16979b05", + "semantic_hash": "" + }, + "backend/src/payment/dto/admin-transaction-filter.dto.ts": { + "mtime": 1787419447.3142924, + "seen": 1787690477.6416357, + "ast_hash": "ecd7722edbdefc81ec7ac5c3ee3e93ea", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/Transactions.tsx": { + "mtime": 1787503865.8930688, + "seen": 1787690477.6424587, + "ast_hash": "3507d61701ec7c7f0e3c7de7cdd4e017", + "semantic_hash": "" + }, + "backend/src/payment/interfaces/payment-gateway.interface.ts": { + "mtime": 1787419447.3204281, + "seen": 1787690477.64165, + "ast_hash": "caa5997d00f629714dfc1a2cf52e2a8f", + "semantic_hash": "" + }, + "frontend/application/components/catalog/CatalogPageSpread.tsx": { + "mtime": 1787419450.5866036, + "seen": 1787690477.6430955, + "ast_hash": "4098ad86a7f4cb00aa7e016ac85532c1", + "semantic_hash": "" + }, + "frontend/application/components/catalog/FlipbookCatalog.tsx": { + "mtime": 1787419450.5901234, + "seen": 1787690477.6431022, + "ast_hash": "f3de0728c3f06e531d68c8ca833c25ff", + "semantic_hash": "" + }, + "frontend/application/components/catalog/ProductDetailModal.tsx": { + "mtime": 1787419450.5911245, + "seen": 1787690477.643109, + "ast_hash": "017ca815bda10e28ccd0a3fa5899bae7", + "semantic_hash": "" + }, + "backend/scripts/generate-openapi.d.ts": { + "mtime": 1787419447.1102326, + "seen": 1787690477.6412349, + "ast_hash": "5c7f99e3d4eaae821996a487acc6a5e2", + "semantic_hash": "" + }, + "backend/scripts/generate-openapi.js": { + "mtime": 1787419447.1112335, + "seen": 1787690477.641239, + "ast_hash": "8b04479b5c4fddf2fd59a9be307ccb9a", + "semantic_hash": "" + }, + "backend/src/admin/dto/user.dto.ts": { + "mtime": 1787419447.1401534, + "seen": 1787690477.6412933, + "ast_hash": "af8bd16d9bab5939566193c6a3a26d7f", + "semantic_hash": "" + }, + "backend/src/admin/ssl.controller.ts": { + "mtime": 1787419447.149482, + "seen": 1787690477.6413195, + "ast_hash": "948356d0543630a67da892210f1a0aa1", + "semantic_hash": "" + }, + "backend/src/admin/ssl.service.ts": { + "mtime": 1787419447.1514819, + "seen": 1787690477.6413233, + "ast_hash": "3594629d085ea503bc578f16e2a78f74", + "semantic_hash": "" + }, + "backend/src/auth/auth.constants.ts": { + "mtime": 1787419447.1627107, + "seen": 1787690477.6413493, + "ast_hash": "efe010410ff2c65c01a97d59d85c0dfe", + "semantic_hash": "" + }, + "backend/src/common/utils/phone.utils.ts": { + "mtime": 1787419447.2576811, + "seen": 1787690477.6415255, + "ast_hash": "f300a578d453b352bfa29b7aa6a07017", + "semantic_hash": "" + }, + "backend/src/reviews/dto/create-review.dto.ts": { + "mtime": 1787419447.3753948, + "seen": 1787690477.6418054, + "ast_hash": "66f552744579896ea439cc2b49f67c7b", + "semantic_hash": "" + }, + "backend/src/reviews/dto/update-review.dto.ts": { + "mtime": 1787419447.376396, + "seen": 1787690477.6418111, + "ast_hash": "3eaeda9da02b02576499ef3e3330a76f", + "semantic_hash": "" + }, + "backend/src/reviews/reviews.controller.ts": { + "mtime": 1787685267.4169967, + "seen": 1787690477.6418166, + "ast_hash": "a9135cfdabb6a38e1d9e2ab19c67647b", + "semantic_hash": "" + }, + "backend/src/reviews/reviews.module.ts": { + "mtime": 1787419447.3783956, + "seen": 1787690477.6418226, + "ast_hash": "59803e2784943b2b373a54911b635675", + "semantic_hash": "" + }, + "backend/src/reviews/reviews.service.ts": { + "mtime": 1787685267.419514, + "seen": 1787690477.6418262, + "ast_hash": "538078b242caeac67cac39bbafd18896", + "semantic_hash": "" + }, + "backend/src/settings/default-ui-texts.ts": { + "mtime": 1787685267.4215283, + "seen": 1787690477.6418417, + "ast_hash": "504a8e2657ed9a044b45f7ce3af0384e", + "semantic_hash": "" + }, + "backend/src/settings/dto/sms-log-query.dto.ts": { + "mtime": 1787419447.3878922, + "seen": 1787690477.6418462, + "ast_hash": "5d7f47c92ee19a72058615dbbff4a0ef", + "semantic_hash": "" + }, + "backend/src/tickets/dto/create-ticket.dto.ts": { + "mtime": 1787419447.4146144, + "seen": 1787690477.6418927, + "ast_hash": "3690665edbe1313dfb8e2eb051a9d138", + "semantic_hash": "" + }, + "backend/src/tickets/dto/ticket-query.dto.ts": { + "mtime": 1787419447.4156153, + "seen": 1787690477.6418974, + "ast_hash": "59f2a061410a995f872c6bef482842ae", + "semantic_hash": "" + }, + "backend/src/tickets/tickets.controller.ts": { + "mtime": 1787419447.4166157, + "seen": 1787690477.641901, + "ast_hash": "ad689e17838f5df42b52dc6c5b0c78a3", + "semantic_hash": "" + }, + "backend/src/tickets/tickets.module.ts": { + "mtime": 1787419447.4176185, + "seen": 1787690477.6419048, + "ast_hash": "6e4f28b15ef0ef3caf1be7ffb3622ab8", + "semantic_hash": "" + }, + "backend/src/tickets/tickets.service.ts": { + "mtime": 1787419447.4206223, + "seen": 1787690477.6419077, + "ast_hash": "5a4423fc0e2aa0841d1e0c8ae4f89d84", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/Reviews.tsx": { + "mtime": 1787503865.86849, + "seen": 1787690477.6423988, + "ast_hash": "4ec034df83edf9c4889512444cf078be", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/SslSettingsPage.tsx": { + "mtime": 1787503865.8835032, + "seen": 1787690477.6424365, + "ast_hash": "7afcd4d685a6944a4b7dcce4ef43fff7", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/Tickets.tsx": { + "mtime": 1787503865.8900683, + "seen": 1787690477.642453, + "ast_hash": "4cfa636013214e4b36bc71e5dd2da608", + "semantic_hash": "" + }, + "frontend/application/components/BannerPlacement.tsx": { + "mtime": 1787521873.5115192, + "seen": 1787690477.642805, + "ast_hash": "07d28c2ba50fb8920d093bb523d279ca", + "semantic_hash": "" + }, + "frontend/application/components/BrandLogo.tsx": { + "mtime": 1787521873.5135057, + "seen": 1787690477.642828, + "ast_hash": "f180f3378dbf473fbc2756faa4d5efa6", + "semantic_hash": "" + }, + "frontend/application/components/ProductReviews.tsx": { + "mtime": 1787419450.530487, + "seen": 1787690477.6429775, + "ast_hash": "b1ff5500167baa565d26a941b68d8cf4", + "semantic_hash": "" + }, + "frontend/application/lib/services/ticketService.ts": { + "mtime": 1787419450.6504016, + "seen": 1787690477.643186, + "ast_hash": "0405042069b90853e06a2a38440c4e1f", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/PriceInput.tsx": { + "mtime": 1787419450.1449337, + "seen": 1787690477.6422265, + "ast_hash": "266d669949ba117b2988f788e7819932", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/Badge.tsx": { + "mtime": 1787503865.792742, + "seen": 1787690477.6421561, + "ast_hash": "8c7bb14e66352c143d5e577644279482", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/FormField.tsx": { + "mtime": 1787419450.1332974, + "seen": 1787690477.6421742, + "ast_hash": "93ef2d93dd14d058d47c59f45cff266f", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx": { + "mtime": 1787419450.1358223, + "seen": 1787690477.6421864, + "ast_hash": "8336c87ae3d6bda8535542f5a1d828c4", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/Input.tsx": { + "mtime": 1787419450.1391938, + "seen": 1787690477.6421928, + "ast_hash": "5aa7716f56f052150bdb23a7a84f94dd", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/Select.tsx": { + "mtime": 1787419450.1464577, + "seen": 1787690477.6422386, + "ast_hash": "fbeee630ed31a744e1c71730a6550c1d", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/Textarea.tsx": { + "mtime": 1787419450.151503, + "seen": 1787690477.6422508, + "ast_hash": "7adb81ccd859e4d840b95cb6b4ed9ec4", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/ToggleSwitch.tsx": { + "mtime": 1787419450.1530342, + "seen": 1787690477.6422572, + "ast_hash": "1d7b3055bd25f0e6e4d81d3ffdbcc77b", + "semantic_hash": "" + }, + "backend/prisma/tsconfig.json": { + "mtime": 1787419447.1067102, + "seen": 1787690477.6412263, + "ast_hash": "1c3a041bb1d6145b6dd3939bd4cb9082", + "semantic_hash": "" + }, + "backend/src/admin/dto/product.dto.ts": { + "mtime": 1787685267.3786995, + "seen": 1787690477.6412895, + "ast_hash": "5782d39e62d53f9320546cb9e6dec1da", + "semantic_hash": "" + }, + "backend/src/doctors/doctors.controller.ts": { + "mtime": 1787419447.2656834, + "seen": 1787690477.6415396, + "ast_hash": "fac30598d4843c957c439765d4cc5f1d", + "semantic_hash": "" + }, + "backend/src/doctors/doctors.module.ts": { + "mtime": 1787419447.266362, + "seen": 1787690477.6415431, + "ast_hash": "629b01b4f2aaa039f72ee641fbed1330", + "semantic_hash": "" + }, + "backend/src/doctors/doctors.service.ts": { + "mtime": 1787419447.26738, + "seen": 1787690477.6415465, + "ast_hash": "a0887ed96af6ac87b7487d5e24d150b1", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/DoctorsManager.tsx": { + "mtime": 1787503865.821829, + "seen": 1787690477.6423368, + "ast_hash": "0e628e622b1035f0809f6b2ccf2ead92", + "semantic_hash": "" + }, + "frontend/application/components/TestimonialsSection.tsx": { + "mtime": 1787419450.5447316, + "seen": 1787690477.6430168, + "ast_hash": "36f8333d480fa9b5320a306ba01d4f04", + "semantic_hash": "" + }, + "frontend/application/components/VideoModalPlayer.tsx": { + "mtime": 1787688016.6089833, + "seen": 1787690477.64305, + "ast_hash": "4230b6690bb2746b954a2a94f1b4f294", + "semantic_hash": "" + }, + "frontend/application/components/PodcastPlayerModal.tsx": { + "mtime": 1787521873.5325625, + "seen": 1787690477.6429603, + "ast_hash": "9b5b7a106e6415e45a0e6a96cacdef8e", + "semantic_hash": "" + }, + "frontend/application/components/PodcastInlinePlayer.tsx": { + "mtime": 1787685267.5352836, + "seen": 1787690477.6429546, + "ast_hash": "f2a70a2a61bf4b4270976fbedc986d61", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/RouteErrorBoundary.tsx": { + "mtime": 1787419450.1233554, + "seen": 1787690477.642136, + "ast_hash": "1e3ddd1426aaf379dd4ee152ba3d0aea", + "semantic_hash": "" + }, + "frontend/admin-panel/src/utils/lazyWithRetry.ts": { + "mtime": 1787419450.2890697, + "seen": 1787690477.642516, + "ast_hash": "9e349b4c4668468f4ece962eccb562bf", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/IconPickerModal.tsx": { + "mtime": 1787419450.1353114, + "seen": 1787690477.6421802, + "ast_hash": "914f15ae84c954862407dbb086833156", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/RichTextEditor.tsx": { + "mtime": 1787685267.4245274, + "seen": 1787690477.6422327, + "ast_hash": "283896e25acb2c55eae9f1999a65d00a", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx": { + "mtime": 1787503865.839318, + "seen": 1787690477.6423755, + "ast_hash": "f556bd5cfba6cb6c8956885d8b7ada33", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/ShippingSettingsPage.tsx": { + "mtime": 1787503865.876829, + "seen": 1787690477.6424203, + "ast_hash": "4f2a2ed13dccfd05f7afb0e2630c1b8a", + "semantic_hash": "" + }, + "backend/test/app-audit-verification.e2e-spec.d.ts": { + "mtime": 1787419447.4701667, + "seen": 1787690477.6419833, + "ast_hash": "5c7f99e3d4eaae821996a487acc6a5e2", + "semantic_hash": "" + }, + "backend/test/app-audit-verification.e2e-spec.js": { + "mtime": 1787419447.4721806, + "seen": 1787690477.641987, + "ast_hash": "d54f810897b4fa28293a8fd1b1b6989b", + "semantic_hash": "" + }, + "backend/test/app.e2e-spec.d.ts": { + "mtime": 1787419447.4778807, + "seen": 1787690477.6419938, + "ast_hash": "5c7f99e3d4eaae821996a487acc6a5e2", + "semantic_hash": "" + }, + "backend/test/app.e2e-spec.js": { + "mtime": 1787419447.4788785, + "seen": 1787690477.6419978, + "ast_hash": "6314103fe8699869833fea62441015ac", + "semantic_hash": "" + }, + "frontend/application/lib/seo.ts": { + "mtime": 1787419450.64075, + "seen": 1787690477.643157, + "ast_hash": "35b9969168c00f6e2757185cdfae3c0b", + "semantic_hash": "" + }, + "backend/src/doctors/dto/doctor-query.dto.ts": { + "mtime": 1787419447.2693858, + "seen": 1787690477.6415508, + "ast_hash": "84d4d099a0db1b39d3e54151ec0390b3", + "semantic_hash": "" + }, + "backend/src/faq/faq.controller.ts": { + "mtime": 1787419447.2723813, + "seen": 1787690477.6415546, + "ast_hash": "84453f9eb206bc0fbc4d698e0777ee07", + "semantic_hash": "" + }, + "backend/src/faq/faq.module.ts": { + "mtime": 1787419447.2733808, + "seen": 1787690477.6415586, + "ast_hash": "4ec9562675fd59002567788e39816c78", + "semantic_hash": "" + }, + "backend/src/faq/faq.service.ts": { + "mtime": 1787419447.2743773, + "seen": 1787690477.6415617, + "ast_hash": "8cfbe23a028c76733e1fc8e31c217466", + "semantic_hash": "" + }, + "backend/src/menu/menu.controller.ts": { + "mtime": 1787503865.7817416, + "seen": 1787690477.6415994, + "ast_hash": "ffc93ae6eaefbb3721833490e7cc06ce", + "semantic_hash": "" + }, + "backend/src/menu/menu.module.ts": { + "mtime": 1787419447.2972002, + "seen": 1787690477.6416047, + "ast_hash": "55e26971ad90ccc580f9a737668fb7b1", + "semantic_hash": "" + }, + "backend/src/menu/menu.service.ts": { + "mtime": 1787685267.4062598, + "seen": 1787690477.6416092, + "ast_hash": "82acab263776e3b55d5a348cef90d3ae", + "semantic_hash": "" + }, + "backend/src/payment/dto/ebank-checkout.dto.ts": { + "mtime": 1787419447.315901, + "seen": 1787690477.6416397, + "ast_hash": "8ebc2e5faaac91ee38c600736063027d", + "semantic_hash": "" + }, + "backend/src/payment/zibal-ebank.service.ts": { + "mtime": 1787419472.6803782, + "seen": 1787690477.6416686, + "ast_hash": "95a0ff867d6b35b1ed0ac85e556a2f68", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/FAQManager.tsx": { + "mtime": 1787503865.824847, + "seen": 1787690477.6423416, + "ast_hash": "a9cbdfcb694e1a57248cc41271cc0142", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/MenuManager.tsx": { + "mtime": 1787503865.8335938, + "seen": 1787690477.6423647, + "ast_hash": "76b919cd8dea00c0c78865650f82ef28", + "semantic_hash": "" + }, + "frontend/application/components/BlogPreviewSection.tsx": { + "mtime": 1787685267.5216265, + "seen": 1787690477.642822, + "ast_hash": "2c8d1b5062118cc54f25320e6a85f743", + "semantic_hash": "" + }, + "frontend/application/components/FAQSection.tsx": { + "mtime": 1787419450.4682481, + "seen": 1787690477.6428726, + "ast_hash": "487039cc2ae57a3dc1ed1f178b392c0c", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/ZibalPortalPage.tsx": { + "mtime": 1787685267.4420638, + "seen": 1787690477.6424909, + "ast_hash": "2a83930b8e190fdae6d53b89f7865b67", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/TransactionReceiptModal.tsx": { + "mtime": 1787419450.1284173, + "seen": 1787690477.64215, + "ast_hash": "24f48e290242f3ca0ba811fbd37d2859", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/Button.tsx": { + "mtime": 1787503865.7957428, + "seen": 1787690477.6421616, + "ast_hash": "c32054d07ec5f86098ead1a243cca36c", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/MaskableField.tsx": { + "mtime": 1787419450.1402066, + "seen": 1787690477.6422014, + "ast_hash": "d0e07f756ad32856b756ec811da58835", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/Modal.tsx": { + "mtime": 1787503865.797186, + "seen": 1787690477.6422138, + "ast_hash": "16ea193f7c3aa1d4fd7771554b954f20", + "semantic_hash": "" + }, + "frontend/admin-panel/src/components/ui/ThSort.tsx": { + "mtime": 1787503865.7981853, + "seen": 1787690477.642254, + "ast_hash": "9d3d796edbf401dcd438bd7e499e0827", + "semantic_hash": "" + }, + "frontend/admin-panel/src/pages/MonitoringPage.tsx": { + "mtime": 1787503865.835598, + "seen": 1787690477.6423686, + "ast_hash": "32b62dccde42f018ed627a45bd14619e", + "semantic_hash": "" + }, + "frontend/admin-panel/src/utils/useTableParams.ts": { + "mtime": 1787503865.9287777, + "seen": 1787690477.642521, + "ast_hash": "81fddc8668a3f401a85d770f7c2a711d", + "semantic_hash": "" + }, + "frontend/application/public/assets/images/canina-product-placeholder.png": { + "mtime": 1787419472.8339145, + "seen": 1787690477.6443639, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "a9f359cce82a5ab0a24830ed59a33047", "semantic_hash": "" }, "frontend/application/public/images/vets/vet1.webp": { +<<<<<<< HEAD "mtime": 1787461919.5417616, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, +======= + "mtime": 1787419472.96601, + "seen": 1787690477.6444085, +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 "ast_hash": "a9f359cce82a5ab0a24830ed59a33047", "semantic_hash": "" }, ".vscode/extensions.json": { "mtime": 1787419472.6708896, - "seen": 1787521817.2497983, - "ast_hash": "", + "seen": 1787690477.6411746, + "ast_hash": "7d1b433cf19d585c0d3fd7b3b76db8d0", "semantic_hash": "" }, "frontend/application/app/blog/rss.xml/route.ts": { +<<<<<<< HEAD "mtime": 1787577523.7103512, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "0f825c41a5e5c9ce9193e7ac98246f2d", "semantic_hash": "" }, "backend/src/common/revalidation/revalidation.module.ts": { "mtime": 1787579631.7695823, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "9902f11ce5669722083f76ba239749ca", "semantic_hash": "" }, "backend/src/common/revalidation/revalidation.service.ts": { "mtime": 1787579631.7705874, - "seen": 1787644157.070595, + "seen": 1787658246.1492183, "ast_hash": "d1d36ecad18a71db13e14330c70aa137", "semantic_hash": "" }, "frontend/application/app/api/revalidate/route.ts": { "mtime": 1787579631.7801068, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "23184adf61db300179c0776b6a61ab0a", "semantic_hash": "" }, "frontend/application/app/shop/feed.xml/route.ts": { "mtime": 1787578481.5064635, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "fb1f529191ecb6caf1e3e25853c7587c", "semantic_hash": "" }, "frontend/application/app/sitemap-categories.xml/route.ts": { "mtime": 1787578481.507462, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "906c6270f0c13612729f42c1e7630cc2", "semantic_hash": "" }, "frontend/application/app/sitemap-products.xml/route.ts": { "mtime": 1787578481.5084643, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "e07cfe74793cf294eace564bf881bf6f", "semantic_hash": "" }, "frontend/application/lib/fonts.ts": { "mtime": 1787579631.802835, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "c6109c18c63f9d0160a23e1a4e0ce20a", "semantic_hash": "" }, "frontend/application/components/BlogPostClient.tsx": { "mtime": 1787641161.0593314, - "seen": 1787644157.071601, + "seen": 1787658246.1502194, "ast_hash": "52565ee92b2805b9e43d941a1ab27429", "semantic_hash": "" }, "backend/scripts/seo-backfill.ts": { - "mtime": 1787641715.5888166, - "seen": 1787644157.070595, + "mtime": 1787644197.1387765, + "seen": 1787658246.1492183, "ast_hash": "33585cc261b11efa511dc6d8e37c804f", "semantic_hash": "" }, "frontend/application/app/b2b/page.tsx": { - "mtime": 1787641596.3582804, - "seen": 1787644157.071601, + "mtime": 1787644197.1416183, + "seen": 1787658246.1502194, "ast_hash": "06efdc27aa409ef9001b99f03603c645", "semantic_hash": "" }, "frontend/application/components/B2BLandingClient.tsx": { - "mtime": 1787641590.421629, - "seen": 1787644157.071601, - "ast_hash": "3e762bdd5b352b7a205514f590afb710", + "mtime": 1787645037.3812675, + "seen": 1787658246.1502194, + "ast_hash": "795114ff03d5a13c4ac8b675cdadbe13", "semantic_hash": "" }, "frontend/application/lib/schema.ts": { - "mtime": 1787641568.2196434, - "seen": 1787644157.071601, + "mtime": 1787644197.1562054, + "seen": 1787658246.1502194, "ast_hash": "78f0ccf9385189aa65639774e6feb3ad", +======= + "mtime": 1787685267.4620626, + "seen": 1787690477.6426063, + "ast_hash": "6f15f85c192a53ca94334651ef71adfc", + "semantic_hash": "" + }, + "backend/src/common/revalidation/revalidation.module.ts": { + "mtime": 1787685267.3987112, + "seen": 1787690477.6415038, + "ast_hash": "d859083e9cb00723d35f339338896774", + "semantic_hash": "" + }, + "backend/src/common/revalidation/revalidation.service.ts": { + "mtime": 1787685267.3997116, + "seen": 1787690477.6415071, + "ast_hash": "caded7a4af51958f345a6a0bc1f8c1f2", + "semantic_hash": "" + }, + "frontend/application/app/api/revalidate/route.ts": { + "mtime": 1787685267.4480634, + "seen": 1787690477.6425662, + "ast_hash": "288850849ec0ae28e5a046129f1e1ad0", + "semantic_hash": "" + }, + "frontend/application/app/shop/feed.xml/route.ts": { + "mtime": 1787685267.4750679, + "seen": 1787690477.6427126, + "ast_hash": "24829880e8414e47a282737bc28fa6b3", + "semantic_hash": "" + }, + "frontend/application/app/sitemap-categories.xml/route.ts": { + "mtime": 1787685267.4800677, + "seen": 1787690477.642729, + "ast_hash": "418a3bf14d5c0f8eae8ac6e59f1f0003", + "semantic_hash": "" + }, + "frontend/application/app/sitemap-products.xml/route.ts": { + "mtime": 1787685267.4820652, + "seen": 1787690477.6427348, + "ast_hash": "fd473f6cf746b742f7dee229a5cfa14e", + "semantic_hash": "" + }, + "frontend/application/lib/fonts.ts": { + "mtime": 1787685267.5452883, + "seen": 1787690477.6431386, + "ast_hash": "211bcfae31782a1c4d8590756c03e629", + "semantic_hash": "" + }, + "frontend/application/components/BlogPostClient.tsx": { + "mtime": 1787685267.5196126, + "seen": 1787690477.6428165, + "ast_hash": "8fc46b7b78fe37b5393524d7695f0746", + "semantic_hash": "" + }, + "backend/scripts/seo-backfill.ts": { + "mtime": 1787685267.3677008, + "seen": 1787690477.6412468, + "ast_hash": "c96a352b4ce5969d7d04b20e2eea417b", + "semantic_hash": "" + }, + "frontend/application/app/b2b/page.tsx": { + "mtime": 1787685267.4510612, + "seen": 1787690477.6425786, + "ast_hash": "9ccece7d522a81e1fbad004b6ddf7417", + "semantic_hash": "" + }, + "frontend/application/components/B2BLandingClient.tsx": { + "mtime": 1787685267.516101, + "seen": 1787690477.6427882, + "ast_hash": "1b177d14190b2ff3ed7c4364031f6132", + "semantic_hash": "" + }, + "frontend/application/lib/schema.ts": { + "mtime": 1787685267.5472825, + "seen": 1787690477.6431506, + "ast_hash": "33dff6bd46c6e19afb18f360cb345117", + "semantic_hash": "" + }, + "backend/src/common/env.validation.ts": { + "mtime": 1787685267.3927145, + "seen": 1787690477.6414719, + "ast_hash": "7a8185bbc09c458b6e37970d1196b3f4", + "semantic_hash": "" + }, + "frontend/application/app/b2b/error.tsx": { + "mtime": 1787685267.4500637, + "seen": 1787690477.6425714, + "ast_hash": "f2fc7a13b3bd40b16b813ee54d9323ab", + "semantic_hash": "" + }, + "frontend/application/app/blog/error.tsx": { + "mtime": 1787685267.4560628, + "seen": 1787690477.6425908, + "ast_hash": "57e879bb5e44328f3de0cd6448fed4b0", + "semantic_hash": "" + }, + "frontend/application/app/blog/loading.tsx": { + "mtime": 1787685267.4580655, + "seen": 1787690477.6425958, + "ast_hash": "9a3f6706031a887e5116fc68c90b51b2", + "semantic_hash": "" + }, + "frontend/application/app/shop/error.tsx": { + "mtime": 1787685267.4730628, + "seen": 1787690477.6427062, + "ast_hash": "d966c84efd664e2a0e60b51f3a507cc1", + "semantic_hash": "" + }, + "frontend/application/app/shop/loading.tsx": { + "mtime": 1787685267.477065, + "seen": 1787690477.6427174, + "ast_hash": "a2caec1d54b23649aa77f797c910c6cd", +>>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 + "semantic_hash": "" + }, + "backend/src/common/env.validation.ts": { + "mtime": 1787645037.3706467, + "seen": 1787658246.1492183, + "ast_hash": "0c5617db25ad4a82310a4d57954f9148", + "semantic_hash": "" + }, + "frontend/application/app/b2b/error.tsx": { + "mtime": 1787645037.377262, + "seen": 1787658246.1502194, + "ast_hash": "d1311a94b33f2e302704576e2543fe10", + "semantic_hash": "" + }, + "frontend/application/app/blog/error.tsx": { + "mtime": 1787645037.3782682, + "seen": 1787658246.1502194, + "ast_hash": "47fda48f69163db4c3e7ce7e13a1aef8", + "semantic_hash": "" + }, + "frontend/application/app/blog/loading.tsx": { + "mtime": 1787645037.3792627, + "seen": 1787658246.1502194, + "ast_hash": "3ac7dcd4e891cc77e6a9a61f980c64e0", + "semantic_hash": "" + }, + "frontend/application/app/shop/error.tsx": { + "mtime": 1787645037.3802679, + "seen": 1787658246.1502194, + "ast_hash": "23789b3ca79c69763d31dbf356e76a4b", + "semantic_hash": "" + }, + "frontend/application/app/shop/loading.tsx": { + "mtime": 1787645037.3802679, + "seen": 1787658246.1502194, + "ast_hash": "e7bc5c6479b8906b5f8fb19bfcf289f2", + "semantic_hash": "" + }, + "playwright.config.ts": { + "mtime": 1787647303.9411342, + "seen": 1787658246.1502194, + "ast_hash": "b6950177fd30ae290355592620b1ce0b", + "semantic_hash": "" + }, + "tests/e2e/admin/admin-crud.spec.ts": { + "mtime": 1787647141.4388132, + "seen": 1787658246.1502194, + "ast_hash": "82a34c05711c1890596e3c00db05d089", + "semantic_hash": "" + }, + "tests/e2e/storefront/b2b-flow.spec.ts": { + "mtime": 1787646184.0712407, + "seen": 1787658246.1502194, + "ast_hash": "bac838e176aa3e82e88678fb9b067f38", + "semantic_hash": "" + }, + "tests/e2e/storefront/blog-wiki.spec.ts": { + "mtime": 1787646189.1731484, + "seen": 1787658246.1502194, + "ast_hash": "d9e92b416a7a57729777ac446f885772", + "semantic_hash": "" + }, + "tests/e2e/storefront/checkout-flow.spec.ts": { + "mtime": 1787650478.6841292, + "seen": 1787658246.1502194, + "ast_hash": "7bf23a14ed1e1d260b87b6a2d32b9367", + "semantic_hash": "" + }, + "tests/e2e/storefront/contact.spec.ts": { + "mtime": 1787646431.9845827, + "seen": 1787658246.1502194, + "ast_hash": "92a3f8abf800a336fd49e73017b16879", + "semantic_hash": "" + }, + "tests/fixtures/admin-auth.setup.ts": { + "mtime": 1787647018.0729592, + "seen": 1787658246.1502194, + "ast_hash": "e9f0440ae28b1d3632693f7e2a3e03a5", + "semantic_hash": "" + }, + "tests/fixtures/index.ts": { + "mtime": 1787646170.4882119, + "seen": 1787658246.1502194, + "ast_hash": "25e50ff95976135d1b8b381c3d355b51", + "semantic_hash": "" + }, + "tsconfig.json": { + "mtime": 1787650119.041351, + "seen": 1787658246.1502194, + "ast_hash": "a57313e870eea61fd8ca26a23da00e62", + "semantic_hash": "" + }, + "tests/e2e/admin/admin-b2b-submissions.spec.ts": { + "mtime": 1787656204.594403, + "seen": 1787658246.1502194, + "ast_hash": "228a22ecfa356ad93508a0695051f4ee", + "semantic_hash": "" + }, + "tests/e2e/admin/admin-blogs-crud.spec.ts": { + "mtime": 1787656186.6614306, + "seen": 1787658246.1502194, + "ast_hash": "c9e8f2d519018b62ac862b8c62cc535a", + "semantic_hash": "" + }, + "tests/e2e/admin/admin-orders-flow.spec.ts": { + "mtime": 1787656162.978292, + "seen": 1787658246.1502194, + "ast_hash": "bc858333a34ce8bbce77e982e17805cd", + "semantic_hash": "" + }, + "tests/e2e/storefront/cart-operations.spec.ts": { + "mtime": 1787658093.2875905, + "seen": 1787658246.1502194, + "ast_hash": "a4a6610274da5ec9795b7b7ee4c3a664", + "semantic_hash": "" + }, + "tests/e2e/storefront/order-tracking.spec.ts": { + "mtime": 1787657088.4423168, + "seen": 1787658246.1502194, + "ast_hash": "bc9462f404850129c094dce93171df69", + "semantic_hash": "" + }, + "tests/e2e/storefront/shop-filter-search.spec.ts": { + "mtime": 1787656970.9500597, + "seen": 1787658246.1502194, + "ast_hash": "76c8a2f130259d1ac9276c7a501c6435", + "semantic_hash": "" + }, + "test-coverage-map.md": { + "mtime": 1787652445.9165475, + "seen": 1787658246.1502194, + "ast_hash": "b7c3576168cc46819e386b078d98caed", + "semantic_hash": "" + }, + "manual-test-scenarios.md": { + "mtime": 1787658071.4443307, + "seen": 1787658246.1502194, + "ast_hash": "d41d8cd98f00b204e9800998ecf8427e", "semantic_hash": "" } } \ No newline at end of file diff --git a/graphify-out/GRAPH_REPORT.md b/graphify-out/GRAPH_REPORT.md index 9320842..dd685a7 100644 --- a/graphify-out/GRAPH_REPORT.md +++ b/graphify-out/GRAPH_REPORT.md @@ -1,70 +1,42 @@ -# Graph Report - caninairan (2026-08-26) +# Graph Report - canina (2026-08-26) ## Corpus Check -<<<<<<< HEAD -- 581 files · ~1,324,167 words +- 586 files · ~1,330,298 words - Verdict: corpus is large enough that graph structure adds value. ## Summary -- 4107 nodes · 7379 edges · 301 communities (201 shown, 100 thin omitted) +- 4104 nodes · 7379 edges · 311 communities (210 shown, 101 thin omitted) - Extraction: 96% EXTRACTED · 4% INFERRED · 0% AMBIGUOUS · INFERRED: 281 edges (avg confidence: 0.79) - Token cost: 0 input · 0 output ## Graph Freshness -- Built from commit: `3c325c41` -======= -- 563 files · ~1,321,574 words -- Verdict: corpus is large enough that graph structure adds value. - -## Summary -- 4041 nodes · 7301 edges · 320 communities (202 shown, 118 thin omitted) -- Extraction: 96% EXTRACTED · 4% INFERRED · 0% AMBIGUOUS · INFERRED: 281 edges (avg confidence: 0.8) -- Token cost: 0 input · 0 output - -## Graph Freshness -- Built from commit: `7b89e141` ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +- Built from commit: `753b3dd7` - Run `git rev-parse HEAD` and compare to check if the graph is stale. - Run `graphify update .` after code changes (no API cost). ## Community Hubs (Navigation) - Roles - app.module.ts -- SmsService +- SettingsController - ProductService -- utils.ts +- SafeImage.tsx - CmsController - tickets.controller.ts - Button.tsx -- ReportsController +- admin.module.ts - devDependencies -<<<<<<< HEAD -- ReviewsController +- CreateReviewDto - MediaSelector.tsx - index.ts - app-audit-verification.e2e-spec.js -- useSettingsStore -- src/services/api.ts -- DoctorQueryDto -- UserDashboard.tsx -- JwtAuthGuard -- ProductsService -- CreateVideoDto -- Button.tsx -======= -- ReviewsService -- MediaSelector.tsx -- PetProfile.tsx -- app-audit-verification.e2e-spec.js - UserDashboard.tsx - src/services/api.ts - DoctorQueryDto - schema.ts - JwtAuthGuard -- ProductsService +- RevalidationService - CreateVideoDto - ProductPage.tsx ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - lib/services/api.ts - MenuService - BE-001 @@ -76,9 +48,9 @@ - DEVOPS-001 - DOC-001 - adminRoutes.tsx -- WholesaleService +- WholesaleApplyDto - B2BService -- PetProfile.tsx +- AuthController - FaqService - راهنمای تست سیستم (Software Testing) - Button @@ -91,47 +63,27 @@ - What You Must Do When Invoked - HomeController - IngredientsService -<<<<<<< HEAD -- useCartStore -======= - auth.module.ts ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - devDependencies - devDependencies - BlogsController - PrescriptionsService - SmartAdvisorService -<<<<<<< HEAD -- UsersService -======= - UsersController ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - UITexts.tsx - Orders.tsx - Role & Core Objective - ContactService - compilerOptions -<<<<<<< HEAD -- PaymentService -- AdminTransactionFilterDto -- CreateReviewDto -- dependencies -- compilerOptions -- Media.tsx -- WikiController -- PetsController -- 20260526145407_init/migration.sql -======= - users.controller.ts - payment.service.ts - ProductDto - dependencies - compilerOptions - app.e2e-spec.js -- ApiOperation -- admin.module.ts +- AdminQueryDto +- PetsController - PaymentService ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - Required Review Group Closures - compilerOptions - getPageMetadata @@ -139,36 +91,27 @@ - Operational Rules & Boundaries - WikiController - PetsController -<<<<<<< HEAD -- CreateEBankCheckoutDto -======= -- AdminService ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - seo.module.ts -- route.ts +- rss.xml/route.ts - 🏢 AI Software Agency — Master Orchestration Protocol v3 - Operational Rules & Boundaries - Operational Rules & Boundaries - scripts - dependencies - Role & Core Objective -- eslint-config-prettier +- ArchivePage.tsx - zibal.service.ts - dependencies -<<<<<<< HEAD -- ProductPage.tsx -======= -- toPersian ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +- NetworkBanner.tsx - seed-products.ts - useSettingsStore - Reconciled Audit Roles & Assignments - OrdersService - @nestjs/schematics - Phase 3.1 — Human Review Preparation and Master Backlog Critique -- schema.ts -- compilerOptions - blog/[slug]/page.tsx +- compilerOptions +- SettingsService - scripts - BlogsController - Deep Audit Summary Report @@ -177,19 +120,14 @@ - Comprehensive Change Log - Coupons.tsx - Operational Rules & Boundaries -<<<<<<< HEAD -- blog/page.tsx -- layout.tsx -======= - Media.tsx -- @types/supertest ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +- WikiController - PrismaService - 1. Summary of Integrity Repairs Performed - Operational Rules & Boundaries - Operational Rules & Boundaries - Operational Rules & Boundaries -- CreateReviewDto +- SmsService - AppService - UsersService - Vazirmatn Changelog @@ -198,56 +136,42 @@ - compilerOptions - compilerOptions - backend/README.md -<<<<<<< HEAD -- videos/page.tsx -- BlogsService -======= -- Param +- AdminService - CreateEBankCheckoutDto ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - Repository Map - validate_integrity.js - admin-panel/package.json - Sahel-Font -<<<<<<< HEAD -- AdminService -- نقشه جامع پوشش تست‌های سرتاسری (E2E Test Coverage Map) — پروژه Canina -======= - AdminController - InitiatePaymentDto ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - Sahel-Font - Role & Core Objective - orchestrate.py - backend/package.json -- app.e2e-spec.js +- blog/page.tsx - graphify reference: extra exports and benchmark - Phase 2 Final Quality Gate Summary Report - Task Modifications Log - Install -- catalog/page.tsx +- layout.tsx - ErrorBoundary - application/package.json - start-dev.js - generate-openapi.js - @testing-library/react -- @types/node +- admin.service.ts - System Discovery -- RevalidationService -- typescript +- useCartStore +- wiki/[slug]/page.tsx - SmsSettingsPage.tsx - Product Requirement Document (PRD) -<<<<<<< HEAD -- admin.service.ts -- InitiatePaymentDto -======= - auth.service.ts -- .createCoupon ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +- cartStore.ts - exclude - Baseline Command Plan & Reconciled Command History - seo-backfill.ts - ErrorPages.tsx +- AuthService - with-vpn.sh - Architecture Specification - Project Health Audit Report @@ -265,12 +189,16 @@ - Phase 3 Audit Traceability Matrix - rebuild_honest_ledger.js - validate_evidence_grade.js +- CreateOrderDto +- SmsLogQueryDto +- نقشه جامع پوشش تست‌های سرتاسری (E2E Test Coverage Map) — پروژه Canina - PaginationDto - API Contract Specification - ⚙️ Backend Technical Review (05_dev_backend) - 🎨 Frontend & Admin Panel Technical Review (06_dev_frontend) - 🚀 SEO & Content Strategy Review (12_seo_content) -- MetricsController +- RedisService +- trust-seals/page.tsx - seed-ui-texts.ts - seed-wiki.ts - update-blog.dto.ts @@ -282,11 +210,14 @@ - Raw Finding Verification & Disposition Report - React + TypeScript + Vite - Select.tsx -- auth.controller.ts +- wiki/page.tsx +- catalog/page.tsx +- RegisterDto - application/README.md - deploy.sh - 🔒 Security & Performance Review (09_devops_security) - 👁️ UX & Persona Interface Review (08_visual_qa) +- eslint - prisma/scientificTerms.ts - seed-blogs.ts - seed-custom.ts @@ -305,6 +236,7 @@ - Input.tsx - Textarea.tsx - admin-panel/tsconfig.json +- @types/node - jest - next.config.ts - Shabnam Font README @@ -312,16 +244,9 @@ - rules/graphify.md - .agents/workflows/graphify.md - instructions.md +- typescript - @eslint/js -<<<<<<< HEAD -- 20260526160916_add_ui_texts_and_scientific_terms/migration.sql -======= -- eslint-plugin-prettier -- WholesaleApplyDto -- @nestjs/cli -- @nestjs/testing -- app/page.tsx ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +- globals - prisma - source-map-support - supertest @@ -365,7 +290,6 @@ - Staging Docker Compose - ZibalService - eslint-plugin-react-refresh -- tailwindcss - ZibalEBankService - .initiateOrderPayment - @tailwindcss/postcss @@ -379,12 +303,7 @@ - @types/multer - @types/passport-jwt - Modal.tsx -<<<<<<< HEAD -======= -- typescript-eslint ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - typescript -- ts-jest - revalidate/route.ts - MaskableField.tsx - eslint-config-next @@ -418,48 +337,27 @@ - 3-file cycle: `frontend/application/lib/services/api.ts -> frontend/application/lib/store/userStore.ts -> frontend/application/lib/services/authService.ts -> frontend/application/lib/services/api.ts` - 4-file cycle: `frontend/application/lib/services/api.ts -> frontend/application/lib/store/userStore.ts -> frontend/application/lib/store/cartStore.ts -> frontend/application/lib/services/orderService.ts -> frontend/application/lib/services/api.ts` -<<<<<<< HEAD -## Communities (301 total, 100 thin omitted) -======= -## Communities (320 total, 118 thin omitted) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +## Communities (311 total, 101 thin omitted) ### Community 0 - "Roles" -Cohesion: 0.23 +Cohesion: 0.24 Nodes (13): Roles(), PaymentController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get (+5 more) ### Community 1 - "app.module.ts" -<<<<<<< HEAD Cohesion: 0.07 -Nodes (34): B2BModule, Module, BannersModule, Module, CmsModule, Module, SmsModule, Global (+26 more) +Nodes (36): B2BModule, Module, BannersModule, Module, CmsModule, Module, SmsModule, Global (+28 more) -### Community 2 - "SmsService" -Cohesion: 0.06 -Nodes (26): SmsService, Injectable, SmsLogQueryDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString (+18 more) - -### Community 3 - "ProductService" -Cohesion: 0.07 -Nodes (30): dynamic, revalidate, DEFAULT_CATEGORIES, dynamic, revalidate, dynamic, revalidate, CatalogPageSpread() (+22 more) - -### Community 4 - "SafeImage.tsx" -Cohesion: 0.07 -Nodes (25): BlogCategory, BlogPostItem, BlogPostClientProps, BlogPost, BlogPreviewSection(), ProductDetailModalProps, OrderDetailsModalProps, PLAYBACK_RATES (+17 more) -======= -Cohesion: 0.08 -Nodes (34): B2BModule, Module, BannersModule, Module, CmsModule, Module, SmsModule, Global (+26 more) - -### Community 2 - "SmsService" -Cohesion: 0.05 -Nodes (27): SmsService, Injectable, SmsLogQueryDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString (+19 more) +### Community 2 - "SettingsController" +Cohesion: 0.17 +Nodes (15): SettingsController, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body, Controller, Delete (+7 more) ### Community 3 - "ProductService" Cohesion: 0.06 Nodes (34): dynamic, revalidate, DEFAULT_CATEGORIES, dynamic, revalidate, dynamic, revalidate, BlogCategory (+26 more) -### Community 4 - "utils.ts" -Cohesion: 0.08 -Nodes (22): BackButton(), BackButtonProps, BlogPost, BlogPreviewSection(), OrderDetailsModal(), OrderDetailsModalProps, PLAYBACK_RATES, PodcastPlayerModal() (+14 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +### Community 4 - "SafeImage.tsx" +Cohesion: 0.09 +Nodes (18): OrderDetailsModalProps, PLAYBACK_RATES, PodcastInlinePlayer(), PodcastInlinePlayerProps, PLAYBACK_RATES, PodcastPlayerModal(), PodcastPlayerModalProps, VideoModalPlayer (+10 more) ### Community 5 - "CmsController" Cohesion: 0.09 @@ -469,67 +367,37 @@ Nodes (24): CmsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controlle Cohesion: 0.09 Nodes (29): AdminUpdateTicketDto, CreateTicketDto, ReplyTicketDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString (+21 more) -<<<<<<< HEAD -### Community 7 - "pets/pets.controller.ts" -Cohesion: 0.13 -Nodes (15): CreatePetDto, ApiProperty, ApiPropertyOptional, IsArray, IsNotEmpty, IsNumber, IsOptional, IsString (+7 more) - -### Community 8 - "admin.module.ts" -Cohesion: 0.08 -Nodes (17): AdminModule, Module, MediaService, Injectable, ReportsController, ApiBearerAuth, ApiOperation, ApiTags (+9 more) - -### Community 9 - "devDependencies" -Cohesion: 0.08 -Nodes (25): devDependencies, eslint, @eslint/eslintrc, eslint-plugin-prettier, globals, @nestjs/cli, @nestjs/testing, prettier (+17 more) - -### Community 10 - "ReviewsController" -Cohesion: 0.17 -Nodes (12): ReviewsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+4 more) -======= ### Community 7 - "Button.tsx" Cohesion: 0.11 Nodes (14): ButtonProps, ButtonSize, ButtonVariant, Spinner(), Doctor, FAQ, ProductReview, Reviews() (+6 more) -### Community 8 - "ReportsController" -Cohesion: 0.14 -Nodes (11): ReportsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Controller, Get, Query (+3 more) +### Community 8 - "admin.module.ts" +Cohesion: 0.08 +Nodes (17): AdminModule, Module, ReportsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Controller (+9 more) ### Community 9 - "devDependencies" -Cohesion: 0.22 -Nodes (9): devDependencies, eslint, @types/bcryptjs, @types/node, typescript, eslint, @types/node, typescript (+1 more) +Cohesion: 0.08 +Nodes (25): devDependencies, eslint-config-prettier, @eslint/eslintrc, eslint-plugin-prettier, globals, @nestjs/cli, @nestjs/testing, prettier (+17 more) -### Community 10 - "ReviewsService" -Cohesion: 0.12 -Nodes (17): ReviewsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+9 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +### Community 10 - "CreateReviewDto" +Cohesion: 0.08 +Nodes (25): CreateReviewDto, ApiProperty, IsInt, IsNotEmpty, IsOptional, IsString, Min, ReviewsController (+17 more) ### Community 11 - "MediaSelector.tsx" Cohesion: 0.07 Nodes (33): ConfirmModal(), ConfirmModalProps, getFileType(), Media, MediaSelector(), MediaSelectorProps, Pagination(), PaginationProps (+25 more) -<<<<<<< HEAD ### Community 12 - "index.ts" -Cohesion: 0.07 +Cohesion: 0.06 Nodes (24): backend, frontend, playwright.config.ts, @playwright/test, tests/**/*.ts, authFile, test, compilerOptions (+16 more) -======= -### Community 12 - "PetProfile.tsx" -Cohesion: 0.08 -Nodes (25): ClientLayout(), CheckoutPage(), FeaturedProducts(), ProductCard(), OrderSuccess(), SearchResultsPage(), OrderRowSkeleton(), PetProfileSkeleton() (+17 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 13 - "app-audit-verification.e2e-spec.js" -Cohesion: 0.06 -Nodes (28): AppModule, Module, EnvironmentVariables, IsNotEmpty, IsOptional, IsString, validateEnv(), CustomHttpExceptionFilter (+20 more) +Cohesion: 0.07 +Nodes (26): EnvironmentVariables, IsNotEmpty, IsOptional, IsString, validateEnv(), CustomHttpExceptionFilter, Catch, PrismaExceptionFilter (+18 more) -<<<<<<< HEAD -### Community 14 - "useSettingsStore" -Cohesion: 0.13 -Nodes (21): ClientLayout(), B2BLandingClient(), BrandLogo(), BrandLogoProps, EnamadBadge(), Footer(), MENU_ICONS, MaintenancePage() (+13 more) -======= ### Community 14 - "UserDashboard.tsx" -Cohesion: 0.15 -Nodes (18): AddressModal(), AddressModalProps, DeleteConfirmModal(), DeleteConfirmModalProps, HeaderButton(), HeaderButtonProps, PetProfile(), SearchableSelect() (+10 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +Cohesion: 0.11 +Nodes (25): VerifyContent(), AddressModal(), AddressModalProps, BackButton(), BackButtonProps, DeleteConfirmModal(), DeleteConfirmModalProps, HeaderButton() (+17 more) ### Community 15 - "src/services/api.ts" Cohesion: 0.08 @@ -539,51 +407,33 @@ Nodes (32): Layout(), ProtectedRoute(), MenuGroup, Sidebar(), SidebarProps, SubM Cohesion: 0.09 Nodes (24): DoctorsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+16 more) -<<<<<<< HEAD -### Community 17 - "UserDashboard.tsx" -Cohesion: 0.10 -Nodes (30): AuthModal, AddressModal(), AddressModalProps, AuthModal(), AuthModalProps, extractOtpFromText(), BackButton(), BackButtonProps (+22 more) -======= ### Community 17 - "schema.ts" -Cohesion: 0.13 -Nodes (19): B2BPage(), generateMetadata(), ContactPage(), generateMetadata(), generateMetadata(), getInitialVideos(), Videos(), B2BLandingClient() (+11 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +Cohesion: 0.14 +Nodes (18): B2BPage(), generateMetadata(), ContactPage(), generateMetadata(), generateMetadata(), getInitialVideos(), Videos(), ContactFormClient() (+10 more) ### Community 18 - "JwtAuthGuard" -Cohesion: 0.19 +Cohesion: 0.20 Nodes (7): JwtAuthGuard, Injectable, ROLES_KEY, RequestWithUser, RolesGuard, Injectable, UserReqPayload -### Community 19 - "ProductsService" -Cohesion: 0.10 -Nodes (19): GetProductsDto, ApiPropertyOptional, IsEnum, IsOptional, IsString, ProductsController, ApiOperation, ApiTags (+11 more) +### Community 19 - "RevalidationService" +Cohesion: 0.06 +Nodes (29): RevalidationModule, Global, Module, RevalidationService, Injectable, GetProductsDto, ApiPropertyOptional, IsEnum (+21 more) ### Community 20 - "CreateVideoDto" Cohesion: 0.07 -<<<<<<< HEAD -Nodes (32): CreateVideoDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNotEmpty, IsOptional, IsString, UpdateVideoDto (+24 more) - -### Community 21 - "Button.tsx" -Cohesion: 0.11 -Nodes (14): ButtonProps, ButtonSize, ButtonVariant, Spinner(), Doctor, FAQ, ProductReview, Reviews() (+6 more) - -### Community 22 - "lib/services/api.ts" -Cohesion: 0.08 -Nodes (21): B2BPortal, LoginModal, VerifyContent(), B2BPortal(), ContactInfoItem, LoginModal(), LoginModalProps, PrescriptionUploadModal() (+13 more) -======= Nodes (31): CreateVideoDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNotEmpty, IsOptional, IsString, UpdateVideoDto (+23 more) ### Community 21 - "ProductPage.tsx" -Cohesion: 0.13 -Nodes (15): PLAYBACK_RATES, PodcastInlinePlayer(), PodcastInlinePlayerProps, CalculatorState, ICON_MAP, ProductPage(), ProductReviews, useCalculatorStore (+7 more) +Cohesion: 0.17 +Nodes (12): CalculatorState, ICON_MAP, ProductPage(), ProductReviews, useCalculatorStore, ProductReviews(), ProductReviewsProps, ReviewItem (+4 more) ### Community 22 - "lib/services/api.ts" -Cohesion: 0.08 -Nodes (29): VerifyContent(), B2BPortal(), CartDrawer(), ContactInfoItem, Header(), OrderTracking(), PrescriptionUploadModal(), PrescriptionUploadModalProps (+21 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +Cohesion: 0.07 +Nodes (32): AuthModal, B2BPortal, CartDrawer, ClientLayout(), LoginModal, AuthModal(), AuthModalProps, extractOtpFromText() (+24 more) ### Community 23 - "MenuService" -Cohesion: 0.11 -Nodes (18): MenuController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+10 more) +Cohesion: 0.12 +Nodes (16): MenuController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+8 more) ### Community 24 - "BE-001" Cohesion: 0.06 @@ -621,27 +471,21 @@ Nodes (31): Acceptance Criteria, Affected Application, Affected Files, Alternati Cohesion: 0.06 Nodes (23): App(), Props, RouteErrorBoundary, State, HeroBanner, VetTestimonial, CategoryDist, DashboardData (+15 more) -### Community 33 - "WholesaleService" -Cohesion: 0.14 -Nodes (14): ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param, Post (+6 more) +### Community 33 - "WholesaleApplyDto" +Cohesion: 0.10 +Nodes (20): ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString, WholesaleApplyDto, ApiBearerAuth, ApiOperation (+12 more) ### Community 34 - "B2BService" Cohesion: 0.12 Nodes (16): B2BController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+8 more) -<<<<<<< HEAD -### Community 35 - "PetProfile.tsx" -Cohesion: 0.11 -Nodes (17): ArchiveProductCard(), FeaturedProducts(), ProductCard(), PetProfile(), SearchResultsPage(), OrderRowSkeleton(), PetProfileSkeleton(), ProductCardSkeleton() (+9 more) -======= ### Community 35 - "AuthController" Cohesion: 0.25 Nodes (13): AuthController, ApiBadRequestResponse, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+5 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 36 - "FaqService" -Cohesion: 0.14 -Nodes (14): FaqController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) +Cohesion: 0.12 +Nodes (16): FaqController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+8 more) ### Community 37 - "راهنمای تست سیستم (Software Testing)" Cohesion: 0.07 @@ -687,19 +531,13 @@ Nodes (10): HomeController, ApiOkResponse, ApiOperation, ApiTags, Controller, Ge Cohesion: 0.13 Nodes (14): IngredientsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) -<<<<<<< HEAD -### Community 48 - "useCartStore" -Cohesion: 0.10 -Nodes (15): CartDrawer, CartDrawer(), Header(), OrderSuccess(), OrderTracking(), mockProduct, ApiErr, Order (+7 more) -======= ### Community 48 - "auth.module.ts" Cohesion: 0.17 Nodes (10): DEFAULT_JWT_REFRESH_SECRET, DEFAULT_JWT_SECRET, getJwtSecret(), AuthModule, Module, JwtPayload, JwtStrategy, Injectable (+2 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 49 - "devDependencies" Cohesion: 0.11 -Nodes (19): autoprefixer, devDependencies, autoprefixer, eslint, @eslint/js, globals, postcss, @types/node (+11 more) +Nodes (19): autoprefixer, devDependencies, autoprefixer, eslint, @eslint/js, postcss, tailwindcss, @types/node (+11 more) ### Community 50 - "devDependencies" Cohesion: 0.13 @@ -713,26 +551,13 @@ Nodes (18): BlogsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Bod Cohesion: 0.14 Nodes (14): PrescriptionsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+6 more) -<<<<<<< HEAD -### Community 52 - "PrescriptionsService" -Cohesion: 0.14 -Nodes (14): PrescriptionsController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Get, Param (+6 more) - -======= ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 53 - "SmartAdvisorService" Cohesion: 0.13 Nodes (14): SmartAdvisorController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Delete, Get (+6 more) -<<<<<<< HEAD -### Community 54 - "UsersService" -Cohesion: 0.06 -Nodes (41): DEFAULT_JWT_REFRESH_SECRET, DEFAULT_JWT_SECRET, getJwtSecret(), AuthModule, Module, JwtPayload, JwtStrategy, Injectable (+33 more) -======= ### Community 54 - "UsersController" Cohesion: 0.19 Nodes (16): ApiBadRequestResponse, ApiBearerAuth, ApiCreatedResponse, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+8 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 55 - "UITexts.tsx" Cohesion: 0.09 @@ -754,15 +579,6 @@ Nodes (12): ContactController, Body, Controller, Get, Param, Post, Put, Query (+ Cohesion: 0.06 Nodes (30): compilerOptions, allowSyntheticDefaultImports, baseUrl, declaration, emitDecoratorMetadata, esModuleInterop, experimentalDecorators, forceConsistentCasingInFileNames (+22 more) -<<<<<<< HEAD -### Community 61 - "AdminTransactionFilterDto" -Cohesion: 0.22 -Nodes (7): AdminTransactionFilterDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString, Type - -### Community 62 - "CreateReviewDto" -Cohesion: 0.17 -Nodes (11): CreateReviewDto, ApiProperty, IsInt, IsNotEmpty, IsOptional, IsString, Min, Post (+3 more) -======= ### Community 60 - "users.controller.ts" Cohesion: 0.14 Nodes (13): AddressDto, ApiProperty, ApiPropertyOptional, IsBoolean, IsNotEmpty, IsOptional, IsString, ApiPropertyOptional (+5 more) @@ -772,9 +588,8 @@ Cohesion: 0.20 Nodes (8): AdminTransactionFilterDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString, Type, ClientMetadata ### Community 62 - "ProductDto" -Cohesion: 0.17 +Cohesion: 0.18 Nodes (7): ProductDto, ApiPropertyOptional, IsArray, IsBoolean, IsNumber, IsOptional, IsString ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 63 - "dependencies" Cohesion: 0.05 @@ -784,32 +599,18 @@ Nodes (43): dependencies, bcrypt, bcryptjs, class-transformer, class-validator, Cohesion: 0.10 Nodes (20): compilerOptions, allowImportingTsExtensions, erasableSyntaxOnly, lib, module, moduleDetection, moduleResolution, noEmit (+12 more) -### Community 65 - "Media.tsx" -Cohesion: 0.19 -Nodes (9): ImagePreviewModal(), ImagePreviewModalProps, getFileType(), Media, MediaManager(), ProductItem, Media, PrescriptionsManager (+1 more) +### Community 65 - "app.e2e-spec.js" +Cohesion: 0.50 +Nodes (3): app_module_1, supertest_1, testing_1 -<<<<<<< HEAD -### Community 66 - "WikiController" -Cohesion: 0.13 -Nodes (13): ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags, Controller, Get, Param, Query (+5 more) +### Community 66 - "AdminQueryDto" +Cohesion: 0.17 +Nodes (7): ApiQuery, Get, Query, AdminQueryDto, ApiPropertyOptional, IsOptional, IsString ### Community 67 - "PetsController" Cohesion: 0.10 Nodes (14): PetsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Controller, Delete, Get (+6 more) -### Community 68 - "20260526145407_init/migration.sql" -Cohesion: 0.27 -Nodes (14): "coupons", "health_logs", "order_items", "orders", "pet_medical_conditions", "pets", "product_ingredients", "product_symptoms" (+6 more) -======= -### Community 66 - "ApiOperation" -Cohesion: 0.22 -Nodes (8): ApiOperation, ApiQuery, Get, Query, AdminQueryDto, ApiPropertyOptional, IsOptional, IsString - -### Community 67 - "admin.module.ts" -Cohesion: 0.06 -Nodes (23): AdminModule, Module, PetsController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Controller (+15 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - ### Community 69 - "Required Review Group Closures" Cohesion: 0.10 Nodes (19): 10. Orders Backend, 11. Settings & Administrative Backend, 12. Prisma Schema, Migrations & Seed, 13. Redis & Temporary Auth State, 14. Unit & E2E Tests, 15. Docker, NGINX, Prometheus & Deployment Config, 16. Documentation & OpenAPI Artifacts, 1. Storefront Shell & Routing (+11 more) @@ -819,12 +620,8 @@ Cohesion: 0.08 Nodes (23): compilerOptions, allowImportingTsExtensions, erasableSyntaxOnly, jsx, lib, module, moduleDetection, moduleResolution (+15 more) ### Community 71 - "getPageMetadata" -Cohesion: 0.08 -<<<<<<< HEAD -Nodes (16): generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata() (+8 more) -======= -Nodes (17): generateMetadata(), CatalogClient(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata() (+9 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +Cohesion: 0.09 +Nodes (16): generateMetadata(), generateMetadata(), generateMetadata(), generateMetadata(), getHomeData(), Home(), generateMetadata(), generateMetadata() (+8 more) ### Community 72 - "Operational Rules & Boundaries" Cohesion: 0.11 @@ -842,15 +639,11 @@ Nodes (14): ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, De Cohesion: 0.05 Nodes (47): CreateHealthLogDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString, CreatePetDto, ApiProperty (+39 more) -### Community 76 - "CreateEBankCheckoutDto" -Cohesion: 0.22 -Nodes (8): CreateEBankCheckoutDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsNumber, IsOptional, IsString, Min - ### Community 77 - "seo.module.ts" Cohesion: 0.16 Nodes (10): SeoController, ApiOperation, ApiTags, Controller, Get, Param, SeoModule, Module (+2 more) -### Community 78 - "route.ts" +### Community 78 - "rss.xml/route.ts" Cohesion: 0.67 Nodes (3): dynamic, escapeXml(), GET() @@ -867,8 +660,8 @@ Cohesion: 0.11 Nodes (17): 1. Always Read Tech Stack First, 2. Sub-step Execution (Token Resume Support), 3. Mandatory Test Authoring, 4. Code Quality Standards, 5. File Scope Boundary, 6. Forbidden Actions, Expected JSON Output Schema, IMPLEMENT MODE — Normal Operation (+9 more) ### Community 82 - "scripts" -Cohesion: 0.08 -Nodes (24): concurrently, dotenv, devDependencies, concurrently, dotenv, @playwright/test, name, private (+16 more) +Cohesion: 0.07 +Nodes (28): concurrently, dotenv, devDependencies, concurrently, dotenv, @playwright/test, @types/node, typescript (+20 more) ### Community 83 - "dependencies" Cohesion: 0.10 @@ -878,6 +671,10 @@ Nodes (21): dependencies, axios, lucide-react, react, react-dom, react-hot-toast Cohesion: 0.12 Nodes (16): 1. Active Secret Scanning (All Modified Files), 2. Docker Container Verification (if Dockerfile exists), 3. CI/CD Basic Check (if `.github/workflows/` exists), 4. Failure Routing Protocol, 5. Forbidden Actions, ENFORCE MODE — Normal Operation, Expected JSON Output Schema, Operational Rules & Boundaries (+8 more) +### Community 85 - "ArchivePage.tsx" +Cohesion: 0.09 +Nodes (19): ArchiveProductCard(), CATEGORY_MAP, ICON_MAP, BannerPlacement(), BannerPlacementProps, OrderRowSkeleton(), PetProfileSkeleton(), ProductCardSkeleton() (+11 more) + ### Community 86 - "zibal.service.ts" Cohesion: 0.16 Nodes (9): GatewayHealthResult, IPaymentGateway, PaymentInquiryResult, PaymentRequestOptions, PaymentRequestResult, PaymentVerifyResult, ZibalInquiryResponse, ZibalRequestResponse (+1 more) @@ -886,66 +683,45 @@ Nodes (9): GatewayHealthResult, IPaymentGateway, PaymentInquiryResult, PaymentRe Cohesion: 0.12 Nodes (17): dependencies, axios, lucide-react, motion, next, react, react-dom, sonner (+9 more) -<<<<<<< HEAD -### Community 88 - "ProductPage.tsx" -Cohesion: 0.10 -Nodes (17): revalidate, PLAYBACK_RATES, PodcastInlinePlayer(), PodcastInlinePlayerProps, CalculatorState, ICON_MAP, ProductPage(), ProductReviews (+9 more) -======= -### Community 88 - "toPersian" -Cohesion: 0.10 -Nodes (15): AuthModal, B2BPortal, CartDrawer, LoginModal, AuthModal(), AuthModalProps, extractOtpFromText(), LoginModal() (+7 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - ### Community 89 - "seed-products.ts" Cohesion: 0.17 Nodes (12): prisma, main(), prisma, determineSuitableFor(), findOrCreateCategory(), getProductImageUrl(), main(), parseSize() (+4 more) -<<<<<<< HEAD -### Community 90 - "HomeClient.tsx" -Cohesion: 0.11 -Nodes (20): HomeClient(), HomeClientProps, getHomeData(), Home(), CATEGORY_MAP, ICON_MAP, BannerPlacement(), BannerPlacementProps (+12 more) -======= ### Community 90 - "useSettingsStore" -Cohesion: 0.08 -Nodes (34): HomeClient(), HomeClientProps, ArchiveProductCard(), CATEGORY_MAP, ICON_MAP, BannerPlacement(), BannerPlacementProps, BrandLogo() (+26 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +Cohesion: 0.09 +Nodes (27): HomeClient(), HomeClientProps, B2BLandingClient(), BlogPost, BlogPreviewSection(), BrandLogo(), BrandLogoProps, ContactInfoItem (+19 more) ### Community 91 - "Reconciled Audit Roles & Assignments" Cohesion: 0.12 Nodes (15): 10. Documentation Engineer, 1. Lead Architect / Orchestrator, 2. React / Vite Storefront Auditor, 3. NestJS Backend Auditor, 4. Admin Features Auditor, 5. Database & Data Integrity Auditor, 6. Security Auditor, 7. TypeScript & Code Quality Auditor (+7 more) ### Community 92 - "OrdersService" -Cohesion: 0.08 -Nodes (29): CreateOrderDto, OrderItemDto, ApiProperty, ApiPropertyOptional, IsArray, IsNotEmpty, IsNumber, IsOptional (+21 more) +Cohesion: 0.10 +Nodes (18): OrdersController, ApiBadRequestResponse, ApiBearerAuth, ApiCreatedResponse, ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags (+10 more) ### Community 94 - "Phase 3.1 — Human Review Preparation and Master Backlog Critique" Cohesion: 0.13 Nodes (14): 10. Dependency & Wave Adjustments, 11. Acceptance Criteria Refinements, 12. Business and Product Decision Classification, 13. Final Recommended Backlog Summary, 1. Executive Assessment, 2. Findings That Require No Change, 3. Findings Requiring Task Refinements, 4. Tasks Requiring Splitting (+6 more) -### Community 95 - "schema.ts" -Cohesion: 0.15 -Nodes (18): B2BPage(), generateMetadata(), ContactPage(), generateMetadata(), generateMetadata(), getRelatedProducts(), getWikiTerm(), WikiTermPage() (+10 more) +### Community 95 - "blog/[slug]/page.tsx" +Cohesion: 0.23 +Nodes (12): BlogPostPage(), generateMetadata(), getBlog(), revalidate, safeIso(), safeLocalDate(), generateMetadata(), revalidate (+4 more) ### Community 96 - "compilerOptions" Cohesion: 0.06 Nodes (32): compilerOptions, allowJs, esModuleInterop, incremental, isolatedModules, jsx, lib, module (+24 more) -### Community 97 - "blog/[slug]/page.tsx" -Cohesion: 0.35 -Nodes (10): BlogPostPage(), generateMetadata(), getBlog(), revalidate, safeIso(), safeLocalDate(), generateMetadata(), BlogPostClient() (+2 more) +### Community 97 - "SettingsService" +Cohesion: 0.09 +Nodes (3): SmsLogQuery, SettingsService, Injectable ### Community 98 - "scripts" Cohesion: 0.13 Nodes (15): scripts, build, build:nest, docs:generate, lint, seo:backfill, start, start:debug (+7 more) ### Community 99 - "BlogsController" -<<<<<<< HEAD Cohesion: 0.15 Nodes (15): BlogsController, ApiBearerAuth, ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+7 more) -======= -Cohesion: 0.08 -Nodes (19): BlogsController, ApiBearerAuth, ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+11 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 100 - "Deep Audit Summary Report" Cohesion: 0.14 @@ -971,27 +747,17 @@ Nodes (11): formatPriceWithCommas(), PriceInput(), PriceInputProps, toEnglishDig Cohesion: 0.17 Nodes (11): 1. Detect Test Runner from Tech Stack, 2. Execution Output Capture (Mandatory), 3. Acceptance Criteria Verification, 4. Failure Routing Protocol, 5. Success Routing Protocol, 6. Forbidden Actions, Expected JSON Output Schema, Operational Rules & Boundaries (+3 more) -<<<<<<< HEAD -### Community 106 - "blog/page.tsx" -Cohesion: 0.38 -Nodes (6): Blog(), generateMetadata(), getBlogs(), getCategories(), revalidate, BlogPage() - -### Community 107 - "layout.tsx" -Cohesion: 0.43 -Nodes (5): generateMetadata(), RootLayout(), lalezar, vazirmatn, generateOrganizationSchema() - -### Community 108 - "PrismaService" -Cohesion: 0.07 -Nodes (20): CategoryQuery, MeliPayamakPattern, MeliPayamakResponse, SendPatternSmsOptions, SmsConfig, SmsLogQuery, CreateContactSubmissionDto, UpdateContactInfoItemDto (+12 more) -======= ### Community 106 - "Media.tsx" Cohesion: 0.19 Nodes (9): ImagePreviewModal(), ImagePreviewModalProps, getFileType(), Media, MediaManager(), ProductItem, Media, PrescriptionsManager (+1 more) +### Community 107 - "WikiController" +Cohesion: 0.13 +Nodes (13): ApiNotFoundResponse, ApiOkResponse, ApiOperation, ApiTags, Controller, Get, Param, Query (+5 more) + ### Community 108 - "PrismaService" Cohesion: 0.08 -Nodes (18): CategoryQuery, MeliPayamakPattern, MeliPayamakResponse, SendPatternSmsOptions, SmsConfig, SmsLogQuery, CreateContactSubmissionDto, UpdateContactInfoItemDto (+10 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +Nodes (19): CategoryQuery, MeliPayamakPattern, MeliPayamakResponse, SendPatternSmsOptions, SmsConfig, CreateContactSubmissionDto, UpdateContactInfoItemDto, MenuType (+11 more) ### Community 109 - "1. Summary of Integrity Repairs Performed" Cohesion: 0.17 @@ -1009,16 +775,6 @@ Nodes (10): 1. Mark Active Task as Complete, 2. Documentation Updates, 3. Dynami Cohesion: 0.18 Nodes (10): 1. Pre-Deployment Checklist, 2. Build Verification, 3. Deployment Strategy (Based on Target), 4. Post-Deployment Health Check, 5. Forbidden Actions, Expected JSON Output Schema, Operational Rules & Boundaries, Required Output Artifacts (What files to write/update) (+2 more) -<<<<<<< HEAD -### Community 113 - "reviews.controller.ts" -Cohesion: 0.22 -Nodes (9): ApiProperty, IsIn, IsOptional, IsString, UpdateReviewDto, ReviewsModule, Module, ReviewsService (+1 more) -======= -### Community 113 - "CreateReviewDto" -Cohesion: 0.14 -Nodes (13): CreateReviewDto, ApiProperty, IsInt, IsNotEmpty, IsOptional, IsString, Min, ApiProperty (+5 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 - ### Community 114 - "AppService" Cohesion: 0.29 Nodes (5): AppController, Controller, Get, AppService, Injectable @@ -1047,15 +803,13 @@ Nodes (9): compilerOptions, esModuleInterop, module, moduleResolution, skipLibCh Cohesion: 0.20 Nodes (9): Compile and run the project, Deployment, Description, License, Project setup, Resources, Run tests, Stay in touch (+1 more) -<<<<<<< HEAD -### Community 122 - "videos/page.tsx" -Cohesion: 0.47 -Nodes (5): generateMetadata(), getInitialVideos(), Videos(), VideosPage(), generateVideoObjectSchema() -======= +### Community 122 - "AdminService" +Cohesion: 0.16 +Nodes (4): Delete, Param, AdminService, Injectable + ### Community 123 - "CreateEBankCheckoutDto" Cohesion: 0.22 Nodes (8): CreateEBankCheckoutDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsNumber, IsOptional, IsString, Min ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 124 - "Repository Map" Cohesion: 0.20 @@ -1073,23 +827,13 @@ Nodes (9): name, private, scripts, build, dev, lint, preview, type (+1 more) Cohesion: 0.20 Nodes (9): Arch Linux, Contributors, Install, Known problems for variable version, License, Sahel-Font, To Do (variable), طریقه استفاده از نسخه متغیر variable (+1 more) -<<<<<<< HEAD -### Community 128 - "AdminService" -Cohesion: 0.05 -Nodes (38): AdminController, ApiBearerAuth, ApiOperation, ApiQuery, ApiTags, Body, Controller, Delete (+30 more) - -### Community 129 - "نقشه جامع پوشش تست‌های سرتاسری (E2E Test Coverage Map) — پروژه Canina" -Cohesion: 0.40 -Nodes (4): نقشه جامع پوشش تست‌های سرتاسری (E2E Test Coverage Map) — پروژه Canina, ۱. معماری و نقش‌های کاربری (User Roles), ۲. ماتریس جریان‌ها و قابلیت‌های کاربرمحور (Feature & Flow Matrix), ۳. برنامه تکمیل و توسعه تست‌های مفقود (Action Plan) -======= ### Community 128 - "AdminController" -Cohesion: 0.14 -Nodes (7): AdminController, ApiBearerAuth, ApiTags, Body, Controller, Put, UseGuards +Cohesion: 0.11 +Nodes (9): AdminController, ApiBearerAuth, ApiOperation, ApiTags, Body, Controller, Post, Put (+1 more) ### Community 129 - "InitiatePaymentDto" Cohesion: 0.43 Nodes (7): InitiatePaymentDto, InitiateWalletTopupDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 130 - "Sahel-Font" Cohesion: 0.20 @@ -1107,9 +851,9 @@ Nodes (8): cmd_next_task(), cmd_progress(), cmd_reset(), cmd_status(), cmd_unblo Cohesion: 0.22 Nodes (8): author, description, license, name, prisma, seed, private, version -### Community 134 - "app.e2e-spec.js" -Cohesion: 0.50 -Nodes (3): app_module_1, supertest_1, testing_1 +### Community 134 - "blog/page.tsx" +Cohesion: 0.38 +Nodes (6): Blog(), generateMetadata(), getBlogs(), getCategories(), revalidate, BlogPage() ### Community 135 - "graphify reference: extra exports and benchmark" Cohesion: 0.22 @@ -1127,6 +871,10 @@ Nodes (8): 1. `TASK-AUTH-001`, 2. `TASK-FIN-001`, 3. `DECISION-002`, 4. `TASK-VE Cohesion: 0.22 Nodes (8): Arch Linux, bower, Install, npm, Shabnam Font, yarn, طریقه استفاده در صفحات وب:, نمونه متن Sample: +### Community 139 - "layout.tsx" +Cohesion: 0.43 +Nodes (5): generateMetadata(), RootLayout(), lalezar, vazirmatn, generateOrganizationSchema() + ### Community 140 - "ErrorBoundary" Cohesion: 0.22 Nodes (3): ErrorBoundary, Props, State @@ -1143,28 +891,22 @@ Nodes (7): backend, distMainPath, fs, http, path, { spawn, execSync }, waitForBa Cohesion: 0.25 Nodes (6): app_module_1, core_1, fs, path, swagger_1, yaml -<<<<<<< HEAD -======= ### Community 145 - "admin.service.ts" -Cohesion: 0.17 -Nodes (14): CouponInput, CouponTargetInput, PaginationQuery, CreateUserDto, ApiProperty, ApiPropertyOptional, IsEmail, IsNotEmpty (+6 more) +Cohesion: 0.20 +Nodes (13): CouponInput, CouponTargetInput, PaginationQuery, CreateUserDto, ApiProperty, ApiPropertyOptional, IsEmail, IsNotEmpty (+5 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 146 - "System Discovery" Cohesion: 0.25 Nodes (7): Active Core Applications, Current Architecture, Evidence-Based Status Matrix, Excluded / Non-Auditable Artifacts, Major Business Domains Discovered, System Discovery, Technical Architecture Summary -<<<<<<< HEAD -======= -### Community 147 - "RevalidationService" -Cohesion: 0.11 -Nodes (7): RevalidationModule, Global, Module, RevalidationService, Injectable, RedisService, Injectable +### Community 147 - "useCartStore" +Cohesion: 0.18 +Nodes (13): CheckoutPage(), ProductCard(), OrderSuccess(), OrderTracking(), PetProfile(), SearchResultsPage(), useCartStore, HealthLog (+5 more) ### Community 148 - "wiki/[slug]/page.tsx" Cohesion: 0.60 Nodes (5): generateMetadata(), getRelatedProducts(), getWikiTerm(), WikiTermPage(), generateMedicalWebPageSchema() ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 149 - "SmsSettingsPage.tsx" Cohesion: 0.29 Nodes (7): PatternItem, SmsConfigState, SmsLogItem, SmsLogStats, SmsSettingsPage(), toPersianDigits(), SmsSettingsPage @@ -1173,19 +915,13 @@ Nodes (7): PatternItem, SmsConfigState, SmsLogItem, SmsLogStats, SmsSettingsPage Cohesion: 0.29 Nodes (6): 1. Executive Vision, 2. Target Audience, 3. Functional Requirements, 4. Non-Functional Requirements (Performance, Security), 5. Epic / Feature Breakdown, Product Requirement Document (PRD) -<<<<<<< HEAD -### Community 151 - "admin.service.ts" -Cohesion: 0.07 -Nodes (16): CouponTargetInput, PaginationQuery, AdminLoginInput, AuthService, LoginInput, RegisterInput, Injectable, RevalidationModule (+8 more) - -### Community 152 - "InitiatePaymentDto" -Cohesion: 0.43 -Nodes (7): InitiatePaymentDto, InitiateWalletTopupDto, ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString -======= ### Community 151 - "auth.service.ts" -Cohesion: 0.09 -Nodes (17): AdminLoginInput, AuthService, LoginInput, RegisterInput, Injectable, SendOtpDto, ApiProperty, IsNotEmpty (+9 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +Cohesion: 0.08 +Nodes (25): AdminLoginInput, LoginInput, RegisterInput, AdminLoginDto, ApiProperty, IsEmail, IsNotEmpty, IsString (+17 more) + +### Community 152 - "cartStore.ts" +Cohesion: 0.15 +Nodes (8): ApiErr, Order, OrderItem, OrderService, CartItem, CartStore, Order, mockProduct ### Community 153 - "exclude" Cohesion: 0.22 @@ -1199,6 +935,10 @@ Nodes (6): Attempted Command Execution Log, Backend `backend/package.json` Scrip Cohesion: 0.67 Nodes (3): prisma, runSeoBackfill(), stripHtml() +### Community 158 - "AuthService" +Cohesion: 0.19 +Nodes (3): AuthService, Injectable, normalizeMobile() + ### Community 159 - "with-vpn.sh" Cohesion: 0.62 Nodes (6): cleanup(), log(), with-vpn.sh script, start_vpn(), stop_vpn(), vpn_is_up() @@ -1267,13 +1007,21 @@ Nodes (4): evidenceList, ledger, mandatoryMap, mandatoryScope Cohesion: 0.40 Nodes (4): activeFiles, errors, validationOutput, warnings +### Community 176 - "CreateOrderDto" +Cohesion: 0.22 +Nodes (11): CreateOrderDto, OrderItemDto, ApiProperty, ApiPropertyOptional, IsArray, IsNotEmpty, IsNumber, IsOptional (+3 more) + +### Community 177 - "SmsLogQueryDto" +Cohesion: 0.25 +Nodes (7): SmsLogQueryDto, ApiPropertyOptional, IsIn, IsNumber, IsOptional, IsString, Type + +### Community 178 - "نقشه جامع پوشش تست‌های سرتاسری (E2E Test Coverage Map) — پروژه Canina" +Cohesion: 0.33 +Nodes (5): نقشه جامع پوشش تست‌های سرتاسری (E2E Test Coverage Map) — پروژه Canina, ۱. معماری و نقش‌های کاربری (User Roles), ۲. ماتریس جریان‌ها و قابلیت‌های کاربرمحور (Feature & Flow Matrix), ۳. وضعیت پوشش نهایی سوئیت ۱۱گانه (Final 11 Test Suites Status), ۴. راهنمای نگهداری و افزودن فیچرهای جدید بدون شکستن تست‌ها (Developer Maintenance Guide) + ### Community 179 - "PaginationDto" Cohesion: 0.07 -<<<<<<< HEAD Nodes (20): BlogsModule, Module, BlogFilterDto, BlogsService, Injectable, PaginationDto, SortOrder, ApiPropertyOptional (+12 more) -======= -Nodes (29): BlogFilterDto, PaginationDto, SortOrder, ApiPropertyOptional, IsEnum, IsInt, IsOptional, IsString (+21 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 180 - "API Contract Specification" Cohesion: 0.50 @@ -1291,9 +1039,9 @@ Nodes (3): Architectural Overview, Critical Review Findings & Required Enhanceme Cohesion: 0.50 Nodes (3): Overview & Content Foundation, SEO & Content Requirements, 🚀 SEO & Content Strategy Review (12_seo_content) -### Community 184 - "MetricsController" -Cohesion: 0.20 -Nodes (5): ApiExcludeController, MetricsController, Controller, Get, Res +### Community 184 - "RedisService" +Cohesion: 0.08 +Nodes (12): ApiExcludeController, AppModule, Module, MetricsController, Controller, Get, Res, RedisModule (+4 more) ### Community 191 - "graphify reference: add a URL and watch a folder" Cohesion: 0.50 @@ -1319,14 +1067,13 @@ Nodes (3): Expanding the ESLint configuration, React Compiler, React + TypeScrip Cohesion: 0.50 Nodes (3): Select, SelectOption, SelectProps -### Community 199 - "auth.controller.ts" -<<<<<<< HEAD -Cohesion: 0.06 -Nodes (43): AuthController, ApiBadRequestResponse, ApiBearerAuth, ApiOkResponse, ApiOperation, ApiTags, Body, Controller (+35 more) -======= -Cohesion: 0.10 -Nodes (19): AdminLoginDto, ApiProperty, IsEmail, IsNotEmpty, IsString, MinLength, LoginDto, ApiProperty (+11 more) ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +### Community 197 - "wiki/page.tsx" +Cohesion: 0.40 +Nodes (3): generateMetadata(), formatIngredientDisplayName(), IngredientWiki() + +### Community 199 - "RegisterDto" +Cohesion: 0.22 +Nodes (8): RegisterDto, ApiProperty, ApiPropertyOptional, IsEmail, IsNotEmpty, IsOptional, IsString, MinLength ### Community 200 - "application/README.md" Cohesion: 0.50 @@ -1344,17 +1091,6 @@ Nodes (3): ADR-AUTH-001: Admin Panel Authentication Architecture & Token Managem Cohesion: 0.67 Nodes (3): Shabnam Font README, Shabnam Font Sample, Vazir Font -<<<<<<< HEAD -======= -### Community 234 - "WholesaleApplyDto" -Cohesion: 0.29 -Nodes (6): ApiProperty, ApiPropertyOptional, IsNotEmpty, IsOptional, IsString, WholesaleApplyDto - -### Community 237 - "app/page.tsx" -Cohesion: 0.67 -Nodes (3): generateMetadata(), getHomeData(), Home() - ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 ### Community 298 - ".initiateOrderPayment" Cohesion: 0.20 Nodes (10): ApiPropertyOptional, IsOptional, IsString, ZibalCallbackQueryDto, ApiBadRequestResponse, ApiOkResponse, Req, Res (+2 more) @@ -1368,43 +1104,24 @@ Cohesion: 0.83 Nodes (3): GET(), handleRevalidate(), POST() ## Knowledge Gaps -- **1332 isolated node(s):** `$schema`, `collection`, `sourceRoot`, `deleteOutDir`, `name` (+1327 more) +- **1335 isolated node(s):** `$schema`, `collection`, `sourceRoot`, `deleteOutDir`, `name` (+1330 more) These have ≤1 connection - possible missing edges or undocumented components. -<<<<<<< HEAD -- **100 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. -======= -- **118 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +- **101 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. ## Suggested Questions _Questions this graph is uniquely positioned to answer:_ -<<<<<<< HEAD -- **Why does `ApiResponse` connect `src/services/api.ts` to `WikiController`, `BlogsController`, `auth.controller.ts`, `PetsController`, `HomeController`, `ProductsService`, `UsersService`, `OrdersService`?** - _High betweenness centrality (0.081) - this node is a cross-community bridge._ -- **Why does `Roles()` connect `Roles` to `WholesaleApplyDto`, `B2BService`, `SmsService`, `FaqService`, `CmsController`, `tickets.controller.ts`, `SslController`, `BannersService`, `ReviewsController`, `TestimonialsService`, `IngredientsService`, `reviews.controller.ts`, `JwtAuthGuard`, `ProductsService`, `PrescriptionsService`, `SmartAdvisorService`, `MenuService`, `ContactService`?** - _High betweenness centrality (0.064) - this node is a cross-community bridge._ -- **Why does `JwtAuthGuard` connect `JwtAuthGuard` to `AdminService`, `PetsController`, `CmsController`, `tickets.controller.ts`, `auth.controller.ts`, `admin.module.ts`, `pets/pets.controller.ts`, `DoctorQueryDto`, `reviews.controller.ts`, `PaginationDto`, `ProductsService`, `CreateVideoDto`, `UsersService`?** - _High betweenness centrality (0.035) - this node is a cross-community bridge._ -======= -- **Why does `ApiResponse` connect `src/services/api.ts` to `BlogsController`, `AuthController`, `PetsController`, `HomeController`, `ProductsService`, `PaginationDto`, `UsersController`, `OrdersService`?** - _High betweenness centrality (0.070) - this node is a cross-community bridge._ -- **Why does `Roles()` connect `Roles` to `WholesaleService`, `B2BService`, `SmsService`, `FaqService`, `CmsController`, `tickets.controller.ts`, `SslController`, `BannersService`, `ReviewsService`, `TestimonialsService`, `IngredientsService`, `JwtAuthGuard`, `ProductsService`, `PrescriptionsService`, `SmartAdvisorService`, `MenuService`, `ContactService`?** - _High betweenness centrality (0.062) - this node is a cross-community bridge._ -- **Why does `PrismaService` connect `PrismaService` to `app.module.ts`, `SmsService`, `CmsController`, `tickets.controller.ts`, `ReportsController`, `DoctorQueryDto`, `admin.service.ts`, `RevalidationService`, `ProductsService`, `CreateVideoDto`, `auth.service.ts`, `MenuService`, `WholesaleService`, `B2BService`, `FaqService`, `ZibalService`, `CategoriesController`, `MediaController`, `ZibalEBankService`, `BannersService`, `TestimonialsService`, `HomeController`, `IngredientsService`, `PaginationDto`, `PrescriptionsService`, `SmartAdvisorService`, `MetricsController`, `ContactService`, `payment.service.ts`, `admin.module.ts`, `PetsController`, `seo.module.ts`, `zibal.service.ts`, `OrdersService`, `BlogsController`, `CreateReviewDto`, `UsersService`?** - _High betweenness centrality (0.031) - this node is a cross-community bridge._ ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 +- **Why does `ApiResponse` connect `src/services/api.ts` to `BlogsController`, `AuthController`, `PetsController`, `WikiController`, `HomeController`, `RevalidationService`, `UsersController`, `OrdersService`?** + _High betweenness centrality (0.086) - this node is a cross-community bridge._ +- **Why does `Roles()` connect `Roles` to `WholesaleApplyDto`, `B2BService`, `SettingsController`, `FaqService`, `CmsController`, `tickets.controller.ts`, `SslController`, `BannersService`, `CreateReviewDto`, `TestimonialsService`, `IngredientsService`, `JwtAuthGuard`, `RevalidationService`, `PrescriptionsService`, `SmartAdvisorService`, `MenuService`, `ContactService`?** + _High betweenness centrality (0.067) - this node is a cross-community bridge._ +- **Why does `JwtAuthGuard` connect `JwtAuthGuard` to `PetsController`, `CmsController`, `tickets.controller.ts`, `admin.module.ts`, `PetsController`, `DoctorQueryDto`, `admin.service.ts`, `PaginationDto`, `RevalidationService`, `CreateVideoDto`, `auth.service.ts`, `users.controller.ts`?** + _High betweenness centrality (0.034) - this node is a cross-community bridge._ - **What connects `$schema`, `collection`, `sourceRoot` to the rest of the system?** - _1332 weakly-connected nodes found - possible documentation gaps or missing edges._ + _1335 weakly-connected nodes found - possible documentation gaps or missing edges._ - **Should `app.module.ts` be split into smaller, more focused modules?** - _Cohesion score 0.07529411764705882 - nodes in this community are weakly interconnected._ -- **Should `SmsService` be split into smaller, more focused modules?** -<<<<<<< HEAD - _Cohesion score 0.055964653902798235 - nodes in this community are weakly interconnected._ + _Cohesion score 0.06988120195667366 - nodes in this community are weakly interconnected._ - **Should `ProductService` be split into smaller, more focused modules?** - _Cohesion score 0.07127882599580712 - nodes in this community are weakly interconnected._ -======= - _Cohesion score 0.052028732284993204 - nodes in this community are weakly interconnected._ -- **Should `ProductService` be split into smaller, more focused modules?** - _Cohesion score 0.06229508196721312 - nodes in this community are weakly interconnected._ ->>>>>>> cf9ae234b9938be85c833ab98741a4590f9cfe13 + _Cohesion score 0.06187202538339503 - nodes in this community are weakly interconnected._ +- **Should `SafeImage.tsx` be split into smaller, more focused modules?** + _Cohesion score 0.09462365591397849 - nodes in this community are weakly interconnected._ \ No newline at end of file diff --git a/graphify-out/cache/stat-index.json b/graphify-out/cache/stat-index.json index beeed88..2459172 100644 --- a/graphify-out/cache/stat-index.json +++ b/graphify-out/cache/stat-index.json @@ -1 +1 @@ -{".agents/rules/graphify.md":{"size":933,"mtime_ns":1786870552830271100,"indexed_at_ns":1787726739808807000,"word_count":127,"hashes":{".agents/rules/graphify.md":"26f2577a68d808f7f33ec3e418b95b635aec180d93b22b975e9ae67c47e361c8"}},".agents/workflows/graphify.md":{"size":229,"mtime_ns":1786870552832398300,"indexed_at_ns":1787726739809809700,"word_count":37,"hashes":{".agents/workflows/graphify.md":"a81e2d017e0669c71099362b20854e4d9ed68753f1c240d0682120bdb9aa3c72"}},".ai_agency/AGENCY.md":{"size":8757,"mtime_ns":1785148021979607300,"indexed_at_ns":1787726739810808600,"word_count":1161,"hashes":{".ai_agency/agency.md":"88c7c13583a91fc7e41ce055fede9dce20f181e8d264557808989965e83a9030"}},".ai_agency/agents/00_intake.md":{"size":3819,"mtime_ns":1785148021984319000,"indexed_at_ns":1787726739811809900,"word_count":500,"hashes":{".ai_agency/agents/00_intake.md":"9dc8d7eeda0655717dc5b9d2f8572c47567b88ca88de7e4e5bf59869077ff407"}},".ai_agency/agents/01_auditor.md":{"size":3643,"mtime_ns":1785148021987782800,"indexed_at_ns":1787726739813809800,"word_count":467,"hashes":{".ai_agency/agents/01_auditor.md":"37ae09614034d9b5c855e0132b59a5e3cfd2fc38c54d1a5386fa43ba488c4d4d"}},".ai_agency/agents/02_ceo.md":{"size":2341,"mtime_ns":1785148021998374800,"indexed_at_ns":1787726739814809500,"word_count":294,"hashes":{".ai_agency/agents/02_ceo.md":"b4a76df6483fd52e1b9f1e70765b3f7b6d134dc003ef2ad0cb86b952c869c4a5"}},".ai_agency/agents/03_product_manager.md":{"size":8422,"mtime_ns":1785148022001968200,"indexed_at_ns":1787726739815810200,"word_count":1076,"hashes":{".ai_agency/agents/03_product_manager.md":"1927827474b1dd6fd4976af45b51f1ad3128fe3305c3af22639ab2584e8f0b55"}},".ai_agency/agents/04_architect.md":{"size":3603,"mtime_ns":1785148022004966000,"indexed_at_ns":1787726739816809500,"word_count":448,"hashes":{".ai_agency/agents/04_architect.md":"c96b04d5af093f455fa3c64ae177a69421e8150eb38c70bb8587b5a14e7d3ca8"}},".ai_agency/agents/05_dev_backend.md":{"size":7142,"mtime_ns":1785148022012481200,"indexed_at_ns":1787726739817810300,"word_count":953,"hashes":{".ai_agency/agents/05_dev_backend.md":"143a7c8a6fbedcd837d647efddb9f6b49074583502bd77f24c955bd86a6f3df8"}},".ai_agency/agents/06_dev_frontend.md":{"size":7518,"mtime_ns":1785148022017020100,"indexed_at_ns":1787726739819343800,"word_count":1011,"hashes":{".ai_agency/agents/06_dev_frontend.md":"e69679636d42dd626c7c76ddc96e1ddb656ab5b9ee912b89adcc7a9338f34a0b"}},".ai_agency/agents/07_qa_engineer.md":{"size":3764,"mtime_ns":1785148022020044600,"indexed_at_ns":1787726739820379800,"word_count":507,"hashes":{".ai_agency/agents/07_qa_engineer.md":"2616ef2b3ac39ded45fc669d5b5b140e72953fe61a819966fb040382e9b47d45"}},".ai_agency/agents/08_visual_qa.md":{"size":7910,"mtime_ns":1785148022030083200,"indexed_at_ns":1787726739821353800,"word_count":1121,"hashes":{".ai_agency/agents/08_visual_qa.md":"17a5a74039e8a9d7cb40c5bc3c616c7c92d53401efd92d0675d4bbe5e90572a8"}},".ai_agency/agents/09_devops_security.md":{"size":6825,"mtime_ns":1785148022034087400,"indexed_at_ns":1787726739822379900,"word_count":908,"hashes":{".ai_agency/agents/09_devops_security.md":"315bd3cee954ac3496da8db1b1718b75ab3822ec3a90f99bc77767ca99482edf"}},".ai_agency/agents/10_tech_writer.md":{"size":3119,"mtime_ns":1785148022037082600,"indexed_at_ns":1787726739824378500,"word_count":408,"hashes":{".ai_agency/agents/10_tech_writer.md":"3527b44265fec2472cc20ca4641667e1fa3d38cbc9b2fbf9a946ee1e531e9e37"}},".ai_agency/agents/11_deploy.md":{"size":3956,"mtime_ns":1785148022040602600,"indexed_at_ns":1787726739825379700,"word_count":537,"hashes":{".ai_agency/agents/11_deploy.md":"8169bc98b249cd83ba21551dea082f69dfa6deca5f5e4a7f2739a28746c143f9"}},".ai_agency/agents/12_seo_content.md":{"size":10963,"mtime_ns":1785148022048603900,"indexed_at_ns":1787726739826379900,"word_count":1539,"hashes":{".ai_agency/agents/12_seo_content.md":"2f50eb9db8bf1ad7bc23c7d8c3a4f167a2daafb73f095db9237c5bdb20e7a5f4"}},".ai_agency/memory/agent_outputs/README.txt":{"size":290,"mtime_ns":1785148022052150400,"indexed_at_ns":1787726728366347600,"word_count":34},".ai_agency/memory/backlog.json":{"size":10711,"mtime_ns":1785330750958890900,"indexed_at_ns":1787726739730126300,"word_count":981,"hashes":{".ai_agency/memory/backlog.json":"6bf3150a1877d03d03b368df21b84071381b1bb8cd03e3721fa9f8e6c38355be"}},".ai_agency/memory/scratchpad.md":{"size":1879,"mtime_ns":1785148022065114400,"indexed_at_ns":1787726739827380200,"word_count":249,"hashes":{".ai_agency/memory/scratchpad.md":"9d0f687cf8e95c6335f1efb070da8029878417c28117e3b89aa8536ad70a5b95"}},".ai_agency/memory/state.json":{"size":3654,"mtime_ns":1785330750963913800,"indexed_at_ns":1787726739754651600,"word_count":254,"hashes":{".ai_agency/memory/state.json":"1204676f8f295d89733888bb87936061b7a700df0cc936fbf08fd5269b534e8d"}},".ai_agency/orchestrate.py":{"size":6800,"mtime_ns":1785148022072662500,"indexed_at_ns":1787726739755649500,"word_count":644,"hashes":{".ai_agency/orchestrate.py":"90ec787fdd4c71f5203c56b6899aadcc26e6e0bad0cc576d2f982aa42eed42e1"}},".ai_agency/specs/api_contract.md":{"size":1515,"mtime_ns":1785148022077664900,"indexed_at_ns":1787726739828380100,"word_count":139,"hashes":{".ai_agency/specs/api_contract.md":"ea0911b6a5ad6a908ab707f7553f5f24712c1e198fd79255fa85e3249150e8b4"}},".ai_agency/specs/architecture_spec.md":{"size":790,"mtime_ns":1785148022082260900,"indexed_at_ns":1787726739829380100,"word_count":99,"hashes":{".ai_agency/specs/architecture_spec.md":"6269043f6a144e8ac86ff1db7e014075185e5675a4a0ee23e99e70d88253b8af"}},".ai_agency/specs/prd.md":{"size":724,"mtime_ns":1785148022087251600,"indexed_at_ns":1787726739830914500,"word_count":96,"hashes":{".ai_agency/specs/prd.md":"1c6d5a0ec8a709a2b3aed28225f5fe148ad2d75851d45699187678d055947b11"}},".ai_agency/specs/project_health.md":{"size":444,"mtime_ns":1785148022098314600,"indexed_at_ns":1787726739831950800,"word_count":65,"hashes":{".ai_agency/specs/project_health.md":"677c2f1d35c31d75d935766f154683e0483b08c696117ee612bee1528705c598"}},".ai_agency/specs/reviews/README.md":{"size":1029,"mtime_ns":1785148022105834900,"indexed_at_ns":1787726739832950700,"word_count":117,"hashes":{".ai_agency/specs/reviews/readme.md":"8ceb4cae1ad4c0f660557d827ced970cda8f7d020f8124b624b228174b1b65ab"}},".ai_agency/specs/reviews/backend_review.md":{"size":1430,"mtime_ns":1785148022110362400,"indexed_at_ns":1787726739834457300,"word_count":172,"hashes":{".ai_agency/specs/reviews/backend_review.md":"fca1f8d59c2eab255f7aba246b26731fe53f208e737ccf46035389591900a150"}},".ai_agency/specs/reviews/code_health_review.md":{"size":2193,"mtime_ns":1785148022114359700,"indexed_at_ns":1787726739835467400,"word_count":279,"hashes":{".ai_agency/specs/reviews/code_health_review.md":"532e04465e125183d6dd8f8af61bfc8735a514b3fbbc49069f5f0884155ed93f"}},".ai_agency/specs/reviews/frontend_review.md":{"size":1452,"mtime_ns":1785148022118486900,"indexed_at_ns":1787726739837467800,"word_count":183,"hashes":{".ai_agency/specs/reviews/frontend_review.md":"9f826c0267cad8bd5d342b1f908c927976d9be7da3f75b175331381ef8c8b680"}},".ai_agency/specs/reviews/security_review.md":{"size":874,"mtime_ns":1785148022121487200,"indexed_at_ns":1787726739838331800,"word_count":110,"hashes":{".ai_agency/specs/reviews/security_review.md":"51363e62e919d6772c2b3b9a1a3f3870a5892dae6d408217ed3fb475f72d3f0b"}},".ai_agency/specs/reviews/seo_content_review.md":{"size":1238,"mtime_ns":1785148022131533800,"indexed_at_ns":1787726739839755700,"word_count":156,"hashes":{".ai_agency/specs/reviews/seo_content_review.md":"bc8401649a86585b4061b3ec0f584910c54aad25bc9943392179bc070c07a434"}},".ai_agency/specs/reviews/ux_review.md":{"size":1131,"mtime_ns":1785148022136550700,"indexed_at_ns":1787726739840765700,"word_count":150,"hashes":{".ai_agency/specs/reviews/ux_review.md":"b8a52f324e36fcc2d046cc903a05903057098a67a397ae6442d6c825091f4513"}},".antigravity/instructions.md":{"size":226,"mtime_ns":1786870552833405800,"indexed_at_ns":1787726739842276100,"word_count":29,"hashes":{".antigravity/instructions.md":"8d8f5c1bbdbb7b8045e02b06a50e68d3fcfabfb2d65f8ac1cd86168dc8a8cc96"}},".antigravity/workflows/graphify.md":{"size":43292,"mtime_ns":1786870552837921500,"indexed_at_ns":1787726739843281500,"word_count":5442,"hashes":{".antigravity/workflows/graphify.md":"0c16b701a50d64f741f6de107c49584012a8dd7f5e922af9f79754540629e2fe"}},".claude/CLAUDE.md":{"size":226,"mtime_ns":1786870552838920200,"indexed_at_ns":1787726739845281600,"word_count":29,"hashes":{".claude/claude.md":"c6f7fc2f062904d246b700d446ba3ad03e77f41809b12eccfb5e090a11f4fad2"}},".claude/settings.json":{"size":479,"mtime_ns":1786870552841922800,"indexed_at_ns":1787726739757648600,"word_count":38,"hashes":{".claude/settings.json":"0aaafba2cbd7dd67f7d69fa2f01b747c9a72f56ee421a40825521f937caec82b"}},".claude/skills/graphify/SKILL.md":{"size":43292,"mtime_ns":1786870552845041000,"indexed_at_ns":1787726739846281500,"word_count":5442,"hashes":{".claude/skills/graphify/skill.md":"5b24d39cbbb662ea1cd672839f64b50823e1b7de9b113f542248eac38c70cdf1"}},".claude/skills/graphify/references/add-watch.md":{"size":2486,"mtime_ns":1786870552848102000,"indexed_at_ns":1787726739847281400,"word_count":366,"hashes":{".claude/skills/graphify/references/add-watch.md":"cb5e2f3284265c08c88c08f445b96958b13a9115c0afc0a33206c293d1b1c187"}},".claude/skills/graphify/references/exports.md":{"size":3362,"mtime_ns":1786870552849102100,"indexed_at_ns":1787726739848281300,"word_count":470,"hashes":{".claude/skills/graphify/references/exports.md":"7aa8b606e5c19334b6c9fe62a12fc30eb46c0320d1dbb5726cfda0becdd04a5a"}},".claude/skills/graphify/references/extraction-spec.md":{"size":7960,"mtime_ns":1786870552850101900,"indexed_at_ns":1787726739849713100,"word_count":1038,"hashes":{".claude/skills/graphify/references/extraction-spec.md":"9cf5d515d0d8584aeef36708df34f560078772a568ed599cac5ba20b089e563d"}},".claude/skills/graphify/references/github-and-merge.md":{"size":2177,"mtime_ns":1786870552853101000,"indexed_at_ns":1787726739850713300,"word_count":271,"hashes":{".claude/skills/graphify/references/github-and-merge.md":"609de4b1331ddb2f8c80e97aac0a5de782a373d6f5af858e10a731c20b35c0e2"}},".claude/skills/graphify/references/hooks.md":{"size":1267,"mtime_ns":1786870552855098700,"indexed_at_ns":1787726739852220900,"word_count":193,"hashes":{".claude/skills/graphify/references/hooks.md":"7c7827f2f29d6e2cb6cc6902558dac08380f60c414b4968f83e1bc4e61b3e268"}},".claude/skills/graphify/references/query.md":{"size":13456,"mtime_ns":1786870552857702900,"indexed_at_ns":1787726739853231100,"word_count":1763,"hashes":{".claude/skills/graphify/references/query.md":"54526cc3e2392922d344f14767f09037ef85fb7ec5cc7911b749b35bcb004fbf"}},".claude/skills/graphify/references/transcribe.md":{"size":3173,"mtime_ns":1786870552858710700,"indexed_at_ns":1787726739855230800,"word_count":418,"hashes":{".claude/skills/graphify/references/transcribe.md":"1d5afbaccf36e952e71082591edfc9e4fbd9946eb85b01855a1d0bd810b7623d"}},".claude/skills/graphify/references/update.md":{"size":10425,"mtime_ns":1786870552860709800,"indexed_at_ns":1787726739856230800,"word_count":1196,"hashes":{".claude/skills/graphify/references/update.md":"0249cd6ceae6effdfc7371b51d00c462f51d95700101dcedd36255bab1b4ce7a"}},".gemini/config/mcp_config.json":{"size":156,"mtime_ns":1787656263463286100,"indexed_at_ns":1787726739758249000,"word_count":15,"hashes":{".gemini/config/mcp_config.json":"480d3e3af5f9fad11aae5b7aa4cac5420fc7ebb7bee6807c7fb7072b839490b0"}},".gitea/scripts/with-vpn.sh":{"size":1794,"mtime_ns":1786799852126316200,"indexed_at_ns":1787726739759255200,"word_count":208,"hashes":{".gitea/scripts/with-vpn.sh":"9ec013d142e3cf5d7e5f09778fcb06b4b8ea7b394688f9f40b5e74298c76bcf0"}},".gitea/workflows/deploy.yml":{"size":993,"mtime_ns":1787078454762471500,"indexed_at_ns":1787726728591851200,"word_count":84},".gitea/workflows/e2e.yml":{"size":980,"mtime_ns":1787663719279353200,"indexed_at_ns":1787726728598422000,"word_count":98},".vscode/extensions.json":{"size":74,"mtime_ns":1787461919449307400,"indexed_at_ns":1787726739761255600,"word_count":6,"hashes":{".vscode/extensions.json":"57518c36999b5176c9e8617cf937f6e35b54ddd015305005d4611729d1d69177"}},"AGENTS.md":{"size":226,"mtime_ns":1786870552862708600,"indexed_at_ns":1787726739857230800,"word_count":29,"hashes":{"agents.md":"b664c2bb6d85e009d7495bcd9c3d52c419176473cd4e19362fd4256616076151"}},"BACKEND_INTEGRATION.md":{"size":15568,"mtime_ns":1786885876768825200,"indexed_at_ns":1787726728620874500,"word_count":1521},"CLAUDE.md":{"size":772,"mtime_ns":1786870552863710100,"indexed_at_ns":1787726739858230900,"word_count":106,"hashes":{"claude.md":"3612256e7473a2e5f67ef4778d4edeefb44794ef22bac5529bee9c87dc5d8f3d"}},"DATABASE_SCHEMA.md":{"size":15399,"mtime_ns":1786885876771342200,"indexed_at_ns":1787726728633463600,"word_count":1566},"README.md":{"size":13117,"mtime_ns":1786885876775371800,"indexed_at_ns":1787726728645776100,"word_count":1310},"backend/README.md":{"size":5028,"mtime_ns":1783764561601382400,"indexed_at_ns":1787726739859230700,"word_count":472,"hashes":{"backend/readme.md":"c3edfd26252566ef2ddee12c91a874b59e03a1656894d3db25209a0e4031010a"}},"backend/eslint.config.mjs":{"size":1649,"mtime_ns":1787073059105361700,"indexed_at_ns":1787726728676723300,"word_count":104},"backend/nest-cli.json":{"size":172,"mtime_ns":1787072106370561300,"indexed_at_ns":1787726739762253100,"word_count":13,"hashes":{"backend/nest-cli.json":"64fe2904203985aa0acb9b67d7ade489f2362ac8730283fb11d6a764d1cb3878"}},"backend/package.json":{"size":2903,"mtime_ns":1787644197137104200,"indexed_at_ns":1787726739763253000,"word_count":214,"hashes":{"backend/package.json":"164822617eb449e27d8e6a9ff13476f3b08fb3dcf5710289e85af9bf50ec39d5"}},"backend/prisma/migrations/20260526145407_init/migration.sql":{"size":8963,"mtime_ns":1783764561612007600,"indexed_at_ns":1787726739764254000,"word_count":936,"hashes":{"backend/prisma/migrations/20260526145407_init/migration.sql":"d6cc5e861e43bf82dcffe1ad7121fcbe9f74db7901cf204b5058da3132d3c1d2"}},"backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql":{"size":404,"mtime_ns":1783764561613425800,"indexed_at_ns":1787726739765254200,"word_count":48,"hashes":{"backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql":"c564f4aba35d32a733a5837c33664c68c8912277ad9645310f7e8116fbcba741"}},"backend/prisma/scientificTerms.ts":{"size":24298,"mtime_ns":1785325924634812500,"indexed_at_ns":1787726728717813800,"word_count":2294},"backend/prisma/seed-blogs.ts":{"size":6950,"mtime_ns":1786885876777374000,"indexed_at_ns":1787726728724742400,"word_count":620},"backend/prisma/seed-custom.ts":{"size":3836,"mtime_ns":1786799852144902000,"indexed_at_ns":1787726728731289500,"word_count":371},"backend/prisma/seed-home.ts":{"size":3870,"mtime_ns":1786885876779371100,"indexed_at_ns":1787726728738323600,"word_count":374},"backend/prisma/seed-products-data.json":{"size":59220,"mtime_ns":1786885876782371300,"indexed_at_ns":1787726739767253200,"word_count":5730,"hashes":{"backend/prisma/seed-products-data.json":"9d1262f8264478eb43ec48f073f817d46fc193d666cd9364f3bb95c1629f25c7"}},"backend/prisma/seed-products.ts":{"size":28268,"mtime_ns":1787127978219270600,"indexed_at_ns":1787726728749556400,"word_count":2063},"backend/prisma/seed-ui-texts.ts":{"size":9191,"mtime_ns":1787127978221789800,"indexed_at_ns":1787726728757558800,"word_count":755},"backend/prisma/seed-wiki.ts":{"size":24019,"mtime_ns":1786961195297596000,"indexed_at_ns":1787726728762216000,"word_count":2292},"backend/prisma/seed.ts":{"size":30480,"mtime_ns":1787127978225587600,"indexed_at_ns":1787726728769733300,"word_count":2636},"backend/prisma/tsconfig.json":{"size":194,"mtime_ns":1786961195300236300,"indexed_at_ns":1787726739768256500,"word_count":17,"hashes":{"backend/prisma/tsconfig.json":"0308b15b67bad714ff5f1b6b73f64ae46f98d5190cd6092abb1fb67885d67be1"}},"backend/prisma/tsconfig.seed.json":{"size":194,"mtime_ns":1786955870751259200,"indexed_at_ns":1787726739769256400,"word_count":17,"hashes":{"backend/prisma/tsconfig.seed.json":"e178d23a09563a7a9b348d905bc70322115514c78a7afcc5a53db7d18e511583"}},"backend/scripts/generate-openapi.d.ts":{"size":11,"mtime_ns":1786883225777483700,"indexed_at_ns":1787726728788027700,"word_count":2},"backend/scripts/generate-openapi.js":{"size":2965,"mtime_ns":1786883225779120000,"indexed_at_ns":1787726728794115400,"word_count":309},"backend/scripts/generate-openapi.ts":{"size":1421,"mtime_ns":1787665334153652900,"indexed_at_ns":1787726728805296800,"word_count":132},"backend/scripts/seo-backfill.ts":{"size":4551,"mtime_ns":1787665326978441700,"indexed_at_ns":1787726728810502300,"word_count":464},"backend/src/admin/admin.controller.spec.ts":{"size":593,"mtime_ns":1786799852157399700,"indexed_at_ns":1787726728816339600,"word_count":59},"backend/src/admin/admin.controller.ts":{"size":9712,"mtime_ns":1787564362261174000,"indexed_at_ns":1787726728822736900,"word_count":966},"backend/src/admin/admin.module.ts":{"size":1420,"mtime_ns":1786877667005008400,"indexed_at_ns":1787726728829614400,"word_count":145},"backend/src/admin/admin.service.spec.ts":{"size":903,"mtime_ns":1787726718496019700,"indexed_at_ns":1787726728836653200,"word_count":89},"backend/src/admin/admin.service.ts":{"size":30386,"mtime_ns":1787579631756175500,"indexed_at_ns":1787726728841653400,"word_count":3056},"backend/src/admin/blogs.controller.ts":{"size":5204,"mtime_ns":1787579631758177800,"indexed_at_ns":1787726728849039400,"word_count":532},"backend/src/admin/blogs.service.ts":{"size":9542,"mtime_ns":1787579631760177700,"indexed_at_ns":1787726728855138400,"word_count":1070},"backend/src/admin/categories.controller.ts":{"size":2187,"mtime_ns":1786799852174192500,"indexed_at_ns":1787726728862149600,"word_count":204},"backend/src/admin/categories.service.ts":{"size":2005,"mtime_ns":1786799852175194300,"indexed_at_ns":1787726728869148700,"word_count":223},"backend/src/admin/dto/admin-query.dto.ts":{"size":634,"mtime_ns":1786799852178706400,"indexed_at_ns":1787726728875856900,"word_count":60},"backend/src/admin/dto/product.dto.ts":{"size":6434,"mtime_ns":1787579631762178300,"indexed_at_ns":1787726728882424900,"word_count":521},"backend/src/admin/dto/user.dto.ts":{"size":2839,"mtime_ns":1787072106381989700,"indexed_at_ns":1787726728889404100,"word_count":259},"backend/src/admin/media.controller.ts":{"size":2339,"mtime_ns":1786876983648866300,"indexed_at_ns":1787726728895408700,"word_count":226},"backend/src/admin/media.service.ts":{"size":2713,"mtime_ns":1786876983651534500,"indexed_at_ns":1787726728902532200,"word_count":283},"backend/src/admin/pets.controller.ts":{"size":1195,"mtime_ns":1786799852186217200,"indexed_at_ns":1787726728908565800,"word_count":117},"backend/src/admin/pets.service.ts":{"size":1731,"mtime_ns":1786954681814243000,"indexed_at_ns":1787726728915489100,"word_count":193},"backend/src/admin/reports.controller.ts":{"size":1079,"mtime_ns":1787726718497019000,"indexed_at_ns":1787726728922460200,"word_count":107},"backend/src/admin/reports.service.ts":{"size":6497,"mtime_ns":1787726718497019000,"indexed_at_ns":1787726728927458800,"word_count":729},"backend/src/admin/ssl.controller.ts":{"size":3371,"mtime_ns":1787072106382979000,"indexed_at_ns":1787726728933458100,"word_count":296},"backend/src/admin/ssl.service.ts":{"size":6502,"mtime_ns":1787072106383978900,"indexed_at_ns":1787726728940536700,"word_count":612},"backend/src/admin/wiki.controller.ts":{"size":1814,"mtime_ns":1786799852191732300,"indexed_at_ns":1787726728947315900,"word_count":179},"backend/src/admin/wiki.service.ts":{"size":1767,"mtime_ns":1786799852193324200,"indexed_at_ns":1787726728953886100,"word_count":195},"backend/src/app.controller.spec.ts":{"size":617,"mtime_ns":1783764561644839700,"indexed_at_ns":1787726728959886100,"word_count":61},"backend/src/app.controller.ts":{"size":274,"mtime_ns":1783764561645849100,"indexed_at_ns":1787726728965475600,"word_count":31},"backend/src/app.module.ts":{"size":4052,"mtime_ns":1787579631764695400,"indexed_at_ns":1787726728971183900,"word_count":382},"backend/src/app.service.ts":{"size":142,"mtime_ns":1783764561648840500,"indexed_at_ns":1787726728977275800,"word_count":19},"backend/src/auth/auth.constants.ts":{"size":456,"mtime_ns":1787072106385980100,"indexed_at_ns":1787726728983890000,"word_count":32},"backend/src/auth/auth.controller.spec.ts":{"size":1528,"mtime_ns":1785327951179468000,"indexed_at_ns":1787726728988890000,"word_count":149},"backend/src/auth/auth.controller.ts":{"size":4304,"mtime_ns":1787645037368025500,"indexed_at_ns":1787726728996333500,"word_count":410},"backend/src/auth/auth.module.ts":{"size":724,"mtime_ns":1787072106388501600,"indexed_at_ns":1787726729002365400,"word_count":80},"backend/src/auth/auth.service.spec.ts":{"size":4306,"mtime_ns":1787726718498526800,"indexed_at_ns":1787726729008423400,"word_count":381},"backend/src/auth/auth.service.ts":{"size":9713,"mtime_ns":1787127978228589700,"indexed_at_ns":1787726729014017400,"word_count":933},"backend/src/auth/dto/admin-login.dto.ts":{"size":766,"mtime_ns":1787127978229587400,"indexed_at_ns":1787726729021017300,"word_count":82},"backend/src/auth/dto/login.dto.ts":{"size":587,"mtime_ns":1783764561659109000,"indexed_at_ns":1787726729027109900,"word_count":63},"backend/src/auth/dto/register.dto.ts":{"size":1197,"mtime_ns":1785327951186476900,"indexed_at_ns":1787726729033385300,"word_count":115},"backend/src/auth/dto/send-otp.dto.ts":{"size":374,"mtime_ns":1783764561661106500,"indexed_at_ns":1787726729039417400,"word_count":39},"backend/src/auth/dto/verify-otp.dto.ts":{"size":594,"mtime_ns":1783764561662112100,"indexed_at_ns":1787726729045971800,"word_count":64},"backend/src/auth/jwt-auth.guard.ts":{"size":494,"mtime_ns":1786799852205862700,"indexed_at_ns":1787726729051550300,"word_count":58},"backend/src/auth/jwt.strategy.ts":{"size":1122,"mtime_ns":1786883225794343300,"indexed_at_ns":1787726729058027000,"word_count":116},"backend/src/auth/roles.decorator.ts":{"size":54,"mtime_ns":1786799852208379600,"indexed_at_ns":1787726729064059300,"word_count":4},"backend/src/auth/roles.guard.ts":{"size":46,"mtime_ns":1786799852209003400,"indexed_at_ns":1787726729070031800,"word_count":4},"backend/src/b2b/b2b.controller.ts":{"size":2782,"mtime_ns":1787645037369065300,"indexed_at_ns":1787726729075540200,"word_count":261},"backend/src/b2b/b2b.module.ts":{"size":342,"mtime_ns":1786799852212013200,"indexed_at_ns":1787726729082375900,"word_count":38},"backend/src/b2b/b2b.service.ts":{"size":2379,"mtime_ns":1786799852214009300,"indexed_at_ns":1787726729088349500,"word_count":243},"backend/src/banners/banners.controller.ts":{"size":1923,"mtime_ns":1786799852215010200,"indexed_at_ns":1787726729094382800,"word_count":169},"backend/src/banners/banners.module.ts":{"size":374,"mtime_ns":1786799852216010300,"indexed_at_ns":1787726729099954900,"word_count":38},"backend/src/banners/banners.service.ts":{"size":1394,"mtime_ns":1786799852216010300,"indexed_at_ns":1787726729105481900,"word_count":160},"backend/src/blogs/blogs.controller.ts":{"size":2667,"mtime_ns":1787645037369588600,"indexed_at_ns":1787726729111864500,"word_count":238},"backend/src/blogs/blogs.module.ts":{"size":248,"mtime_ns":1783764561665678100,"indexed_at_ns":1787726729117858700,"word_count":28},"backend/src/blogs/blogs.service.ts":{"size":9915,"mtime_ns":1787644197139946100,"indexed_at_ns":1787726729123858800,"word_count":1093},"backend/src/blogs/dto/create-blog.dto.ts":{"size":30,"mtime_ns":1783764561671557000,"indexed_at_ns":1787726729130858800,"word_count":4},"backend/src/blogs/dto/update-blog.dto.ts":{"size":164,"mtime_ns":1783764561673712400,"indexed_at_ns":1787726729137866600,"word_count":18},"backend/src/blogs/entities/blog.entity.ts":{"size":21,"mtime_ns":1783764561675101100,"indexed_at_ns":1787726729143865200,"word_count":4},"backend/src/cms/cms.controller.ts":{"size":3521,"mtime_ns":1785327951196913100,"indexed_at_ns":1787726729149268700,"word_count":280},"backend/src/cms/cms.module.ts":{"size":342,"mtime_ns":1785148022206298000,"indexed_at_ns":1787726729156414600,"word_count":38},"backend/src/cms/cms.service.ts":{"size":2501,"mtime_ns":1785327951197940400,"indexed_at_ns":1787726729162441900,"word_count":256},"backend/src/cms/dto/cms.dto.ts":{"size":2357,"mtime_ns":1785327951199995500,"indexed_at_ns":1787726729169380900,"word_count":203},"backend/src/common/decorators/roles.decorator.ts":{"size":157,"mtime_ns":1786799852220522400,"indexed_at_ns":1787726729174954700,"word_count":20},"backend/src/common/dto/pagination.dto.ts":{"size":1188,"mtime_ns":1785327951201988900,"indexed_at_ns":1787726729180990600,"word_count":121},"backend/src/common/env.validation.ts":{"size":1162,"mtime_ns":1787645037370646800,"indexed_at_ns":1787726729187990800,"word_count":109},"backend/src/common/filters/http-exception.filter.ts":{"size":4993,"mtime_ns":1787645037371739300,"indexed_at_ns":1787726729194260200,"word_count":500},"backend/src/common/filters/prisma-exception.filter.ts":{"size":2862,"mtime_ns":1787645037372254700,"indexed_at_ns":1787726729201199300,"word_count":280},"backend/src/common/guards/roles.guard.spec.ts":{"size":2426,"mtime_ns":1786799852225556800,"indexed_at_ns":1787726729208239500,"word_count":223},"backend/src/common/guards/roles.guard.ts":{"size":1285,"mtime_ns":1786799852226565200,"indexed_at_ns":1787726729214246900,"word_count":120},"backend/src/common/interceptors/decimal.interceptor.spec.ts":{"size":1677,"mtime_ns":1786799852227565700,"indexed_at_ns":1787726729220254800,"word_count":164},"backend/src/common/interceptors/decimal.interceptor.ts":{"size":1094,"mtime_ns":1786799852227565700,"indexed_at_ns":1787726729226825500,"word_count":118},"backend/src/common/metrics.controller.ts":{"size":2093,"mtime_ns":1786799852229073100,"indexed_at_ns":1787726729232447400,"word_count":206},"backend/src/common/revalidation/revalidation.module.ts":{"size":240,"mtime_ns":1787579631769582300,"indexed_at_ns":1787726729239087900,"word_count":24},"backend/src/common/revalidation/revalidation.service.ts":{"size":3410,"mtime_ns":1787579631770587500,"indexed_at_ns":1787726729246057400,"word_count":272},"backend/src/common/schemas/error-response.schema.ts":{"size":1680,"mtime_ns":1785330913144701500,"indexed_at_ns":1787726729252104800,"word_count":162},"backend/src/common/schemas/paginated-response.schema.ts":{"size":1108,"mtime_ns":1786799852230082200,"indexed_at_ns":1787726729258104400,"word_count":110},"backend/src/common/services/sms.service.ts":{"size":31964,"mtime_ns":1787072106396073600,"indexed_at_ns":1787726729265265900,"word_count":3028},"backend/src/common/sms.module.ts":{"size":204,"mtime_ns":1785330750996125100,"indexed_at_ns":1787726729274176800,"word_count":24},"backend/src/common/utils/phone.utils.ts":{"size":1089,"mtime_ns":1786883225801396000,"indexed_at_ns":1787726729280624000,"word_count":149},"backend/src/contact/contact.controller.ts":{"size":2088,"mtime_ns":1787645037373264000,"indexed_at_ns":1787726729286660600,"word_count":192},"backend/src/contact/contact.module.ts":{"size":365,"mtime_ns":1786799852236599000,"indexed_at_ns":1787726729292806800,"word_count":38},"backend/src/contact/contact.service.ts":{"size":4690,"mtime_ns":1787127978233104000,"indexed_at_ns":1787726729298791600,"word_count":451},"backend/src/doctors/doctors.controller.ts":{"size":1583,"mtime_ns":1787148092311692900,"indexed_at_ns":1787726729304627000,"word_count":148},"backend/src/doctors/doctors.module.ts":{"size":374,"mtime_ns":1786971396035575100,"indexed_at_ns":1787726729310709500,"word_count":38},"backend/src/doctors/doctors.service.ts":{"size":2336,"mtime_ns":1787148092312693100,"indexed_at_ns":1787726729316710800,"word_count":266},"backend/src/doctors/dto/doctor-query.dto.ts":{"size":1009,"mtime_ns":1787148092314699500,"indexed_at_ns":1787726729323711800,"word_count":116},"backend/src/faq/faq.controller.ts":{"size":2210,"mtime_ns":1787148092316694700,"indexed_at_ns":1787726729329710800,"word_count":199},"backend/src/faq/faq.module.ts":{"size":234,"mtime_ns":1787148092316694700,"indexed_at_ns":1787726729335913700,"word_count":28},"backend/src/faq/faq.service.ts":{"size":1541,"mtime_ns":1787148092319911700,"indexed_at_ns":1787726729341879200,"word_count":184},"backend/src/home/dto/create-home.dto.ts":{"size":30,"mtime_ns":1783764561682365300,"indexed_at_ns":1787726729348678200,"word_count":4},"backend/src/home/dto/update-home.dto.ts":{"size":164,"mtime_ns":1783764561682365300,"indexed_at_ns":1787726729354360200,"word_count":18},"backend/src/home/entities/home.entity.ts":{"size":21,"mtime_ns":1783764561684884800,"indexed_at_ns":1787726729360332100,"word_count":4},"backend/src/home/home.controller.ts":{"size":757,"mtime_ns":1785327951212087300,"indexed_at_ns":1787726729365692000,"word_count":69},"backend/src/home/home.module.ts":{"size":241,"mtime_ns":1783764561687108000,"indexed_at_ns":1787726729372815400,"word_count":28},"backend/src/home/home.service.ts":{"size":1372,"mtime_ns":1785327951214087300,"indexed_at_ns":1787726729378370200,"word_count":144},"backend/src/ingredients/ingredients.controller.ts":{"size":1952,"mtime_ns":1786799852237596500,"indexed_at_ns":1787726729384776300,"word_count":165},"backend/src/ingredients/ingredients.module.ts":{"size":406,"mtime_ns":1786799852238596500,"indexed_at_ns":1787726729391513400,"word_count":38},"backend/src/ingredients/ingredients.service.ts":{"size":1526,"mtime_ns":1786799852240108300,"indexed_at_ns":1787726729397517700,"word_count":162},"backend/src/main.ts":{"size":4089,"mtime_ns":1787645037374260500,"indexed_at_ns":1787726729404030400,"word_count":362},"backend/src/menu/menu.controller.ts":{"size":2920,"mtime_ns":1787564348681948800,"indexed_at_ns":1787726729410971900,"word_count":265},"backend/src/menu/menu.module.ts":{"size":267,"mtime_ns":1787148092323869500,"indexed_at_ns":1787726729418641500,"word_count":30},"backend/src/menu/menu.service.ts":{"size":7799,"mtime_ns":1787564362262172600,"indexed_at_ns":1787726729424116700,"word_count":799},"backend/src/orders/dto/create-order.dto.ts":{"size":1899,"mtime_ns":1785327951218626100,"indexed_at_ns":1787726729430534500,"word_count":162},"backend/src/orders/orders.controller.spec.ts":{"size":1910,"mtime_ns":1785327951219627700,"indexed_at_ns":1787726729437590400,"word_count":194},"backend/src/orders/orders.controller.ts":{"size":5930,"mtime_ns":1787072106398077200,"indexed_at_ns":1787726729444156500,"word_count":517},"backend/src/orders/orders.module.ts":{"size":255,"mtime_ns":1783764561697598200,"indexed_at_ns":1787726729449863600,"word_count":28},"backend/src/orders/orders.service.spec.ts":{"size":5121,"mtime_ns":1787726718499536400,"indexed_at_ns":1787726729455899000,"word_count":493},"backend/src/orders/orders.service.ts":{"size":17203,"mtime_ns":1787127978236103400,"indexed_at_ns":1787726729460936600,"word_count":1611},"backend/src/payment/dto/admin-transaction-filter.dto.ts":{"size":2060,"mtime_ns":1787072106401590500,"indexed_at_ns":1787726729467565100,"word_count":191},"backend/src/payment/dto/ebank-checkout.dto.ts":{"size":1378,"mtime_ns":1787394001603461200,"indexed_at_ns":1787726729473467400,"word_count":118},"backend/src/payment/dto/initiate-payment.dto.ts":{"size":775,"mtime_ns":1786870552874246400,"indexed_at_ns":1787726729479997200,"word_count":69},"backend/src/payment/dto/verify-payment.dto.ts":{"size":1421,"mtime_ns":1786894580126857900,"indexed_at_ns":1787726729487007600,"word_count":126},"backend/src/payment/interfaces/payment-gateway.interface.ts":{"size":1330,"mtime_ns":1786870552876751100,"indexed_at_ns":1787726729493007700,"word_count":128},"backend/src/payment/payment.controller.ts":{"size":19167,"mtime_ns":1787564362263176000,"indexed_at_ns":1787726729498694600,"word_count":1574},"backend/src/payment/payment.module.ts":{"size":608,"mtime_ns":1787394001605617900,"indexed_at_ns":1787726729505386600,"word_count":61},"backend/src/payment/payment.service.ts":{"size":30818,"mtime_ns":1787564362264174300,"indexed_at_ns":1787726729511641700,"word_count":2752},"backend/src/payment/zibal-ebank.service.ts":{"size":10087,"mtime_ns":1787461919452306600,"indexed_at_ns":1787726729518640700,"word_count":1006},"backend/src/payment/zibal.service.ts":{"size":25781,"mtime_ns":1787461919453309100,"indexed_at_ns":1787726729525641200,"word_count":2490},"backend/src/pets/dto/create-health-log.dto.ts":{"size":761,"mtime_ns":1785327951229443300,"indexed_at_ns":1787726729532595600,"word_count":69},"backend/src/pets/dto/create-pet.dto.ts":{"size":1143,"mtime_ns":1785327951230948800,"indexed_at_ns":1787726729539689500,"word_count":104},"backend/src/pets/dto/create-reminder.dto.ts":{"size":810,"mtime_ns":1785327951231958200,"indexed_at_ns":1787726729545689700,"word_count":71},"backend/src/pets/dto/update-pet.dto.ts":{"size":160,"mtime_ns":1783764561709557500,"indexed_at_ns":1787726729551201600,"word_count":18},"backend/src/pets/pets.controller.spec.ts":{"size":2544,"mtime_ns":1786799852248118800,"indexed_at_ns":1787726729556953000,"word_count":269},"backend/src/pets/pets.controller.ts":{"size":8427,"mtime_ns":1787461919454308900,"indexed_at_ns":1787726729563595800,"word_count":781},"backend/src/pets/pets.module.ts":{"size":241,"mtime_ns":1783764561714469800,"indexed_at_ns":1787726729570135400,"word_count":28},"backend/src/pets/pets.service.spec.ts":{"size":2961,"mtime_ns":1785327951238208000,"indexed_at_ns":1787726729576202600,"word_count":272},"backend/src/pets/pets.service.ts":{"size":6978,"mtime_ns":1786799852250117400,"indexed_at_ns":1787726729581853500,"word_count":710},"backend/src/prescriptions/prescriptions.controller.ts":{"size":2356,"mtime_ns":1786799852253748300,"indexed_at_ns":1787726729589105100,"word_count":232},"backend/src/prescriptions/prescriptions.module.ts":{"size":495,"mtime_ns":1786954681815809200,"indexed_at_ns":1787726729595362900,"word_count":45},"backend/src/prescriptions/prescriptions.service.ts":{"size":4666,"mtime_ns":1787072106408779000,"indexed_at_ns":1787726729601839800,"word_count":498},"backend/src/prisma/prisma.module.ts":{"size":210,"mtime_ns":1783764561718199800,"indexed_at_ns":1787726729608494400,"word_count":24},"backend/src/prisma/prisma.service.ts":{"size":4250,"mtime_ns":1787640806107781000,"indexed_at_ns":1787726729614499200,"word_count":425},"backend/src/products/dto/get-products.dto.ts":{"size":1320,"mtime_ns":1786799852260271600,"indexed_at_ns":1787726729621151100,"word_count":115},"backend/src/products/products.controller.spec.ts":{"size":1863,"mtime_ns":1785327951243280800,"indexed_at_ns":1787726729629866100,"word_count":166},"backend/src/products/products.controller.ts":{"size":2445,"mtime_ns":1786799852261281700,"indexed_at_ns":1787726729636530800,"word_count":209},"backend/src/products/products.module.ts":{"size":269,"mtime_ns":1783764561723672400,"indexed_at_ns":1787726729642530900,"word_count":28},"backend/src/products/products.service.spec.ts":{"size":1860,"mtime_ns":1787726718500534100,"indexed_at_ns":1787726729648503800,"word_count":175},"backend/src/products/products.service.ts":{"size":7493,"mtime_ns":1787579631773583700,"indexed_at_ns":1787726729653656200,"word_count":762},"backend/src/redis/redis.module.ts":{"size":205,"mtime_ns":1783764561727662100,"indexed_at_ns":1787726729660667100,"word_count":24},"backend/src/redis/redis.service.spec.ts":{"size":1525,"mtime_ns":1783764561728672300,"indexed_at_ns":1787726729667111900,"word_count":145},"backend/src/redis/redis.service.ts":{"size":1202,"mtime_ns":1786895436211834600,"indexed_at_ns":1787726729673119800,"word_count":132},"backend/src/reviews/dto/create-review.dto.ts":{"size":949,"mtime_ns":1787072106414306300,"indexed_at_ns":1787726729680066000,"word_count":92},"backend/src/reviews/dto/update-review.dto.ts":{"size":534,"mtime_ns":1787072106415805700,"indexed_at_ns":1787726729686118000,"word_count":53},"backend/src/reviews/reviews.controller.ts":{"size":3318,"mtime_ns":1787645037375268800,"indexed_at_ns":1787726729692109200,"word_count":329},"backend/src/reviews/reviews.module.ts":{"size":374,"mtime_ns":1786944769517310800,"indexed_at_ns":1787726729699837600,"word_count":38},"backend/src/reviews/reviews.service.ts":{"size":7013,"mtime_ns":1787579631775586600,"indexed_at_ns":1787726729706361600,"word_count":742},"backend/src/seo/seo.controller.ts":{"size":904,"mtime_ns":1785327951247283200,"indexed_at_ns":1787726729713027000,"word_count":85},"backend/src/seo/seo.module.ts":{"size":342,"mtime_ns":1785148022268580900,"indexed_at_ns":1787726729720026400,"word_count":38},"backend/src/seo/seo.service.ts":{"size":2023,"mtime_ns":1787127978249385200,"indexed_at_ns":1787726729726026200,"word_count":182},"backend/src/settings/default-ui-texts.ts":{"size":19291,"mtime_ns":1787564362266172200,"indexed_at_ns":1787726729732056900,"word_count":1538},"backend/src/settings/dto/sms-log-query.dto.ts":{"size":1343,"mtime_ns":1787072106421339300,"indexed_at_ns":1787726729739063400,"word_count":125},"backend/src/settings/settings.controller.spec.ts":{"size":2855,"mtime_ns":1787726718501534000,"indexed_at_ns":1787726729746092700,"word_count":239},"backend/src/settings/settings.controller.ts":{"size":8977,"mtime_ns":1787072106423347900,"indexed_at_ns":1787726729751701000,"word_count":708},"backend/src/settings/settings.module.ts":{"size":382,"mtime_ns":1783764561735515700,"indexed_at_ns":1787726729758697700,"word_count":38},"backend/src/settings/settings.service.spec.ts":{"size":3028,"mtime_ns":1787726718501534000,"indexed_at_ns":1787726729764272100,"word_count":279},"backend/src/settings/settings.service.ts":{"size":20225,"mtime_ns":1787461919455310100,"indexed_at_ns":1787726729769779600,"word_count":1589},"backend/src/smart-advisor/smart-advisor.controller.ts":{"size":1821,"mtime_ns":1786799852275441500,"indexed_at_ns":1787726729775867900,"word_count":152},"backend/src/smart-advisor/smart-advisor.module.ts":{"size":416,"mtime_ns":1786799852276441700,"indexed_at_ns":1787726729782878800,"word_count":38},"backend/src/smart-advisor/smart-advisor.service.ts":{"size":1241,"mtime_ns":1786799852277440400,"indexed_at_ns":1787726729788878100,"word_count":131},"backend/src/testimonials/testimonials.controller.ts":{"size":1905,"mtime_ns":1787148092329786500,"indexed_at_ns":1787726729795446100,"word_count":160},"backend/src/testimonials/testimonials.module.ts":{"size":414,"mtime_ns":1786799852279441800,"indexed_at_ns":1787726729801924900,"word_count":38},"backend/src/testimonials/testimonials.service.ts":{"size":1268,"mtime_ns":1787148092332501600,"indexed_at_ns":1787726729810241500,"word_count":140},"backend/src/tickets/dto/create-ticket.dto.ts":{"size":2374,"mtime_ns":1787072106430874900,"indexed_at_ns":1787726729816278100,"word_count":201},"backend/src/tickets/dto/ticket-query.dto.ts":{"size":1103,"mtime_ns":1787072106431871400,"indexed_at_ns":1787726729824281400,"word_count":106},"backend/src/tickets/tickets.controller.ts":{"size":3114,"mtime_ns":1787072106433878000,"indexed_at_ns":1787726729829734800,"word_count":293},"backend/src/tickets/tickets.module.ts":{"size":374,"mtime_ns":1786890779322296800,"indexed_at_ns":1787726729836741100,"word_count":38},"backend/src/tickets/tickets.service.ts":{"size":7310,"mtime_ns":1787072106434874300,"indexed_at_ns":1787726729844342200,"word_count":781},"backend/src/users/dto/address.dto.ts":{"size":1098,"mtime_ns":1783764561739871500,"indexed_at_ns":1787726729851866000,"word_count":99},"backend/src/users/dto/update-profile.dto.ts":{"size":1068,"mtime_ns":1786885876805472100,"indexed_at_ns":1787726729858986800,"word_count":98},"backend/src/users/users.controller.spec.ts":{"size":3333,"mtime_ns":1785327951253796500,"indexed_at_ns":1787726729865019600,"word_count":322},"backend/src/users/users.controller.ts":{"size":6854,"mtime_ns":1786799852282481500,"indexed_at_ns":1787726729871026300,"word_count":590},"backend/src/users/users.module.ts":{"size":275,"mtime_ns":1783764561748154400,"indexed_at_ns":1787726729878590100,"word_count":30},"backend/src/users/users.service.spec.ts":{"size":3844,"mtime_ns":1787726718502533700,"indexed_at_ns":1787726729883561300,"word_count":320},"backend/src/users/users.service.ts":{"size":8207,"mtime_ns":1787127978253040800,"indexed_at_ns":1787726729889415400,"word_count":782},"backend/src/videos/dto/create-video.dto.ts":{"size":1573,"mtime_ns":1786971396042093900,"indexed_at_ns":1787726729895417800,"word_count":127},"backend/src/videos/dto/get-videos-query.dto.ts":{"size":643,"mtime_ns":1786799852287643500,"indexed_at_ns":1787726729903314300,"word_count":77},"backend/src/videos/videos.controller.ts":{"size":1924,"mtime_ns":1786799852291153100,"indexed_at_ns":1787726729909344900,"word_count":173},"backend/src/videos/videos.module.ts":{"size":283,"mtime_ns":1785148022306583700,"indexed_at_ns":1787726729915346300,"word_count":30},"backend/src/videos/videos.service.ts":{"size":2732,"mtime_ns":1786971396047872400,"indexed_at_ns":1787726729921804200,"word_count":290},"backend/src/wholesale/dto/wholesale-apply.dto.ts":{"size":739,"mtime_ns":1785148022317622300,"indexed_at_ns":1787726729928834600,"word_count":66},"backend/src/wholesale/wholesale.controller.ts":{"size":2037,"mtime_ns":1786799852294177000,"indexed_at_ns":1787726729934839900,"word_count":160},"backend/src/wholesale/wholesale.module.ts":{"size":390,"mtime_ns":1785148022328746300,"indexed_at_ns":1787726729941840900,"word_count":38},"backend/src/wholesale/wholesale.service.ts":{"size":2627,"mtime_ns":1785330913149233300,"indexed_at_ns":1787726729946807300,"word_count":266},"backend/src/wiki/dto/create-wiki.dto.ts":{"size":30,"mtime_ns":1783764561752933200,"indexed_at_ns":1787726729953896900,"word_count":4},"backend/src/wiki/dto/update-wiki.dto.ts":{"size":164,"mtime_ns":1783764561753945200,"indexed_at_ns":1787726729959896600,"word_count":18},"backend/src/wiki/entities/wiki.entity.ts":{"size":21,"mtime_ns":1783764561755039400,"indexed_at_ns":1787726729966410900,"word_count":4},"backend/src/wiki/wiki.controller.ts":{"size":1219,"mtime_ns":1785327951272850400,"indexed_at_ns":1787726729972418600,"word_count":110},"backend/src/wiki/wiki.module.ts":{"size":241,"mtime_ns":1783764561756925000,"indexed_at_ns":1787726729978966700,"word_count":28},"backend/src/wiki/wiki.service.ts":{"size":1562,"mtime_ns":1786799852295173000,"indexed_at_ns":1787726729985599000,"word_count":174},"backend/test/app-audit-verification.e2e-spec.d.ts":{"size":11,"mtime_ns":1787073059109005600,"indexed_at_ns":1787726729992165500,"word_count":2},"backend/test/app-audit-verification.e2e-spec.js":{"size":8429,"mtime_ns":1787073059110516300,"indexed_at_ns":1787726729998303900,"word_count":714},"backend/test/app-audit-verification.e2e-spec.ts":{"size":6464,"mtime_ns":1786799852296174700,"indexed_at_ns":1787726730009127800,"word_count":569},"backend/test/app.e2e-spec.d.ts":{"size":11,"mtime_ns":1787073059112563300,"indexed_at_ns":1787726730014789500,"word_count":2},"backend/test/app.e2e-spec.js":{"size":1228,"mtime_ns":1787073059113572500,"indexed_at_ns":1787726730020887300,"word_count":97},"backend/test/app.e2e-spec.ts":{"size":981,"mtime_ns":1786799852297175000,"indexed_at_ns":1787726730030564200,"word_count":83},"backend/test/jest-e2e.json":{"size":183,"mtime_ns":1783764561762911800,"indexed_at_ns":1787726739771257900,"word_count":17,"hashes":{"backend/test/jest-e2e.json":"94091f560937212ad7027afcb77e62e6ac79e3e4cb401c3a16a56e7be4cac721"}},"backend/tsconfig.build.json":{"size":107,"mtime_ns":1783764561763447000,"indexed_at_ns":1787726739772258300,"word_count":10,"hashes":{"backend/tsconfig.build.json":"1f47c7dc3c8b5a15558654f45f21e0f553acc1680046f09dc24428e8538c4f9d"}},"backend/tsconfig.json":{"size":785,"mtime_ns":1787073059116167600,"indexed_at_ns":1787726739773257700,"word_count":56,"hashes":{"backend/tsconfig.json":"9b20fbca537d1e55f3a113fcee6683f0eb1f06752d3c8c52edf26eef8e2053f2"}},"backend/uploads/1781288429353-508765350.jpg":{"size":110246,"mtime_ns":1783764561766257000,"indexed_at_ns":1787726730057371500,"word_count":3882},"canina.md":{"size":21919,"mtime_ns":1786885876809472400,"indexed_at_ns":1787726730067353200,"word_count":1983},"canina.pdf":{"size":2858373,"mtime_ns":1785148022370811500,"indexed_at_ns":1787726730072352400,"word_count":0},"docker-compose.yml":{"size":2193,"mtime_ns":1786883225811564200,"indexed_at_ns":1787726730078567700,"word_count":127},"docs/01-introduction.md":{"size":5537,"mtime_ns":1786885876812474900,"indexed_at_ns":1787726730085575100,"word_count":523},"docs/02-user-guide.md":{"size":4303,"mtime_ns":1786885876813985900,"indexed_at_ns":1787726730091574900,"word_count":422},"docs/03-developer-guide.md":{"size":6717,"mtime_ns":1783764561771660500,"indexed_at_ns":1787726730099089600,"word_count":678},"docs/04-setup-and-deployment.md":{"size":4005,"mtime_ns":1787127978256847800,"indexed_at_ns":1787726739861230800,"word_count":425,"hashes":{"docs/04-setup-and-deployment.md":"aee712cb19a8475be75f8073f7e39870e704923a561ffb9f4ce4b31b1d4bd830"}},"docs/05-devops-and-monitoring.md":{"size":3590,"mtime_ns":1783764561774446100,"indexed_at_ns":1787726739862230700,"word_count":374,"hashes":{"docs/05-devops-and-monitoring.md":"53f1f45bbbdd3cf81cb4bc082ef4e49f506627f10f581d3c4b835028d02b5421"}},"docs/06-testing.md":{"size":4214,"mtime_ns":1783764561774967500,"indexed_at_ns":1787726739862740900,"word_count":457,"hashes":{"docs/06-testing.md":"69d50bd5e233f030d8076b55b69599cee201e1c393b7ee1beeb495c304fd4bd3"}},"docs/README.md":{"size":2740,"mtime_ns":1786885876816996700,"indexed_at_ns":1787726739864750200,"word_count":253,"hashes":{"docs/readme.md":"1b7ffde4b290e742802fc554f2dd2f7a2316fe25bd1cd328421ffa823b36f40f"}},"docs/audit/00-repository-map.md":{"size":3171,"mtime_ns":1786799852298174200,"indexed_at_ns":1787726739865750000,"word_count":351,"hashes":{"docs/audit/00-repository-map.md":"dde4a63c991d0f469086a147df03b97d8370cd75fa19cc83af1199f267d7bc55"}},"docs/audit/01-system-discovery.md":{"size":3790,"mtime_ns":1786799852299174400,"indexed_at_ns":1787726739866750300,"word_count":467,"hashes":{"docs/audit/01-system-discovery.md":"6c91253cac025506db71adea33a054f88f4c367ba81fc3cb1b85c2bdcfec5c70"}},"docs/audit/02-audit-plan.md":{"size":5058,"mtime_ns":1786799852300175400,"indexed_at_ns":1787726739867750300,"word_count":530,"hashes":{"docs/audit/02-audit-plan.md":"b623d8f8c2b8a14c1ddca1ad956cd8afc9203f7a94eda8e63fd608bc8e9164d1"}},"docs/audit/03-baseline-command-plan.md":{"size":4904,"mtime_ns":1786799852300175400,"indexed_at_ns":1787726739868750300,"word_count":735,"hashes":{"docs/audit/03-baseline-command-plan.md":"fcf49beae52c69d7e9cf85967f028052fa1a78eaae5a2bb9b18072b0273e80e1"}},"docs/audit/04-open-questions.md":{"size":1690,"mtime_ns":1786799852301682100,"indexed_at_ns":1787726739869750100,"word_count":224,"hashes":{"docs/audit/04-open-questions.md":"02fbd51a9131da0b12122a5280cc6f842c299b436a72b117e2263f011b9ebf9c"}},"docs/audit/05-architectural-audit.md":{"size":4884,"mtime_ns":1786799852302689800,"indexed_at_ns":1787726730169702300,"word_count":560},"docs/audit/06-storefront-audit.md":{"size":4191,"mtime_ns":1786799852303691400,"indexed_at_ns":1787726739871758800,"word_count":520,"hashes":{"docs/audit/06-storefront-audit.md":"1e2f2d9d867dc553f503ef91b3bd60310202225da12bc7d324e192f4e15d8c38"}},"docs/audit/07-backend-audit.md":{"size":5037,"mtime_ns":1786799852304689900,"indexed_at_ns":1787726739872758800,"word_count":581,"hashes":{"docs/audit/07-backend-audit.md":"0436a967b82026334bf45c9ca677d1e79ce688681bea4dc06a7fd19e2d5a2129"}},"docs/audit/08-admin-features-audit.md":{"size":4222,"mtime_ns":1786799852305951400,"indexed_at_ns":1787726739873758600,"word_count":479,"hashes":{"docs/audit/08-admin-features-audit.md":"dda5b0bae4f843a51274269dcb91d8b65db2f2917d336d511790da4718b05b8d"}},"docs/audit/09-database-audit.md":{"size":4126,"mtime_ns":1786799852306969500,"indexed_at_ns":1787726739874758900,"word_count":521,"hashes":{"docs/audit/09-database-audit.md":"d4f82b84ae6c1899ab4da1310414d993d9c23dcd2759120fbe551f5b8da95a08"}},"docs/audit/10-security-audit.md":{"size":5560,"mtime_ns":1786799852307952600,"indexed_at_ns":1787726730204465900,"word_count":678},"docs/audit/11-code-quality-audit.md":{"size":3379,"mtime_ns":1786799852308957000,"indexed_at_ns":1787726739875758500,"word_count":419,"hashes":{"docs/audit/11-code-quality-audit.md":"b6b9a4845e0bd5674d897c08f5451f8cab4df22722826f7c9d55ca19b94d88da"}},"docs/audit/12-testing-audit.md":{"size":4106,"mtime_ns":1786799852309952600,"indexed_at_ns":1787726739877758700,"word_count":486,"hashes":{"docs/audit/12-testing-audit.md":"8bdf2058520a88de4d08c0635999de8f79fdab83055ef560ca3a865026b6450a"}},"docs/audit/13-devops-audit.md":{"size":3435,"mtime_ns":1786799852310953800,"indexed_at_ns":1787726739878758700,"word_count":440,"hashes":{"docs/audit/13-devops-audit.md":"d21daac201fcfc3a0e27c27348806f3f5d2790071578dcb98e7869cd6e9ec8a9"}},"docs/audit/14-documentation-audit.md":{"size":3311,"mtime_ns":1786799852311952200,"indexed_at_ns":1787726739879758400,"word_count":379,"hashes":{"docs/audit/14-documentation-audit.md":"e64be175bd632a05e37be823621eb8a8f13bdb74887d10f5f20887d41cef5c62"}},"docs/audit/15-raw-findings-index.json":{"size":9909,"mtime_ns":1786799852313066900,"indexed_at_ns":1787726739774686100,"word_count":817,"hashes":{"docs/audit/15-raw-findings-index.json":"3c1e582431f5f25edd2c38285c9d59f83c83d5348eaf0ced91d6e7c94a9afb6d"}},"docs/audit/16-deep-audit-summary.md":{"size":3111,"mtime_ns":1786799852313066900,"indexed_at_ns":1787726739880758700,"word_count":393,"hashes":{"docs/audit/16-deep-audit-summary.md":"8ea08de6ac54dddd9da6de934bc850bb31ab7e3c5470059d02d7f84dd120a0e4"}},"docs/audit/17-source-coverage-manifest.json":{"size":128714,"mtime_ns":1786799852315065000,"indexed_at_ns":1787726739775692000,"word_count":7827,"hashes":{"docs/audit/17-source-coverage-manifest.json":"834e6c341db760439d2e7a9c17531b03c17151ab0f2f16b92aac8a350bcae51d"}},"docs/audit/18-compiler-diagnostic-dispositions.md":{"size":1961,"mtime_ns":1786799852315065000,"indexed_at_ns":1787726739881758500,"word_count":285,"hashes":{"docs/audit/18-compiler-diagnostic-dispositions.md":"246b9164725e89c67c76f2305cd128f0c0f9bfdba46e45e0e958fe92ccdcda53"}},"docs/audit/19-finding-verification-report.md":{"size":5464,"mtime_ns":1786799852316064800,"indexed_at_ns":1787726739883758400,"word_count":753,"hashes":{"docs/audit/19-finding-verification-report.md":"1cd1bc37f9e76ba7e4d4ef82b8565def786abfeb159bc4d822e364e3f2ea694f"}},"docs/audit/20-verified-findings-index.json":{"size":21797,"mtime_ns":1786799852317071400,"indexed_at_ns":1787726739777692600,"word_count":1903,"hashes":{"docs/audit/20-verified-findings-index.json":"b20d0b140bd727faefde9f29aa4d787199dd386464030eecdf58e5a8ab629442"}},"docs/audit/21-phase2-quality-gate-summary.md":{"size":1706,"mtime_ns":1786799852318066000,"indexed_at_ns":1787726739883758400,"word_count":211,"hashes":{"docs/audit/21-phase2-quality-gate-summary.md":"1b117f866e73cd17c43e3a4e856584f03997a3c897d1de9afbd128ff8a86d09e"}},"docs/audit/22-tracked-first-party-files.txt":{"size":4452,"mtime_ns":1786799852319066000,"indexed_at_ns":1787726730289099900,"word_count":139},"docs/audit/23-untracked-first-party-files.txt":{"size":59,"mtime_ns":1786799852319066000,"indexed_at_ns":1787726730295099800,"word_count":7},"docs/audit/24-omitted-file-inspection-report.md":{"size":2462,"mtime_ns":1786799852320065700,"indexed_at_ns":1787726739885266400,"word_count":227,"hashes":{"docs/audit/24-omitted-file-inspection-report.md":"d4484eea65f1861b9b6a30813d2c233d947c2965a13ed5b399462b80ca9c1513"}},"docs/audit/25-reference-integrity-validation.json":{"size":1002,"mtime_ns":1786799852321571600,"indexed_at_ns":1787726739778692300,"word_count":82,"hashes":{"docs/audit/25-reference-integrity-validation.json":"31b900ed297325cabee3e0804809ecd4229f4427283e449f5d82951bb5ed7fde"}},"docs/audit/26-phase2-integrity-repair-report.md":{"size":3191,"mtime_ns":1786799852322091800,"indexed_at_ns":1787726739887276800,"word_count":385,"hashes":{"docs/audit/26-phase2-integrity-repair-report.md":"2b2f385705db6729fccedc63db0f5709afa23e08a80fc859fe0138b416356cd9"}},"docs/audit/27-all-tracked-repository-files.txt":{"size":4631,"mtime_ns":1786799852323099900,"indexed_at_ns":1787726730320693600,"word_count":148},"docs/audit/28-full-repository-classification.json":{"size":27913,"mtime_ns":1786799852324099500,"indexed_at_ns":1787726739779692400,"word_count":1782,"hashes":{"docs/audit/28-full-repository-classification.json":"bcb50229ceddb267c8839ee69c05f5e5c8c4460485c92849532bcf163c37faa8"}},"docs/audit/29-file-content-evidence.json":{"size":109095,"mtime_ns":1786799852325608100,"indexed_at_ns":1787726739781691000,"word_count":9098,"hashes":{"docs/audit/29-file-content-evidence.json":"c4696525e8ab3c252ff9b6b38d5882225e0a9016698111df28064edbe7bf5124"}},"docs/audit/30-compiler-diagnostics-index.json":{"size":3707,"mtime_ns":1786799852326617100,"indexed_at_ns":1787726739783194500,"word_count":324,"hashes":{"docs/audit/30-compiler-diagnostics-index.json":"85bd1a964e41cc5e615c7260be2beb54b49dd444da40d96ae31e2a33c1c6bc24"}},"docs/audit/31-module-audit-closure.md":{"size":7587,"mtime_ns":1786799852327616800,"indexed_at_ns":1787726739888276700,"word_count":709,"hashes":{"docs/audit/31-module-audit-closure.md":"a1c9d7902131d71cf87a072876cc309ac8dfc7cd6e1f33e9619ac12d99f685ba"}},"docs/audit/32-evidence-grade-validation.json":{"size":1613,"mtime_ns":1786799852328616800,"indexed_at_ns":1787726739784200700,"word_count":123,"hashes":{"docs/audit/32-evidence-grade-validation.json":"12ddcc21ff65a2aa76845935ebc0d8313c39991335356fbe3ae7cdd201251af5"}},"docs/audit/33-final-phase2-audit-closure.md":{"size":2535,"mtime_ns":1786799852328616800,"indexed_at_ns":1787726739889276900,"word_count":271,"hashes":{"docs/audit/33-final-phase2-audit-closure.md":"217cadb664c7f7d27f8f849ea1249dfd88d5398fd2af154fd385c80e4d559bb1"}},"docs/audit/34-repository-observations.json":{"size":594,"mtime_ns":1786799852329618700,"indexed_at_ns":1787726739785199000,"word_count":49,"hashes":{"docs/audit/34-repository-observations.json":"28ce67ed3f5bcc3e5c3c80d73a16a34d8053d570be0af62be8afaffbc9318a27"}},"docs/audit/35-semantic-review-ledger.json":{"size":99353,"mtime_ns":1786799852330616000,"indexed_at_ns":1787726739786706200,"word_count":6011,"hashes":{"docs/audit/35-semantic-review-ledger.json":"ac0529050e87efc9e2b5a6c5b3a2ce6379186b4b07f23d8ec9cebf214ff885ef"}},"docs/audit/36-mandatory-semantic-scope.json":{"size":7960,"mtime_ns":1786799852331617100,"indexed_at_ns":1787726739787707200,"word_count":638,"hashes":{"docs/audit/36-mandatory-semantic-scope.json":"af62db825dd527009b8d79a6edab6ab627fe55303d3f7fd1c2d8e5fab9a8760b"}},"docs/audit/ADR-AUTH-001.md":{"size":3274,"mtime_ns":1786799852332642700,"indexed_at_ns":1787726730388254300,"word_count":398},"docs/audit/CROSS_BOUNDARY_DEPENDENCIES.md":{"size":2146,"mtime_ns":1786799852332642700,"indexed_at_ns":1787726730394794200,"word_count":239},"docs/audit/FRONTEND_INTEGRATION_REQUIREMENTS.md":{"size":15307,"mtime_ns":1787127978258848200,"indexed_at_ns":1787726730402390500,"word_count":1579},"docs/audit/MASTER-TASK-BACKLOG.md":{"size":30107,"mtime_ns":1786799852335470200,"indexed_at_ns":1787726730410947100,"word_count":3510},"docs/audit/audit-state.json":{"size":4135,"mtime_ns":1786799852337382200,"indexed_at_ns":1787726739788704900,"word_count":267,"hashes":{"docs/audit/audit-state.json":"4b804494570a2812170cb8dab35d15da659f57d6e637652328725e956f7d98aa"}},"docs/audit/build_manifest.js":{"size":4060,"mtime_ns":1786799852338393200,"indexed_at_ns":1787726730421985600,"word_count":348},"docs/audit/frontend-route-map.md":{"size":2558,"mtime_ns":1786799852339389800,"indexed_at_ns":1787726730429495100,"word_count":329},"docs/audit/generate_classification.js":{"size":2186,"mtime_ns":1786799852339389800,"indexed_at_ns":1787726730434093300,"word_count":204},"docs/audit/generate_evidence.js":{"size":3098,"mtime_ns":1786799852340390100,"indexed_at_ns":1787726730440532500,"word_count":253},"docs/audit/generate_ledger.js":{"size":7648,"mtime_ns":1786799852341897300,"indexed_at_ns":1787726730446281100,"word_count":620},"docs/audit/generate_manifest.js":{"size":6357,"mtime_ns":1786799852341897300,"indexed_at_ns":1787726730452526800,"word_count":489},"docs/audit/master-task-backlog.json":{"size":22336,"mtime_ns":1786799852342906700,"indexed_at_ns":1787726739790706500,"word_count":2071,"hashes":{"docs/audit/master-task-backlog.json":"f1c994d971b4e58165ab9f74f8b69b97c07fe74005f64dc11badf5e287b5fd28"}},"docs/audit/phase3-execution-plan.md":{"size":6007,"mtime_ns":1786799852343952400,"indexed_at_ns":1787726730466602900,"word_count":736},"docs/audit/phase3-traceability-matrix.md":{"size":5237,"mtime_ns":1786799852344952800,"indexed_at_ns":1787726739890276800,"word_count":692,"hashes":{"docs/audit/phase3-traceability-matrix.md":"c46b1b09c5f6be7f54ba888652e69698b26d955a8e7c8e4fa19cda8729ee2f7b"}},"docs/audit/phase3.1-backlog-review.md":{"size":9737,"mtime_ns":1786799852345952800,"indexed_at_ns":1787726739891276700,"word_count":1202,"hashes":{"docs/audit/phase3.1-backlog-review.md":"021895bb0b90dd75935ebe0317d3198a2c448ccdd6861b1302cc29735f48da82"}},"docs/audit/phase3.1-change-log.md":{"size":3756,"mtime_ns":1786799852346954800,"indexed_at_ns":1787726739893276700,"word_count":451,"hashes":{"docs/audit/phase3.1-change-log.md":"093d244c2788ead47c69e3068ccf66930ba52e04430bdba87020cb4a4edcb817"}},"docs/audit/phase3.2-change-log.md":{"size":8272,"mtime_ns":1786799852347952200,"indexed_at_ns":1787726739894276600,"word_count":930,"hashes":{"docs/audit/phase3.2-change-log.md":"00bff98e2ae2ef50c4daf265d5f34469f21c244b6dca88b70e1f9ffa17a71d83"}},"docs/audit/phase3.2-implementation-readiness.md":{"size":4694,"mtime_ns":1786799852347952200,"indexed_at_ns":1787726739895276700,"word_count":517,"hashes":{"docs/audit/phase3.2-implementation-readiness.md":"9f1e0335fdc0fa2db0fd5ceaa97e50be85d04bc1ad5d3db1ef74e85de97f71a6"}},"docs/audit/rebuild_honest_ledger.js":{"size":6113,"mtime_ns":1786799852348952900,"indexed_at_ns":1787726730506440800,"word_count":559},"docs/audit/sync_honest_manifest.js":{"size":1213,"mtime_ns":1786799852349953100,"indexed_at_ns":1787726730513042200,"word_count":75},"docs/audit/sync_manifest.js":{"size":997,"mtime_ns":1786799852350953300,"indexed_at_ns":1787726730519090300,"word_count":62},"docs/audit/validate_evidence_grade.js":{"size":6141,"mtime_ns":1786799852351954100,"indexed_at_ns":1787726730524859000,"word_count":526},"docs/audit/validate_integrity.js":{"size":3408,"mtime_ns":1786799852352952400,"indexed_at_ns":1787726730530859600,"word_count":284},"docs/backlog.md":{"size":26175,"mtime_ns":1786799852356021600,"indexed_at_ns":1787726730538035500,"word_count":2834},"frontend/admin-panel/README.md":{"size":2425,"mtime_ns":1783764561778952800,"indexed_at_ns":1787726739896276700,"word_count":212,"hashes":{"frontend/admin-panel/readme.md":"3945c052249ebd020b013303d5921815b52d847bd36c748a03bfdc8eb2a390b8"}},"frontend/admin-panel/eslint.config.js":{"size":906,"mtime_ns":1787148092334501700,"indexed_at_ns":1787726730554130000,"word_count":69},"frontend/admin-panel/index.html":{"size":363,"mtime_ns":1783764561780558500,"indexed_at_ns":1787726730559871600,"word_count":28},"frontend/admin-panel/package.json":{"size":1072,"mtime_ns":1785570791953119000,"indexed_at_ns":1787726739792704600,"word_count":84,"hashes":{"frontend/admin-panel/package.json":"6d61fb108392e86320c75b42e69ba7138bdc47bba4883fafbeb6e661cc5f51e4"}},"frontend/admin-panel/postcss.config.js":{"size":91,"mtime_ns":1783764561796281900,"indexed_at_ns":1787726730571159000,"word_count":11},"frontend/admin-panel/public/favicon.svg":{"size":9522,"mtime_ns":1783764561797801500,"indexed_at_ns":1787726730577396200,"word_count":491},"frontend/admin-panel/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856792435855000,"indexed_at_ns":1787726730602607800,"word_count":15},"frontend/admin-panel/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856792445365000,"indexed_at_ns":1787726730626154600,"word_count":15},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856792454604400,"indexed_at_ns":1787726739897276800,"word_count":1077,"hashes":{"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/changelog.md":"4003fe6a71221e735897cfe03ac11bd59ef9951572007763151bf95663256a3d"}},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md":{"size":4136,"mtime_ns":1783856792502503100,"indexed_at_ns":1787726739898786800,"word_count":366,"hashes":{"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/readme.md":"880beb9c92fd527a098de27bc779b6891a36af98ae994f506a64be199ed50392"}},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif":{"size":236102,"mtime_ns":1783856792546496500,"indexed_at_ns":1787726731162750800,"word_count":10881},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856792548005600,"indexed_at_ns":1787726739900396600,"word_count":951,"hashes":{"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/changelog.md":"a735e1b29ad9d3361a0d1ecfd5c1f2f78c200a272918606decc377c469944321"}},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md":{"size":3696,"mtime_ns":1783856792595155200,"indexed_at_ns":1787726739901406500,"word_count":283,"hashes":{"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/readme.md":"3b6e2d78372a72b67e339bfd7331d408f43245840749d2f46df5c356a208fbfd"}},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png":{"size":85019,"mtime_ns":1783856792645667900,"indexed_at_ns":1787726731663450200,"word_count":2615},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856792646666000,"indexed_at_ns":1787726731673001900,"word_count":55},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856792647671700,"indexed_at_ns":1787726739903406700,"word_count":5086,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/changelog.md":"5207a2a148ccfd0338342325a39d9b5b2d39514429c93e0aedf68b21f23fd71e"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/OFL.txt":{"size":4391,"mtime_ns":1783856792648669800,"indexed_at_ns":1787726731688185800,"word_count":671},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856792648669800,"indexed_at_ns":1787726739904406600,"word_count":270,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/readme.md":"0d736c7dd11e89622e7105e6a5958fc3d83ec827b8a00debc0943bc8e3a3d201"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":{"size":211,"mtime_ns":1783856792971535000,"indexed_at_ns":1787726733915800800,"word_count":14},"frontend/admin-panel/public/icons.svg":{"size":5031,"mtime_ns":1783764561799320300,"indexed_at_ns":1787726733920800200,"word_count":382},"frontend/admin-panel/src/App.tsx":{"size":1088,"mtime_ns":1786799852365481100,"indexed_at_ns":1787726733931929300,"word_count":99},"frontend/admin-panel/src/assets/hero.png":{"size":13057,"mtime_ns":1783764561812863000,"indexed_at_ns":1787726733938940400,"word_count":437},"frontend/admin-panel/src/assets/react.svg":{"size":4126,"mtime_ns":1783764561813924700,"indexed_at_ns":1787726733944940500,"word_count":366},"frontend/admin-panel/src/assets/vite.svg":{"size":8709,"mtime_ns":1783764561814995700,"indexed_at_ns":1787726733951568000,"word_count":439},"frontend/admin-panel/src/components/Layout.tsx":{"size":726,"mtime_ns":1784621786958594800,"indexed_at_ns":1787726733957572200,"word_count":69},"frontend/admin-panel/src/components/ProtectedRoute.tsx":{"size":2336,"mtime_ns":1786799852369164100,"indexed_at_ns":1787726733964577700,"word_count":210},"frontend/admin-panel/src/components/RouteErrorBoundary.tsx":{"size":4042,"mtime_ns":1787062174623011100,"indexed_at_ns":1787726733970575200,"word_count":350},"frontend/admin-panel/src/components/Sidebar.tsx":{"size":13111,"mtime_ns":1787461920842084500,"indexed_at_ns":1787726733977661300,"word_count":1198},"frontend/admin-panel/src/components/Topbar.tsx":{"size":19016,"mtime_ns":1787466234964385700,"indexed_at_ns":1787726733983181100,"word_count":1586},"frontend/admin-panel/src/components/TransactionReceiptModal.tsx":{"size":9674,"mtime_ns":1787405554804618300,"indexed_at_ns":1787726733989180000,"word_count":738},"frontend/admin-panel/src/components/ui/Badge.tsx":{"size":1554,"mtime_ns":1787461920844094000,"indexed_at_ns":1787726733997180400,"word_count":158},"frontend/admin-panel/src/components/ui/Button.tsx":{"size":3591,"mtime_ns":1787467799871536000,"indexed_at_ns":1787726734004723300,"word_count":338},"frontend/admin-panel/src/components/ui/ConfirmModal.tsx":{"size":2294,"mtime_ns":1786972191359099700,"indexed_at_ns":1787726734011333000,"word_count":192},"frontend/admin-panel/src/components/ui/FormField.tsx":{"size":1683,"mtime_ns":1786954681823527000,"indexed_at_ns":1787726734018369200,"word_count":148},"frontend/admin-panel/src/components/ui/IconPickerModal.tsx":{"size":4853,"mtime_ns":1787071159959928200,"indexed_at_ns":1787726734024338100,"word_count":397},"frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx":{"size":3351,"mtime_ns":1786954681824534900,"indexed_at_ns":1787726734032842500,"word_count":270},"frontend/admin-panel/src/components/ui/Input.tsx":{"size":1747,"mtime_ns":1786954681825535900,"indexed_at_ns":1787726734038847900,"word_count":147},"frontend/admin-panel/src/components/ui/MaskableField.tsx":{"size":3246,"mtime_ns":1787405554805712000,"indexed_at_ns":1787726734045422000,"word_count":310},"frontend/admin-panel/src/components/ui/MediaSelector.tsx":{"size":21604,"mtime_ns":1787038450536696800,"indexed_at_ns":1787726734051928800,"word_count":1686},"frontend/admin-panel/src/components/ui/Modal.tsx":{"size":3381,"mtime_ns":1787461920845094300,"indexed_at_ns":1787726734060570900,"word_count":324},"frontend/admin-panel/src/components/ui/Pagination.tsx":{"size":5510,"mtime_ns":1786799852387442100,"indexed_at_ns":1787726734066608900,"word_count":447},"frontend/admin-panel/src/components/ui/PriceInput.tsx":{"size":2633,"mtime_ns":1786948119771162400,"indexed_at_ns":1787726734074127900,"word_count":267},"frontend/admin-panel/src/components/ui/RichTextEditor.tsx":{"size":35899,"mtime_ns":1787577523704353400,"indexed_at_ns":1787726734080159100,"word_count":2719},"frontend/admin-panel/src/components/ui/Select.tsx":{"size":1881,"mtime_ns":1786954681828537500,"indexed_at_ns":1787726734087116300,"word_count":160},"frontend/admin-panel/src/components/ui/Skeleton.tsx":{"size":178,"mtime_ns":1783856792977535800,"indexed_at_ns":1787726734092926500,"word_count":22},"frontend/admin-panel/src/components/ui/Spinner.tsx":{"size":650,"mtime_ns":1783856792979049200,"indexed_at_ns":1787726734100568500,"word_count":67},"frontend/admin-panel/src/components/ui/Textarea.tsx":{"size":1287,"mtime_ns":1786954681828537500,"indexed_at_ns":1787726734107173200,"word_count":110},"frontend/admin-panel/src/components/ui/ThSort.tsx":{"size":1478,"mtime_ns":1787461920845094300,"indexed_at_ns":1787726734113136300,"word_count":148},"frontend/admin-panel/src/components/ui/ToggleSwitch.tsx":{"size":1623,"mtime_ns":1786954681830044900,"indexed_at_ns":1787726734120391600,"word_count":143},"frontend/admin-panel/src/main.tsx":{"size":1055,"mtime_ns":1787062325395038600,"indexed_at_ns":1787726734130217700,"word_count":106},"frontend/admin-panel/src/pages/B2BManager.tsx":{"size":24689,"mtime_ns":1787660449612514700,"indexed_at_ns":1787726734137223100,"word_count":1682},"frontend/admin-panel/src/pages/BannersManager.tsx":{"size":19583,"mtime_ns":1787467799874171700,"indexed_at_ns":1787726734145966800,"word_count":1396},"frontend/admin-panel/src/pages/Blogs.tsx":{"size":82294,"mtime_ns":1787726718504533700,"indexed_at_ns":1787726734151997900,"word_count":5654},"frontend/admin-panel/src/pages/CMS.tsx":{"size":10114,"mtime_ns":1787467933664259800,"indexed_at_ns":1787726734157997900,"word_count":791},"frontend/admin-panel/src/pages/Categories.tsx":{"size":16242,"mtime_ns":1787469989141511600,"indexed_at_ns":1787726734164506500,"word_count":1174},"frontend/admin-panel/src/pages/ContactSubmissions.tsx":{"size":12346,"mtime_ns":1787467799877343800,"indexed_at_ns":1787726734172638600,"word_count":842},"frontend/admin-panel/src/pages/Coupons.tsx":{"size":27812,"mtime_ns":1787469989144204800,"indexed_at_ns":1787726734179658200,"word_count":2147},"frontend/admin-panel/src/pages/Dashboard.tsx":{"size":6006,"mtime_ns":1786885876829510000,"indexed_at_ns":1787726734186274700,"word_count":534},"frontend/admin-panel/src/pages/DoctorsManager.tsx":{"size":23282,"mtime_ns":1787467799879923800,"indexed_at_ns":1787726734193275100,"word_count":1666},"frontend/admin-panel/src/pages/FAQManager.tsx":{"size":12625,"mtime_ns":1787467799881924800,"indexed_at_ns":1787726734201784400,"word_count":937},"frontend/admin-panel/src/pages/FinancialSettingsPage.tsx":{"size":13303,"mtime_ns":1787467799882925200,"indexed_at_ns":1787726734207782600,"word_count":928},"frontend/admin-panel/src/pages/IngredientsManager.tsx":{"size":17943,"mtime_ns":1787467933669934500,"indexed_at_ns":1787726734213391200,"word_count":1254},"frontend/admin-panel/src/pages/Login.tsx":{"size":11545,"mtime_ns":1787127978262361000,"indexed_at_ns":1787726734221391500,"word_count":838},"frontend/admin-panel/src/pages/Media.tsx":{"size":29374,"mtime_ns":1787467799885925200,"indexed_at_ns":1787726734227390500,"word_count":2304},"frontend/admin-panel/src/pages/MenuManager.tsx":{"size":19625,"mtime_ns":1787469989146215000,"indexed_at_ns":1787726734240896100,"word_count":1512},"frontend/admin-panel/src/pages/MonitoringPage.tsx":{"size":16455,"mtime_ns":1787466234965980200,"indexed_at_ns":1787726734246489100,"word_count":1289},"frontend/admin-panel/src/pages/Orders.tsx":{"size":55864,"mtime_ns":1787660932418522400,"indexed_at_ns":1787726734252994000,"word_count":4169},"frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx":{"size":37893,"mtime_ns":1787467799889939500,"indexed_at_ns":1787726734259598900,"word_count":2521},"frontend/admin-panel/src/pages/Pets.tsx":{"size":16631,"mtime_ns":1787467799891938300,"indexed_at_ns":1787726734268435300,"word_count":1209},"frontend/admin-panel/src/pages/PrescriptionsManager.tsx":{"size":19424,"mtime_ns":1787467799892935800,"indexed_at_ns":1787726734275434500,"word_count":1419},"frontend/admin-panel/src/pages/Products.tsx":{"size":119422,"mtime_ns":1787640978245565100,"indexed_at_ns":1787726734281548900,"word_count":7835},"frontend/admin-panel/src/pages/Reports.tsx":{"size":24050,"mtime_ns":1787726718505537600,"indexed_at_ns":1787726734288737200,"word_count":1832},"frontend/admin-panel/src/pages/Reviews.tsx":{"size":20769,"mtime_ns":1787467799897934900,"indexed_at_ns":1787726734294738100,"word_count":1479},"frontend/admin-panel/src/pages/SeoSettingsPage.tsx":{"size":15089,"mtime_ns":1787467799899934200,"indexed_at_ns":1787726734302505600,"word_count":1137},"frontend/admin-panel/src/pages/Settings.tsx":{"size":24256,"mtime_ns":1787468615457819400,"indexed_at_ns":1787726734308156100,"word_count":1701},"frontend/admin-panel/src/pages/ShippingSettingsPage.tsx":{"size":7615,"mtime_ns":1787467799901935300,"indexed_at_ns":1787726734314725100,"word_count":585},"frontend/admin-panel/src/pages/SmartAdvisorManager.tsx":{"size":13745,"mtime_ns":1787467799902933600,"indexed_at_ns":1787726734320253400,"word_count":1014},"frontend/admin-panel/src/pages/SmsSettingsPage.tsx":{"size":78907,"mtime_ns":1787467799904439000,"indexed_at_ns":1787726734327410400,"word_count":5444},"frontend/admin-panel/src/pages/SslSettingsPage.tsx":{"size":25502,"mtime_ns":1787467799905446700,"indexed_at_ns":1787726734336379700,"word_count":1847},"frontend/admin-panel/src/pages/SystemSettingsPage.tsx":{"size":16821,"mtime_ns":1787467799907448000,"indexed_at_ns":1787726734343379300,"word_count":1133},"frontend/admin-panel/src/pages/TestimonialsManager.tsx":{"size":18547,"mtime_ns":1787467799908955400,"indexed_at_ns":1787726734348881900,"word_count":1297},"frontend/admin-panel/src/pages/Tickets.tsx":{"size":20254,"mtime_ns":1787467799909962900,"indexed_at_ns":1787726734355478000,"word_count":1455},"frontend/admin-panel/src/pages/Transactions.tsx":{"size":45136,"mtime_ns":1787471434872188300,"indexed_at_ns":1787726734362406800,"word_count":3213},"frontend/admin-panel/src/pages/UITexts.tsx":{"size":70758,"mtime_ns":1787564362267171200,"indexed_at_ns":1787726734368359700,"word_count":5750},"frontend/admin-panel/src/pages/Users.tsx":{"size":39503,"mtime_ns":1787661363262635500,"indexed_at_ns":1787726734375869000,"word_count":2663},"frontend/admin-panel/src/pages/Videos.tsx":{"size":22648,"mtime_ns":1787467799914548300,"indexed_at_ns":1787726734383949000,"word_count":1604},"frontend/admin-panel/src/pages/WholesaleApplications.tsx":{"size":6713,"mtime_ns":1787467799916852500,"indexed_at_ns":1787726734390128300,"word_count":505},"frontend/admin-panel/src/pages/Wiki.tsx":{"size":15651,"mtime_ns":1787469989158212800,"indexed_at_ns":1787726734396025400,"word_count":1221},"frontend/admin-panel/src/pages/ZibalPortalPage.tsx":{"size":55699,"mtime_ns":1787570438155805200,"indexed_at_ns":1787726734402122900,"word_count":3753},"frontend/admin-panel/src/routes/adminRoutes.tsx":{"size":6245,"mtime_ns":1787461920854097100,"indexed_at_ns":1787726734408451000,"word_count":603},"frontend/admin-panel/src/services/api.ts":{"size":5190,"mtime_ns":1786896758433963000,"indexed_at_ns":1787726734415809200,"word_count":479},"frontend/admin-panel/src/store/adminAuthStore.ts":{"size":666,"mtime_ns":1786799852469037000,"indexed_at_ns":1787726734421659400,"word_count":65},"frontend/admin-panel/src/types/admin.ts":{"size":4146,"mtime_ns":1787139270957407700,"indexed_at_ns":1787726734427790900,"word_count":454},"frontend/admin-panel/src/utils/lazyWithRetry.ts":{"size":1129,"mtime_ns":1787062174626227900,"indexed_at_ns":1787726734435357300,"word_count":114},"frontend/admin-panel/src/utils/useTableParams.ts":{"size":4060,"mtime_ns":1787461920855096000,"indexed_at_ns":1787726734441273300,"word_count":441},"frontend/admin-panel/tailwind.config.js":{"size":182,"mtime_ns":1783764561861721300,"indexed_at_ns":1787726734447096600,"word_count":20},"frontend/admin-panel/tsconfig.app.json":{"size":633,"mtime_ns":1787055476779566300,"indexed_at_ns":1787726739794704700,"word_count":48,"hashes":{"frontend/admin-panel/tsconfig.app.json":"2d9838ee1119342fd03bf7644781b8b6aced2cbdc908ff186cdd6ab7ab9ba1c4"}},"frontend/admin-panel/tsconfig.json":{"size":119,"mtime_ns":1783764561863393600,"indexed_at_ns":1787726739795705100,"word_count":15,"hashes":{"frontend/admin-panel/tsconfig.json":"7a6c2e21b6eaa2355b4e2ed29db2a767499a88498bde745cdccf3ba8c7f64f2b"}},"frontend/admin-panel/tsconfig.node.json":{"size":591,"mtime_ns":1783764561863923100,"indexed_at_ns":1787726739796704600,"word_count":44,"hashes":{"frontend/admin-panel/tsconfig.node.json":"035a8143cff9651dbb67885756a07cc3f8ed1c5dcbf04a6e2042600b7989d525"}},"frontend/admin-panel/vite.config.ts":{"size":161,"mtime_ns":1783764561864454900,"indexed_at_ns":1787726734467280600,"word_count":18},"frontend/application/AGENTS.md":{"size":717,"mtime_ns":1787127978268943700,"indexed_at_ns":1787726734477280500,"word_count":88},"frontend/application/CLAUDE.md":{"size":11,"mtime_ns":1783764561866744500,"indexed_at_ns":1787726739905406700,"word_count":1,"hashes":{"frontend/application/claude.md":"0776fbbe8c29c6dc861efa70683090a370ab56dc77c22cb9de74895b4c783320"}},"frontend/application/README.md":{"size":1450,"mtime_ns":1783764561867354300,"indexed_at_ns":1787726739906406500,"word_count":155,"hashes":{"frontend/application/readme.md":"dd829cdf325092d859080ac1db3cbf2cca3198e72834f0f228495ef3c49a2240"}},"frontend/application/app/ClientLayout.tsx":{"size":7677,"mtime_ns":1787726718506132700,"indexed_at_ns":1787726734494425900,"word_count":698},"frontend/application/app/HomeClient.tsx":{"size":13267,"mtime_ns":1787148092347461500,"indexed_at_ns":1787726734499606500,"word_count":851},"frontend/application/app/about/page.tsx":{"size":5706,"mtime_ns":1787139270959412500,"indexed_at_ns":1787726734506477700,"word_count":474},"frontend/application/app/api/revalidate/route.ts":{"size":1889,"mtime_ns":1787579631780106700,"indexed_at_ns":1787726734514149300,"word_count":220},"frontend/application/app/b2b/error.tsx":{"size":380,"mtime_ns":1787645037377262000,"indexed_at_ns":1787726734520148500,"word_count":50},"frontend/application/app/b2b/page.tsx":{"size":1506,"mtime_ns":1787644197141618200,"indexed_at_ns":1787726734526117900,"word_count":135},"frontend/application/app/blog/[slug]/page.tsx":{"size":8201,"mtime_ns":1787641161057694000,"indexed_at_ns":1787726734533148700,"word_count":767},"frontend/application/app/blog/error.tsx":{"size":382,"mtime_ns":1787645037378268200,"indexed_at_ns":1787726734540186900,"word_count":50},"frontend/application/app/blog/loading.tsx":{"size":1293,"mtime_ns":1787645037379262800,"indexed_at_ns":1787726734546152600,"word_count":115},"frontend/application/app/blog/page.tsx":{"size":3318,"mtime_ns":1787581191870074600,"indexed_at_ns":1787726734552322400,"word_count":340},"frontend/application/app/blog/rss.xml/route.ts":{"size":3076,"mtime_ns":1787577523710351300,"indexed_at_ns":1787726734558947600,"word_count":280},"frontend/application/app/catalog/CatalogClient.tsx":{"size":1389,"mtime_ns":1786872121566485100,"indexed_at_ns":1787726734564982500,"word_count":129},"frontend/application/app/catalog/page.tsx":{"size":671,"mtime_ns":1787139270965525300,"indexed_at_ns":1787726734570982600,"word_count":66},"frontend/application/app/checkout/page.tsx":{"size":604,"mtime_ns":1787139270967535500,"indexed_at_ns":1787726734576551900,"word_count":60},"frontend/application/app/checkout/success/[id]/page.tsx":{"size":231,"mtime_ns":1783764561878668300,"indexed_at_ns":1787726734582122000,"word_count":31},"frontend/application/app/contact/page.tsx":{"size":2655,"mtime_ns":1787644197143198500,"indexed_at_ns":1787726734588729900,"word_count":214},"frontend/application/app/dashboard/page.tsx":{"size":903,"mtime_ns":1787394935318217400,"indexed_at_ns":1787726734595730700,"word_count":83},"frontend/application/app/error.tsx":{"size":383,"mtime_ns":1785148022478709000,"indexed_at_ns":1787726734601792600,"word_count":50},"frontend/application/app/layout.tsx":{"size":4776,"mtime_ns":1787644197144196600,"indexed_at_ns":1787726734617397100,"word_count":400},"frontend/application/app/loading.tsx":{"size":1373,"mtime_ns":1785148022487650000,"indexed_at_ns":1787726734623432900,"word_count":122},"frontend/application/app/not-found.tsx":{"size":124,"mtime_ns":1783764561891411400,"indexed_at_ns":1787726734629416600,"word_count":15},"frontend/application/app/page.tsx":{"size":1003,"mtime_ns":1787139270974959500,"indexed_at_ns":1787726734635909300,"word_count":114},"frontend/application/app/payment/verify/page.tsx":{"size":14338,"mtime_ns":1786891855356078600,"indexed_at_ns":1787726734641507800,"word_count":1094},"frontend/application/app/privacy/page.tsx":{"size":4098,"mtime_ns":1787139270976563700,"indexed_at_ns":1787726734648804500,"word_count":336},"frontend/application/app/profile/page.tsx":{"size":623,"mtime_ns":1787139270978803200,"indexed_at_ns":1787726734655771200,"word_count":63},"frontend/application/app/robots.ts":{"size":825,"mtime_ns":1787578481501464000,"indexed_at_ns":1787726734660416500,"word_count":72},"frontend/application/app/search/page.tsx":{"size":786,"mtime_ns":1787139270979946700,"indexed_at_ns":1787726734667451100,"word_count":82},"frontend/application/app/shop/[slug]/page.tsx":{"size":8722,"mtime_ns":1787579631787104400,"indexed_at_ns":1787726734672932300,"word_count":786},"frontend/application/app/shop/error.tsx":{"size":382,"mtime_ns":1787645037380267900,"indexed_at_ns":1787726734679433600,"word_count":50},"frontend/application/app/shop/feed.xml/route.ts":{"size":3391,"mtime_ns":1787578481506463600,"indexed_at_ns":1787726734685442300,"word_count":301},"frontend/application/app/shop/loading.tsx":{"size":1596,"mtime_ns":1787645037380267900,"indexed_at_ns":1787726734691441600,"word_count":144},"frontend/application/app/shop/page.tsx":{"size":2715,"mtime_ns":1787644197146199100,"indexed_at_ns":1787726734698441300,"word_count":295},"frontend/application/app/sitemap-categories.xml/route.ts":{"size":1797,"mtime_ns":1787578481507462100,"indexed_at_ns":1787726734703951500,"word_count":179},"frontend/application/app/sitemap-products.xml/route.ts":{"size":1980,"mtime_ns":1787578481508464300,"indexed_at_ns":1787726734710719000,"word_count":186},"frontend/application/app/sitemap.ts":{"size":3510,"mtime_ns":1787578481510463300,"indexed_at_ns":1787726734715717900,"word_count":350},"frontend/application/app/track/page.tsx":{"size":612,"mtime_ns":1787139270984213600,"indexed_at_ns":1787726734723190300,"word_count":60},"frontend/application/app/trust-seals/page.tsx":{"size":7155,"mtime_ns":1787394001609306700,"indexed_at_ns":1787726734729188900,"word_count":566},"frontend/application/app/videos/page.tsx":{"size":2822,"mtime_ns":1787644197147196700,"indexed_at_ns":1787726734735191600,"word_count":266},"frontend/application/app/wiki/[slug]/page.tsx":{"size":8912,"mtime_ns":1787644197149197300,"indexed_at_ns":1787726734743193100,"word_count":702},"frontend/application/app/wiki/page.tsx":{"size":910,"mtime_ns":1787139270987830800,"indexed_at_ns":1787726734749703000,"word_count":85},"frontend/application/components/AddressModal.tsx":{"size":16148,"mtime_ns":1786799852571178400,"indexed_at_ns":1787726734756265200,"word_count":1109},"frontend/application/components/ArchivePage.tsx":{"size":40901,"mtime_ns":1787726718508139800,"indexed_at_ns":1787726734763269600,"word_count":3218},"frontend/application/components/AuthModal.tsx":{"size":45254,"mtime_ns":1787726718509142900,"indexed_at_ns":1787726734768269700,"word_count":2996},"frontend/application/components/B2BLandingClient.tsx":{"size":25866,"mtime_ns":1787645037381267600,"indexed_at_ns":1787726734774269600,"word_count":1824},"frontend/application/components/B2BPortal.tsx":{"size":14014,"mtime_ns":1786894580156857600,"indexed_at_ns":1787726734780287600,"word_count":1094},"frontend/application/components/BackButton.tsx":{"size":1120,"mtime_ns":1786965281357277800,"indexed_at_ns":1787726734786847300,"word_count":117},"frontend/application/components/BannerPlacement.tsx":{"size":7703,"mtime_ns":1787564348689902000,"indexed_at_ns":1787726734793846300,"word_count":527},"frontend/application/components/BlogPage.tsx":{"size":21976,"mtime_ns":1787726718510142200,"indexed_at_ns":1787726734800046600,"word_count":1583},"frontend/application/components/BlogPostClient.tsx":{"size":18802,"mtime_ns":1787641161059331400,"indexed_at_ns":1787726734805497100,"word_count":1239},"frontend/application/components/BlogPreviewSection.tsx":{"size":7535,"mtime_ns":1787640735445200900,"indexed_at_ns":1787726734812776300,"word_count":544},"frontend/application/components/BrandLogo.tsx":{"size":3307,"mtime_ns":1787564348690862200,"indexed_at_ns":1787726734819682600,"word_count":287},"frontend/application/components/CartDrawer.tsx":{"size":21456,"mtime_ns":1787660622484709100,"indexed_at_ns":1787726734825682100,"word_count":1410},"frontend/application/components/CheckoutPage.tsx":{"size":40480,"mtime_ns":1787657845522979100,"indexed_at_ns":1787726734832681700,"word_count":2746},"frontend/application/components/ContactFormClient.tsx":{"size":10833,"mtime_ns":1787666597409244500,"indexed_at_ns":1787726734838776800,"word_count":784},"frontend/application/components/DeleteConfirmModal.tsx":{"size":2328,"mtime_ns":1786799852608752300,"indexed_at_ns":1787726734845321800,"word_count":195},"frontend/application/components/EnamadBadge.tsx":{"size":1516,"mtime_ns":1786799852612361900,"indexed_at_ns":1787726734850835400,"word_count":114},"frontend/application/components/ErrorBoundary.tsx":{"size":2617,"mtime_ns":1786799852614549600,"indexed_at_ns":1787726734857066500,"word_count":235},"frontend/application/components/ErrorPages.tsx":{"size":2809,"mtime_ns":1787661485945074600,"indexed_at_ns":1787726734862654700,"word_count":243},"frontend/application/components/FAQSection.tsx":{"size":4790,"mtime_ns":1787148092351047600,"indexed_at_ns":1787726734868659500,"word_count":394},"frontend/application/components/FeaturedProducts.tsx":{"size":10701,"mtime_ns":1787726718510142200,"indexed_at_ns":1787726734875659400,"word_count":919},"frontend/application/components/Footer.tsx":{"size":13707,"mtime_ns":1787644197154198800,"indexed_at_ns":1787726734881167600,"word_count":903},"frontend/application/components/Header.tsx":{"size":37307,"mtime_ns":1787726718512139900,"indexed_at_ns":1787726734887172400,"word_count":2603},"frontend/application/components/HeaderButton.tsx":{"size":2242,"mtime_ns":1786799852637156100,"indexed_at_ns":1787726734893172700,"word_count":208},"frontend/application/components/Hero.tsx":{"size":19216,"mtime_ns":1787577523539588200,"indexed_at_ns":1787726734899680700,"word_count":1616},"frontend/application/components/IngredientWiki.tsx":{"size":20337,"mtime_ns":1786965281374206800,"indexed_at_ns":1787726734906680500,"word_count":1496},"frontend/application/components/LoginModal.tsx":{"size":13846,"mtime_ns":1786885876932267500,"indexed_at_ns":1787726734914249200,"word_count":1121},"frontend/application/components/MaintenancePage.tsx":{"size":3686,"mtime_ns":1786946249984693000,"indexed_at_ns":1787726734921249900,"word_count":313},"frontend/application/components/NetworkBanner.tsx":{"size":2350,"mtime_ns":1786799852662138900,"indexed_at_ns":1787726734928082300,"word_count":214},"frontend/application/components/OrderDetailsModal.tsx":{"size":36149,"mtime_ns":1787564348694929900,"indexed_at_ns":1787726734935086200,"word_count":2477},"frontend/application/components/OrderSuccess.tsx":{"size":6396,"mtime_ns":1786799852665542300,"indexed_at_ns":1787726734947087000,"word_count":521},"frontend/application/components/OrderTracking.tsx":{"size":9269,"mtime_ns":1787657266639234000,"indexed_at_ns":1787726734953129500,"word_count":681},"frontend/application/components/PetProfile.tsx":{"size":83314,"mtime_ns":1787564348695930500,"indexed_at_ns":1787726734959758100,"word_count":5882},"frontend/application/components/PodcastInlinePlayer.tsx":{"size":17030,"mtime_ns":1787579631796809000,"indexed_at_ns":1787726734967757900,"word_count":1382},"frontend/application/components/PodcastPlayerModal.tsx":{"size":18090,"mtime_ns":1787564348697931500,"indexed_at_ns":1787726734976259700,"word_count":1485},"frontend/application/components/PrescriptionUploadModal.tsx":{"size":18907,"mtime_ns":1786965281385656300,"indexed_at_ns":1787726734983772300,"word_count":1331},"frontend/application/components/ProductPage.tsx":{"size":70197,"mtime_ns":1787662060805688600,"indexed_at_ns":1787726734991411700,"word_count":4990},"frontend/application/components/ProductReviews.tsx":{"size":16108,"mtime_ns":1787048863691774800,"indexed_at_ns":1787726734999417900,"word_count":1194},"frontend/application/components/SafeImage.tsx":{"size":3431,"mtime_ns":1787579631801836700,"indexed_at_ns":1787726735006020500,"word_count":318},"frontend/application/components/SearchResultsPage.tsx":{"size":8335,"mtime_ns":1786799852701578200,"indexed_at_ns":1787726735012019400,"word_count":594},"frontend/application/components/SearchableSelect.tsx":{"size":4375,"mtime_ns":1785575516155554800,"indexed_at_ns":1787726735019020000,"word_count":336},"frontend/application/components/Skeleton.tsx":{"size":3084,"mtime_ns":1783764561943996900,"indexed_at_ns":1787726735026024900,"word_count":291},"frontend/application/components/SmartAdvisor.tsx":{"size":36808,"mtime_ns":1787726718513139700,"indexed_at_ns":1787726735032024800,"word_count":2811},"frontend/application/components/TestimonialsSection.tsx":{"size":6473,"mtime_ns":1787148092353045800,"indexed_at_ns":1787726735038649700,"word_count":494},"frontend/application/components/TickerBanner.tsx":{"size":1605,"mtime_ns":1786885876960835800,"indexed_at_ns":1787726735043649000,"word_count":140},"frontend/application/components/Tooltip.tsx":{"size":2771,"mtime_ns":1786885876964103200,"indexed_at_ns":1787726735050158300,"word_count":227},"frontend/application/components/TopUpModal.tsx":{"size":9381,"mtime_ns":1787406597303349300,"indexed_at_ns":1787726735057286900,"word_count":741},"frontend/application/components/UserDashboard.tsx":{"size":92697,"mtime_ns":1787394935320317600,"indexed_at_ns":1787726735063292200,"word_count":5939},"frontend/application/components/VetGallery.tsx":{"size":8292,"mtime_ns":1787074301692915100,"indexed_at_ns":1787726735071297200,"word_count":643},"frontend/application/components/VideoModalPlayer.tsx":{"size":24486,"mtime_ns":1787726718514140200,"indexed_at_ns":1787726735078297400,"word_count":1842},"frontend/application/components/VideosPage.tsx":{"size":8815,"mtime_ns":1787726718515142400,"indexed_at_ns":1787726735083812700,"word_count":672},"frontend/application/components/__tests__/CartDrawer.test.tsx":{"size":3197,"mtime_ns":1786799852761825800,"indexed_at_ns":1787726735089813300,"word_count":285},"frontend/application/components/__tests__/FeaturedProducts.test.tsx":{"size":2922,"mtime_ns":1787726718516142100,"indexed_at_ns":1787726735098319700,"word_count":246},"frontend/application/components/__tests__/Footer.test.tsx":{"size":1200,"mtime_ns":1787726718516142100,"indexed_at_ns":1787726735104325800,"word_count":97},"frontend/application/components/__tests__/Header.test.tsx":{"size":3336,"mtime_ns":1787726718517142800,"indexed_at_ns":1787726735110326400,"word_count":266},"frontend/application/components/__tests__/Hero.test.tsx":{"size":1980,"mtime_ns":1786799852776010800,"indexed_at_ns":1787726735115917200,"word_count":192},"frontend/application/components/__tests__/Tooltip.test.tsx":{"size":1508,"mtime_ns":1786799852784348900,"indexed_at_ns":1787726735121917300,"word_count":137},"frontend/application/components/catalog/CatalogPageSpread.tsx":{"size":24099,"mtime_ns":1786885876979161800,"indexed_at_ns":1787726735128917400,"word_count":1912},"frontend/application/components/catalog/FlipbookCatalog.tsx":{"size":32968,"mtime_ns":1786885876982161900,"indexed_at_ns":1787726735135921200,"word_count":2807},"frontend/application/components/catalog/ProductDetailModal.tsx":{"size":7763,"mtime_ns":1786872121572482100,"indexed_at_ns":1787726735143987500,"word_count":557},"frontend/application/eslint.config.mjs":{"size":747,"mtime_ns":1787148092358055900,"indexed_at_ns":1787726735150541200,"word_count":61},"frontend/application/lib/data/products.ts":{"size":104224,"mtime_ns":1787578481513988500,"indexed_at_ns":1787726735158143700,"word_count":9748},"frontend/application/lib/data/provinces.ts":{"size":2993,"mtime_ns":1785571725610676000,"indexed_at_ns":1787726735166169300,"word_count":203},"frontend/application/lib/data/scientificTerms.ts":{"size":18042,"mtime_ns":1786958978743097300,"indexed_at_ns":1787726735173169300,"word_count":1756},"frontend/application/lib/fonts.ts":{"size":683,"mtime_ns":1787579631802834900,"indexed_at_ns":1787726735179751500,"word_count":59},"frontend/application/lib/hooks/useNetworkStatus.ts":{"size":610,"mtime_ns":1786799852793488000,"indexed_at_ns":1787726735185762100,"word_count":59},"frontend/application/lib/schema.ts":{"size":7336,"mtime_ns":1787644197156205400,"indexed_at_ns":1787726735192345800,"word_count":609},"frontend/application/lib/seo.ts":{"size":8046,"mtime_ns":1787139270988834800,"indexed_at_ns":1787726735198345500,"word_count":737},"frontend/application/lib/services/api.ts":{"size":3694,"mtime_ns":1786954681844297300,"indexed_at_ns":1787726735203856100,"word_count":391},"frontend/application/lib/services/authService.ts":{"size":4524,"mtime_ns":1786885876986184800,"indexed_at_ns":1787726735211416700,"word_count":509},"frontend/application/lib/services/orderService.ts":{"size":2428,"mtime_ns":1786799852810726500,"indexed_at_ns":1787726735217187400,"word_count":279},"frontend/application/lib/services/productService.ts":{"size":15840,"mtime_ns":1787579631803836100,"indexed_at_ns":1787726735223578000,"word_count":1409},"frontend/application/lib/services/ticketService.ts":{"size":1569,"mtime_ns":1786890779340901800,"indexed_at_ns":1787726735230632600,"word_count":170},"frontend/application/lib/services/videoService.ts":{"size":1234,"mtime_ns":1786967385871970500,"indexed_at_ns":1787726735237739200,"word_count":144},"frontend/application/lib/store/__tests__/cartStore.test.ts":{"size":4430,"mtime_ns":1786799852822036900,"indexed_at_ns":1787726735244738400,"word_count":386},"frontend/application/lib/store/__tests__/settingsStore.test.ts":{"size":1949,"mtime_ns":1783856793043803200,"indexed_at_ns":1787726735251871200,"word_count":194},"frontend/application/lib/store/__tests__/userStore.test.ts":{"size":3639,"mtime_ns":1786799852825547700,"indexed_at_ns":1787726735257815200,"word_count":289},"frontend/application/lib/store/cartStore.ts":{"size":6972,"mtime_ns":1787660831220289700,"indexed_at_ns":1787726735265091600,"word_count":697},"frontend/application/lib/store/settingsStore.ts":{"size":3630,"mtime_ns":1786948119787096800,"indexed_at_ns":1787726735271091300,"word_count":371},"frontend/application/lib/store/uiStore.ts":{"size":872,"mtime_ns":1786799852833588000,"indexed_at_ns":1787726735277092600,"word_count":100},"frontend/application/lib/store/usePetStore.ts":{"size":8680,"mtime_ns":1786954681845300600,"indexed_at_ns":1787726735283172200,"word_count":850},"frontend/application/lib/store/userStore.ts":{"size":10320,"mtime_ns":1787726718518139100,"indexed_at_ns":1787726735290016500,"word_count":894},"frontend/application/lib/types.ts":{"size":2194,"mtime_ns":1786799852840111800,"indexed_at_ns":1787726735295016600,"word_count":237},"frontend/application/lib/utils.ts":{"size":478,"mtime_ns":1786799852847284000,"indexed_at_ns":1787726735301154500,"word_count":61},"frontend/application/next.config.ts":{"size":2274,"mtime_ns":1787579631805387200,"indexed_at_ns":1787726735310154400,"word_count":208},"frontend/application/package.json":{"size":844,"mtime_ns":1787640978247182300,"indexed_at_ns":1787726739799715600,"word_count":72,"hashes":{"frontend/application/package.json":"6f60e7e1648827d0553bb5db6faa06d1a77f6809f0a6370f9b9517c91dd19db7"}},"frontend/application/postcss.config.mjs":{"size":94,"mtime_ns":1783764561988252100,"indexed_at_ns":1787726735322173300,"word_count":13},"frontend/application/public/assets/images/canina-product-placeholder.png":{"size":6990105,"mtime_ns":1787461919505024400,"indexed_at_ns":1787726735328171600,"word_count":267685},"frontend/application/public/assets/images/hero-section-image.png":{"size":6990105,"mtime_ns":1783856793095044200,"indexed_at_ns":1787726735461222100,"word_count":267685},"frontend/application/public/assets/images/regenerated_image_1779109861747.png":{"size":2269101,"mtime_ns":1783764562014110300,"indexed_at_ns":1787726735596033500,"word_count":84979},"frontend/application/public/file.svg":{"size":391,"mtime_ns":1783764562016213600,"indexed_at_ns":1787726735643616000,"word_count":50},"frontend/application/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856793098052000,"indexed_at_ns":1787726735668659800,"word_count":15},"frontend/application/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856793107660400,"indexed_at_ns":1787726735694207900,"word_count":15},"frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856793113660500,"indexed_at_ns":1787726739908406400,"word_count":1077,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/changelog.md":"be9b046e69dc5442c30d61cca51a69e4238f861da265d1ce8cd0192bafce40a9"}},"frontend/application/public/fonts/sahel-font-v3.4.0/README.md":{"size":4136,"mtime_ns":1783856793156251700,"indexed_at_ns":1787726739909406300,"word_count":366,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/readme.md":"9b0e689f6474b487d70db0ecb05321072f15df92266522497b60aaa47579aac5"}},"frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif":{"size":236102,"mtime_ns":1783856793229119700,"indexed_at_ns":1787726736213031900,"word_count":10881},"frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856793230118600,"indexed_at_ns":1787726736225832200,"word_count":951},"frontend/application/public/fonts/shabnam-font-v5.0.1/README.md":{"size":3696,"mtime_ns":1783856793279542700,"indexed_at_ns":1787726736475009300,"word_count":283},"frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png":{"size":85019,"mtime_ns":1783856793315146800,"indexed_at_ns":1787726736717303100,"word_count":2615},"frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856793316155600,"indexed_at_ns":1787726736727313200,"word_count":55},"frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856793317690100,"indexed_at_ns":1787726736736959200,"word_count":5086},"frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt":{"size":4391,"mtime_ns":1783856793319422000,"indexed_at_ns":1787726736744957500,"word_count":671},"frontend/application/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856793320489000,"indexed_at_ns":1787726736753050400,"word_count":270},"frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":{"size":211,"mtime_ns":1783856793668096800,"indexed_at_ns":1787726738964542200,"word_count":14},"frontend/application/public/globe.svg":{"size":1035,"mtime_ns":1783764562016720700,"indexed_at_ns":1787726738969546300,"word_count":154},"frontend/application/public/images/vets/vet1.webp":{"size":6990105,"mtime_ns":1787461919541761600,"indexed_at_ns":1787726738988845300,"word_count":267685},"frontend/application/public/next.svg":{"size":1375,"mtime_ns":1783764562018238900,"indexed_at_ns":1787726739135424800,"word_count":183},"frontend/application/public/vercel.svg":{"size":128,"mtime_ns":1783764562019253000,"indexed_at_ns":1787726739141424700,"word_count":12},"frontend/application/public/window.svg":{"size":385,"mtime_ns":1783764562019253000,"indexed_at_ns":1787726739147423800,"word_count":63},"frontend/application/tsconfig.json":{"size":750,"mtime_ns":1786799852865640000,"indexed_at_ns":1787726739800717100,"word_count":61,"hashes":{"frontend/application/tsconfig.json":"adcade0f962ec5888be99b4b1402d98812cfd570b0c5669bda73142b2cb9210d"}},"frontend/application/vitest.config.ts":{"size":244,"mtime_ns":1786799852868652900,"indexed_at_ns":1787726739161997600,"word_count":25},"frontend/application/vitest.setup.ts":{"size":1237,"mtime_ns":1787726718519138800,"indexed_at_ns":1787726739167593200,"word_count":141},"manual-test-scenarios.md":{"size":0,"mtime_ns":1787658071444330600,"indexed_at_ns":1787726739910406100,"word_count":0,"hashes":{"manual-test-scenarios.md":"c6e53ad8216c7ae7d9e1449511caca4c768d1c68b0b859ae24f0add4afe8e502"}},"metadata.json":{"size":334,"mtime_ns":1783856793672137200,"indexed_at_ns":1787726739801716800,"word_count":35,"hashes":{"metadata.json":"c44b4c4ba60752554ceae65e2f22bddb756cbeb25a4a31ee79160b6eb182255a"}},"package.json":{"size":1237,"mtime_ns":1787665334605777200,"indexed_at_ns":1787726739802716500,"word_count":136,"hashes":{"package.json":"3ca5b265c68cc5660e5fd57b0aeb13de7eb49732740eafe405f6f0804671ceeb"}},"playwright.config.ts":{"size":2710,"mtime_ns":1787661561809749100,"indexed_at_ns":1787726739192125200,"word_count":270},"prometheus.yml":{"size":164,"mtime_ns":1783764562027779300,"indexed_at_ns":1787726739197125100,"word_count":13},"scripts/backup_db.sh":{"size":1362,"mtime_ns":1786799852876784600,"indexed_at_ns":1787726739803716600,"word_count":134,"hashes":{"scripts/backup_db.sh":"f90cf2d0c954f3eaca83566ccb365bff62fd97a2af0225816c19902ee4dfdd6c"}},"scripts/compose.prod.yml":{"size":2166,"mtime_ns":1787077093990777200,"indexed_at_ns":1787726739209165700,"word_count":120},"scripts/compose.stage.yml":{"size":2557,"mtime_ns":1787077093991779700,"indexed_at_ns":1787726739215476500,"word_count":137},"scripts/deploy.sh":{"size":3346,"mtime_ns":1787136904559094200,"indexed_at_ns":1787726739805264300,"word_count":351,"hashes":{"scripts/deploy.sh":"64d276bb6eb6cfb83690c529b9d1c0c71fa46aa912a458f684dfcf842fab2aea"}},"scripts/open-browsers.js":{"size":1551,"mtime_ns":1787640978248234500,"indexed_at_ns":1787726739230479800,"word_count":202},"scripts/start-dev.js":{"size":1689,"mtime_ns":1787072106514646900,"indexed_at_ns":1787726739236447600,"word_count":186},"start.sh":{"size":26,"mtime_ns":1784033954813080300,"indexed_at_ns":1787726739806268200,"word_count":4,"hashes":{"start.sh":"694c258b963c309734a3316c770f5fef29703bc6f24754b04155fd8db94cf862"}},"swagger.yml":{"size":95785,"mtime_ns":1786799852892091600,"indexed_at_ns":1787726739249239800,"word_count":7031},"test-coverage-map.md":{"size":13899,"mtime_ns":1787665722646010200,"indexed_at_ns":1787726739911406300,"word_count":1524,"hashes":{"test-coverage-map.md":"970d0bc2af7773ce27006da7c642991e3f094e71838201680fca7d9dfe809746"}},"tests/e2e/admin/admin-b2b-submissions.spec.ts":{"size":8979,"mtime_ns":1787668210920500800,"indexed_at_ns":1787726739262186200,"word_count":742},"tests/e2e/admin/admin-blogs-crud.spec.ts":{"size":5540,"mtime_ns":1787667059976029600,"indexed_at_ns":1787726739268192800,"word_count":490},"tests/e2e/admin/admin-crud.spec.ts":{"size":6485,"mtime_ns":1787647141438813100,"indexed_at_ns":1787726739273817600,"word_count":569},"tests/e2e/admin/admin-orders-flow.spec.ts":{"size":4130,"mtime_ns":1787660839295886100,"indexed_at_ns":1787726739278815800,"word_count":352},"tests/e2e/admin/admin-rbac-roles.spec.ts":{"size":4011,"mtime_ns":1787661275438587400,"indexed_at_ns":1787726739285322000,"word_count":327},"tests/e2e/security/xss-ratelimit.spec.ts":{"size":5646,"mtime_ns":1787666650254181600,"indexed_at_ns":1787726739290898900,"word_count":491},"tests/e2e/storefront/auth-otp-recovery.spec.ts":{"size":4540,"mtime_ns":1787661085290638100,"indexed_at_ns":1787726739296615200,"word_count":384},"tests/e2e/storefront/b2b-flow.spec.ts":{"size":3521,"mtime_ns":1787646184071240700,"indexed_at_ns":1787726739303637200,"word_count":288},"tests/e2e/storefront/blog-wiki.spec.ts":{"size":2107,"mtime_ns":1787646189173148500,"indexed_at_ns":1787726739309235200,"word_count":185},"tests/e2e/storefront/cart-operations.spec.ts":{"size":3910,"mtime_ns":1787667189833394600,"indexed_at_ns":1787726739315335500,"word_count":332},"tests/e2e/storefront/checkout-flow.spec.ts":{"size":2766,"mtime_ns":1787650478684129200,"indexed_at_ns":1787726739321114600,"word_count":251},"tests/e2e/storefront/concurrency-stock.spec.ts":{"size":5868,"mtime_ns":1787663655637297800,"indexed_at_ns":1787726739327114800,"word_count":537},"tests/e2e/storefront/contact.spec.ts":{"size":2899,"mtime_ns":1787646431984582600,"indexed_at_ns":1787726739332612600,"word_count":238},"tests/e2e/storefront/error-pages-404-500.spec.ts":{"size":1238,"mtime_ns":1787661409021863900,"indexed_at_ns":1787726739338390800,"word_count":121},"tests/e2e/storefront/order-tracking.spec.ts":{"size":3125,"mtime_ns":1787657088442316700,"indexed_at_ns":1787726739344389200,"word_count":282},"tests/e2e/storefront/shop-filter-search.spec.ts":{"size":2151,"mtime_ns":1787659690298137400,"indexed_at_ns":1787726739349896500,"word_count":187},"tests/fixtures/admin-auth.setup.ts":{"size":1950,"mtime_ns":1787647018072959200,"indexed_at_ns":1787726739355457600,"word_count":195},"tests/fixtures/index.ts":{"size":194,"mtime_ns":1787646170488211800,"indexed_at_ns":1787726739360706700,"word_count":32},"tsconfig.json":{"size":439,"mtime_ns":1787650119041351000,"indexed_at_ns":1787726739807775300,"word_count":37,"hashes":{"tsconfig.json":"12f2e30da1a34da7d06440370b7d1930cd5a3c3293f485789f5cfa2434aeea6f"}}} \ No newline at end of file +{".agents/rules/graphify.md":{"size":933,"mtime_ns":1786870552830271100,"indexed_at_ns":1787726739808807000,"word_count":127,"hashes":{".agents/rules/graphify.md":"26f2577a68d808f7f33ec3e418b95b635aec180d93b22b975e9ae67c47e361c8"}},".agents/workflows/graphify.md":{"size":229,"mtime_ns":1786870552832398300,"indexed_at_ns":1787726739809809700,"word_count":37,"hashes":{".agents/workflows/graphify.md":"a81e2d017e0669c71099362b20854e4d9ed68753f1c240d0682120bdb9aa3c72"}},".ai_agency/AGENCY.md":{"size":8757,"mtime_ns":1785148021979607300,"indexed_at_ns":1787726739810808600,"word_count":1161,"hashes":{".ai_agency/agency.md":"88c7c13583a91fc7e41ce055fede9dce20f181e8d264557808989965e83a9030"}},".ai_agency/agents/00_intake.md":{"size":3819,"mtime_ns":1785148021984319000,"indexed_at_ns":1787726739811809900,"word_count":500,"hashes":{".ai_agency/agents/00_intake.md":"9dc8d7eeda0655717dc5b9d2f8572c47567b88ca88de7e4e5bf59869077ff407"}},".ai_agency/agents/01_auditor.md":{"size":3643,"mtime_ns":1785148021987782800,"indexed_at_ns":1787726739813809800,"word_count":467,"hashes":{".ai_agency/agents/01_auditor.md":"37ae09614034d9b5c855e0132b59a5e3cfd2fc38c54d1a5386fa43ba488c4d4d"}},".ai_agency/agents/02_ceo.md":{"size":2341,"mtime_ns":1785148021998374800,"indexed_at_ns":1787726739814809500,"word_count":294,"hashes":{".ai_agency/agents/02_ceo.md":"b4a76df6483fd52e1b9f1e70765b3f7b6d134dc003ef2ad0cb86b952c869c4a5"}},".ai_agency/agents/03_product_manager.md":{"size":8422,"mtime_ns":1785148022001968200,"indexed_at_ns":1787726739815810200,"word_count":1076,"hashes":{".ai_agency/agents/03_product_manager.md":"1927827474b1dd6fd4976af45b51f1ad3128fe3305c3af22639ab2584e8f0b55"}},".ai_agency/agents/04_architect.md":{"size":3603,"mtime_ns":1785148022004966000,"indexed_at_ns":1787726739816809500,"word_count":448,"hashes":{".ai_agency/agents/04_architect.md":"c96b04d5af093f455fa3c64ae177a69421e8150eb38c70bb8587b5a14e7d3ca8"}},".ai_agency/agents/05_dev_backend.md":{"size":7142,"mtime_ns":1785148022012481200,"indexed_at_ns":1787726739817810300,"word_count":953,"hashes":{".ai_agency/agents/05_dev_backend.md":"143a7c8a6fbedcd837d647efddb9f6b49074583502bd77f24c955bd86a6f3df8"}},".ai_agency/agents/06_dev_frontend.md":{"size":7518,"mtime_ns":1785148022017020100,"indexed_at_ns":1787726739819343800,"word_count":1011,"hashes":{".ai_agency/agents/06_dev_frontend.md":"e69679636d42dd626c7c76ddc96e1ddb656ab5b9ee912b89adcc7a9338f34a0b"}},".ai_agency/agents/07_qa_engineer.md":{"size":3764,"mtime_ns":1785148022020044600,"indexed_at_ns":1787726739820379800,"word_count":507,"hashes":{".ai_agency/agents/07_qa_engineer.md":"2616ef2b3ac39ded45fc669d5b5b140e72953fe61a819966fb040382e9b47d45"}},".ai_agency/agents/08_visual_qa.md":{"size":7910,"mtime_ns":1785148022030083200,"indexed_at_ns":1787726739821353800,"word_count":1121,"hashes":{".ai_agency/agents/08_visual_qa.md":"17a5a74039e8a9d7cb40c5bc3c616c7c92d53401efd92d0675d4bbe5e90572a8"}},".ai_agency/agents/09_devops_security.md":{"size":6825,"mtime_ns":1785148022034087400,"indexed_at_ns":1787726739822379900,"word_count":908,"hashes":{".ai_agency/agents/09_devops_security.md":"315bd3cee954ac3496da8db1b1718b75ab3822ec3a90f99bc77767ca99482edf"}},".ai_agency/agents/10_tech_writer.md":{"size":3119,"mtime_ns":1785148022037082600,"indexed_at_ns":1787726739824378500,"word_count":408,"hashes":{".ai_agency/agents/10_tech_writer.md":"3527b44265fec2472cc20ca4641667e1fa3d38cbc9b2fbf9a946ee1e531e9e37"}},".ai_agency/agents/11_deploy.md":{"size":3956,"mtime_ns":1785148022040602600,"indexed_at_ns":1787726739825379700,"word_count":537,"hashes":{".ai_agency/agents/11_deploy.md":"8169bc98b249cd83ba21551dea082f69dfa6deca5f5e4a7f2739a28746c143f9"}},".ai_agency/agents/12_seo_content.md":{"size":10963,"mtime_ns":1785148022048603900,"indexed_at_ns":1787726739826379900,"word_count":1539,"hashes":{".ai_agency/agents/12_seo_content.md":"2f50eb9db8bf1ad7bc23c7d8c3a4f167a2daafb73f095db9237c5bdb20e7a5f4"}},".ai_agency/memory/agent_outputs/README.txt":{"size":290,"mtime_ns":1785148022052150400,"indexed_at_ns":1787726728366347600,"word_count":34},".ai_agency/memory/backlog.json":{"size":10711,"mtime_ns":1785330750958890900,"indexed_at_ns":1787726739730126300,"word_count":981,"hashes":{".ai_agency/memory/backlog.json":"6bf3150a1877d03d03b368df21b84071381b1bb8cd03e3721fa9f8e6c38355be"}},".ai_agency/memory/scratchpad.md":{"size":1879,"mtime_ns":1785148022065114400,"indexed_at_ns":1787726739827380200,"word_count":249,"hashes":{".ai_agency/memory/scratchpad.md":"9d0f687cf8e95c6335f1efb070da8029878417c28117e3b89aa8536ad70a5b95"}},".ai_agency/memory/state.json":{"size":3654,"mtime_ns":1785330750963913800,"indexed_at_ns":1787726739754651600,"word_count":254,"hashes":{".ai_agency/memory/state.json":"1204676f8f295d89733888bb87936061b7a700df0cc936fbf08fd5269b534e8d"}},".ai_agency/orchestrate.py":{"size":6800,"mtime_ns":1785148022072662500,"indexed_at_ns":1787726739755649500,"word_count":644,"hashes":{".ai_agency/orchestrate.py":"90ec787fdd4c71f5203c56b6899aadcc26e6e0bad0cc576d2f982aa42eed42e1"}},".ai_agency/specs/api_contract.md":{"size":1515,"mtime_ns":1785148022077664900,"indexed_at_ns":1787726739828380100,"word_count":139,"hashes":{".ai_agency/specs/api_contract.md":"ea0911b6a5ad6a908ab707f7553f5f24712c1e198fd79255fa85e3249150e8b4"}},".ai_agency/specs/architecture_spec.md":{"size":790,"mtime_ns":1785148022082260900,"indexed_at_ns":1787726739829380100,"word_count":99,"hashes":{".ai_agency/specs/architecture_spec.md":"6269043f6a144e8ac86ff1db7e014075185e5675a4a0ee23e99e70d88253b8af"}},".ai_agency/specs/prd.md":{"size":724,"mtime_ns":1785148022087251600,"indexed_at_ns":1787726739830914500,"word_count":96,"hashes":{".ai_agency/specs/prd.md":"1c6d5a0ec8a709a2b3aed28225f5fe148ad2d75851d45699187678d055947b11"}},".ai_agency/specs/project_health.md":{"size":444,"mtime_ns":1785148022098314600,"indexed_at_ns":1787726739831950800,"word_count":65,"hashes":{".ai_agency/specs/project_health.md":"677c2f1d35c31d75d935766f154683e0483b08c696117ee612bee1528705c598"}},".ai_agency/specs/reviews/README.md":{"size":1029,"mtime_ns":1785148022105834900,"indexed_at_ns":1787726739832950700,"word_count":117,"hashes":{".ai_agency/specs/reviews/readme.md":"8ceb4cae1ad4c0f660557d827ced970cda8f7d020f8124b624b228174b1b65ab"}},".ai_agency/specs/reviews/backend_review.md":{"size":1430,"mtime_ns":1785148022110362400,"indexed_at_ns":1787726739834457300,"word_count":172,"hashes":{".ai_agency/specs/reviews/backend_review.md":"fca1f8d59c2eab255f7aba246b26731fe53f208e737ccf46035389591900a150"}},".ai_agency/specs/reviews/code_health_review.md":{"size":2193,"mtime_ns":1785148022114359700,"indexed_at_ns":1787726739835467400,"word_count":279,"hashes":{".ai_agency/specs/reviews/code_health_review.md":"532e04465e125183d6dd8f8af61bfc8735a514b3fbbc49069f5f0884155ed93f"}},".ai_agency/specs/reviews/frontend_review.md":{"size":1452,"mtime_ns":1785148022118486900,"indexed_at_ns":1787726739837467800,"word_count":183,"hashes":{".ai_agency/specs/reviews/frontend_review.md":"9f826c0267cad8bd5d342b1f908c927976d9be7da3f75b175331381ef8c8b680"}},".ai_agency/specs/reviews/security_review.md":{"size":874,"mtime_ns":1785148022121487200,"indexed_at_ns":1787726739838331800,"word_count":110,"hashes":{".ai_agency/specs/reviews/security_review.md":"51363e62e919d6772c2b3b9a1a3f3870a5892dae6d408217ed3fb475f72d3f0b"}},".ai_agency/specs/reviews/seo_content_review.md":{"size":1238,"mtime_ns":1785148022131533800,"indexed_at_ns":1787726739839755700,"word_count":156,"hashes":{".ai_agency/specs/reviews/seo_content_review.md":"bc8401649a86585b4061b3ec0f584910c54aad25bc9943392179bc070c07a434"}},".ai_agency/specs/reviews/ux_review.md":{"size":1131,"mtime_ns":1785148022136550700,"indexed_at_ns":1787726739840765700,"word_count":150,"hashes":{".ai_agency/specs/reviews/ux_review.md":"b8a52f324e36fcc2d046cc903a05903057098a67a397ae6442d6c825091f4513"}},".antigravity/instructions.md":{"size":226,"mtime_ns":1786870552833405800,"indexed_at_ns":1787726739842276100,"word_count":29,"hashes":{".antigravity/instructions.md":"8d8f5c1bbdbb7b8045e02b06a50e68d3fcfabfb2d65f8ac1cd86168dc8a8cc96"}},".antigravity/workflows/graphify.md":{"size":43292,"mtime_ns":1786870552837921500,"indexed_at_ns":1787726739843281500,"word_count":5442,"hashes":{".antigravity/workflows/graphify.md":"0c16b701a50d64f741f6de107c49584012a8dd7f5e922af9f79754540629e2fe"}},".claude/CLAUDE.md":{"size":226,"mtime_ns":1786870552838920200,"indexed_at_ns":1787726739845281600,"word_count":29,"hashes":{".claude/claude.md":"c6f7fc2f062904d246b700d446ba3ad03e77f41809b12eccfb5e090a11f4fad2"}},".claude/settings.json":{"size":479,"mtime_ns":1786870552841922800,"indexed_at_ns":1787726739757648600,"word_count":38,"hashes":{".claude/settings.json":"0aaafba2cbd7dd67f7d69fa2f01b747c9a72f56ee421a40825521f937caec82b"}},".claude/skills/graphify/SKILL.md":{"size":43292,"mtime_ns":1786870552845041000,"indexed_at_ns":1787726739846281500,"word_count":5442,"hashes":{".claude/skills/graphify/skill.md":"5b24d39cbbb662ea1cd672839f64b50823e1b7de9b113f542248eac38c70cdf1"}},".claude/skills/graphify/references/add-watch.md":{"size":2486,"mtime_ns":1786870552848102000,"indexed_at_ns":1787726739847281400,"word_count":366,"hashes":{".claude/skills/graphify/references/add-watch.md":"cb5e2f3284265c08c88c08f445b96958b13a9115c0afc0a33206c293d1b1c187"}},".claude/skills/graphify/references/exports.md":{"size":3362,"mtime_ns":1786870552849102100,"indexed_at_ns":1787726739848281300,"word_count":470,"hashes":{".claude/skills/graphify/references/exports.md":"7aa8b606e5c19334b6c9fe62a12fc30eb46c0320d1dbb5726cfda0becdd04a5a"}},".claude/skills/graphify/references/extraction-spec.md":{"size":7960,"mtime_ns":1786870552850101900,"indexed_at_ns":1787726739849713100,"word_count":1038,"hashes":{".claude/skills/graphify/references/extraction-spec.md":"9cf5d515d0d8584aeef36708df34f560078772a568ed599cac5ba20b089e563d"}},".claude/skills/graphify/references/github-and-merge.md":{"size":2177,"mtime_ns":1786870552853101000,"indexed_at_ns":1787726739850713300,"word_count":271,"hashes":{".claude/skills/graphify/references/github-and-merge.md":"609de4b1331ddb2f8c80e97aac0a5de782a373d6f5af858e10a731c20b35c0e2"}},".claude/skills/graphify/references/hooks.md":{"size":1267,"mtime_ns":1786870552855098700,"indexed_at_ns":1787726739852220900,"word_count":193,"hashes":{".claude/skills/graphify/references/hooks.md":"7c7827f2f29d6e2cb6cc6902558dac08380f60c414b4968f83e1bc4e61b3e268"}},".claude/skills/graphify/references/query.md":{"size":13456,"mtime_ns":1786870552857702900,"indexed_at_ns":1787726739853231100,"word_count":1763,"hashes":{".claude/skills/graphify/references/query.md":"54526cc3e2392922d344f14767f09037ef85fb7ec5cc7911b749b35bcb004fbf"}},".claude/skills/graphify/references/transcribe.md":{"size":3173,"mtime_ns":1786870552858710700,"indexed_at_ns":1787726739855230800,"word_count":418,"hashes":{".claude/skills/graphify/references/transcribe.md":"1d5afbaccf36e952e71082591edfc9e4fbd9946eb85b01855a1d0bd810b7623d"}},".claude/skills/graphify/references/update.md":{"size":10425,"mtime_ns":1786870552860709800,"indexed_at_ns":1787726739856230800,"word_count":1196,"hashes":{".claude/skills/graphify/references/update.md":"0249cd6ceae6effdfc7371b51d00c462f51d95700101dcedd36255bab1b4ce7a"}},".gemini/config/mcp_config.json":{"size":156,"mtime_ns":1787656263463286100,"indexed_at_ns":1787726739758249000,"word_count":15,"hashes":{".gemini/config/mcp_config.json":"480d3e3af5f9fad11aae5b7aa4cac5420fc7ebb7bee6807c7fb7072b839490b0"}},".gitea/scripts/with-vpn.sh":{"size":1794,"mtime_ns":1786799852126316200,"indexed_at_ns":1787726739759255200,"word_count":208,"hashes":{".gitea/scripts/with-vpn.sh":"9ec013d142e3cf5d7e5f09778fcb06b4b8ea7b394688f9f40b5e74298c76bcf0"}},".gitea/workflows/deploy.yml":{"size":993,"mtime_ns":1787078454762471500,"indexed_at_ns":1787726728591851200,"word_count":84},".gitea/workflows/e2e.yml":{"size":980,"mtime_ns":1787663719279353200,"indexed_at_ns":1787726728598422000,"word_count":98},".vscode/extensions.json":{"size":74,"mtime_ns":1787461919449307400,"indexed_at_ns":1787726739761255600,"word_count":6,"hashes":{".vscode/extensions.json":"57518c36999b5176c9e8617cf937f6e35b54ddd015305005d4611729d1d69177"}},"AGENTS.md":{"size":226,"mtime_ns":1786870552862708600,"indexed_at_ns":1787726739857230800,"word_count":29,"hashes":{"agents.md":"b664c2bb6d85e009d7495bcd9c3d52c419176473cd4e19362fd4256616076151"}},"BACKEND_INTEGRATION.md":{"size":15568,"mtime_ns":1786885876768825200,"indexed_at_ns":1787726728620874500,"word_count":1521},"CLAUDE.md":{"size":772,"mtime_ns":1786870552863710100,"indexed_at_ns":1787726739858230900,"word_count":106,"hashes":{"claude.md":"3612256e7473a2e5f67ef4778d4edeefb44794ef22bac5529bee9c87dc5d8f3d"}},"DATABASE_SCHEMA.md":{"size":15399,"mtime_ns":1786885876771342200,"indexed_at_ns":1787726728633463600,"word_count":1566},"README.md":{"size":13117,"mtime_ns":1786885876775371800,"indexed_at_ns":1787726728645776100,"word_count":1310},"backend/README.md":{"size":5028,"mtime_ns":1783764561601382400,"indexed_at_ns":1787726739859230700,"word_count":472,"hashes":{"backend/readme.md":"c3edfd26252566ef2ddee12c91a874b59e03a1656894d3db25209a0e4031010a"}},"backend/eslint.config.mjs":{"size":1649,"mtime_ns":1787073059105361700,"indexed_at_ns":1787726728676723300,"word_count":104},"backend/nest-cli.json":{"size":172,"mtime_ns":1787072106370561300,"indexed_at_ns":1787726739762253100,"word_count":13,"hashes":{"backend/nest-cli.json":"64fe2904203985aa0acb9b67d7ade489f2362ac8730283fb11d6a764d1cb3878"}},"backend/package.json":{"size":2903,"mtime_ns":1787644197137104200,"indexed_at_ns":1787726739763253000,"word_count":214,"hashes":{"backend/package.json":"164822617eb449e27d8e6a9ff13476f3b08fb3dcf5710289e85af9bf50ec39d5"}},"backend/prisma/migrations/20260526145407_init/migration.sql":{"size":8963,"mtime_ns":1783764561612007600,"indexed_at_ns":1787726739764254000,"word_count":936,"hashes":{"backend/prisma/migrations/20260526145407_init/migration.sql":"d6cc5e861e43bf82dcffe1ad7121fcbe9f74db7901cf204b5058da3132d3c1d2"}},"backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql":{"size":404,"mtime_ns":1783764561613425800,"indexed_at_ns":1787726739765254200,"word_count":48,"hashes":{"backend/prisma/migrations/20260526160916_add_ui_texts_and_scientific_terms/migration.sql":"c564f4aba35d32a733a5837c33664c68c8912277ad9645310f7e8116fbcba741"}},"backend/prisma/scientificTerms.ts":{"size":24298,"mtime_ns":1785325924634812500,"indexed_at_ns":1787726728717813800,"word_count":2294},"backend/prisma/seed-blogs.ts":{"size":6950,"mtime_ns":1786885876777374000,"indexed_at_ns":1787726728724742400,"word_count":620},"backend/prisma/seed-custom.ts":{"size":3836,"mtime_ns":1786799852144902000,"indexed_at_ns":1787726728731289500,"word_count":371},"backend/prisma/seed-home.ts":{"size":3870,"mtime_ns":1786885876779371100,"indexed_at_ns":1787726728738323600,"word_count":374},"backend/prisma/seed-products-data.json":{"size":59220,"mtime_ns":1786885876782371300,"indexed_at_ns":1787726739767253200,"word_count":5730,"hashes":{"backend/prisma/seed-products-data.json":"9d1262f8264478eb43ec48f073f817d46fc193d666cd9364f3bb95c1629f25c7"}},"backend/prisma/seed-products.ts":{"size":28268,"mtime_ns":1787127978219270600,"indexed_at_ns":1787726728749556400,"word_count":2063},"backend/prisma/seed-ui-texts.ts":{"size":9191,"mtime_ns":1787127978221789800,"indexed_at_ns":1787726728757558800,"word_count":755},"backend/prisma/seed-wiki.ts":{"size":24019,"mtime_ns":1786961195297596000,"indexed_at_ns":1787726728762216000,"word_count":2292},"backend/prisma/seed.ts":{"size":30480,"mtime_ns":1787127978225587600,"indexed_at_ns":1787726728769733300,"word_count":2636},"backend/prisma/tsconfig.json":{"size":194,"mtime_ns":1786961195300236300,"indexed_at_ns":1787726739768256500,"word_count":17,"hashes":{"backend/prisma/tsconfig.json":"0308b15b67bad714ff5f1b6b73f64ae46f98d5190cd6092abb1fb67885d67be1"}},"backend/prisma/tsconfig.seed.json":{"size":194,"mtime_ns":1786955870751259200,"indexed_at_ns":1787726739769256400,"word_count":17,"hashes":{"backend/prisma/tsconfig.seed.json":"e178d23a09563a7a9b348d905bc70322115514c78a7afcc5a53db7d18e511583"}},"backend/scripts/generate-openapi.d.ts":{"size":11,"mtime_ns":1786883225777483700,"indexed_at_ns":1787726728788027700,"word_count":2},"backend/scripts/generate-openapi.js":{"size":2965,"mtime_ns":1786883225779120000,"indexed_at_ns":1787726728794115400,"word_count":309},"backend/scripts/generate-openapi.ts":{"size":1421,"mtime_ns":1787665334153652900,"indexed_at_ns":1787726728805296800,"word_count":132},"backend/scripts/seo-backfill.ts":{"size":4551,"mtime_ns":1787665326978441700,"indexed_at_ns":1787726728810502300,"word_count":464},"backend/src/admin/admin.controller.spec.ts":{"size":593,"mtime_ns":1786799852157399700,"indexed_at_ns":1787726728816339600,"word_count":59},"backend/src/admin/admin.controller.ts":{"size":9712,"mtime_ns":1787564362261174000,"indexed_at_ns":1787726728822736900,"word_count":966},"backend/src/admin/admin.module.ts":{"size":1420,"mtime_ns":1786877667005008400,"indexed_at_ns":1787726728829614400,"word_count":145},"backend/src/admin/admin.service.spec.ts":{"size":903,"mtime_ns":1787726718496019700,"indexed_at_ns":1787726728836653200,"word_count":89},"backend/src/admin/admin.service.ts":{"size":30386,"mtime_ns":1787579631756175500,"indexed_at_ns":1787726728841653400,"word_count":3056},"backend/src/admin/blogs.controller.ts":{"size":5204,"mtime_ns":1787579631758177800,"indexed_at_ns":1787726728849039400,"word_count":532},"backend/src/admin/blogs.service.ts":{"size":9542,"mtime_ns":1787579631760177700,"indexed_at_ns":1787726728855138400,"word_count":1070},"backend/src/admin/categories.controller.ts":{"size":2187,"mtime_ns":1786799852174192500,"indexed_at_ns":1787726728862149600,"word_count":204},"backend/src/admin/categories.service.ts":{"size":2005,"mtime_ns":1786799852175194300,"indexed_at_ns":1787726728869148700,"word_count":223},"backend/src/admin/dto/admin-query.dto.ts":{"size":634,"mtime_ns":1786799852178706400,"indexed_at_ns":1787726728875856900,"word_count":60},"backend/src/admin/dto/product.dto.ts":{"size":6434,"mtime_ns":1787579631762178300,"indexed_at_ns":1787726728882424900,"word_count":521},"backend/src/admin/dto/user.dto.ts":{"size":2839,"mtime_ns":1787072106381989700,"indexed_at_ns":1787726728889404100,"word_count":259},"backend/src/admin/media.controller.ts":{"size":2339,"mtime_ns":1786876983648866300,"indexed_at_ns":1787726728895408700,"word_count":226},"backend/src/admin/media.service.ts":{"size":2713,"mtime_ns":1786876983651534500,"indexed_at_ns":1787726728902532200,"word_count":283},"backend/src/admin/pets.controller.ts":{"size":1195,"mtime_ns":1786799852186217200,"indexed_at_ns":1787726728908565800,"word_count":117},"backend/src/admin/pets.service.ts":{"size":1731,"mtime_ns":1786954681814243000,"indexed_at_ns":1787726728915489100,"word_count":193},"backend/src/admin/reports.controller.ts":{"size":1079,"mtime_ns":1787726718497019000,"indexed_at_ns":1787726728922460200,"word_count":107},"backend/src/admin/reports.service.ts":{"size":6497,"mtime_ns":1787726718497019000,"indexed_at_ns":1787726728927458800,"word_count":729},"backend/src/admin/ssl.controller.ts":{"size":3371,"mtime_ns":1787072106382979000,"indexed_at_ns":1787726728933458100,"word_count":296},"backend/src/admin/ssl.service.ts":{"size":6502,"mtime_ns":1787072106383978900,"indexed_at_ns":1787726728940536700,"word_count":612},"backend/src/admin/wiki.controller.ts":{"size":1814,"mtime_ns":1786799852191732300,"indexed_at_ns":1787726728947315900,"word_count":179},"backend/src/admin/wiki.service.ts":{"size":1767,"mtime_ns":1786799852193324200,"indexed_at_ns":1787726728953886100,"word_count":195},"backend/src/app.controller.spec.ts":{"size":617,"mtime_ns":1783764561644839700,"indexed_at_ns":1787726728959886100,"word_count":61},"backend/src/app.controller.ts":{"size":274,"mtime_ns":1783764561645849100,"indexed_at_ns":1787726728965475600,"word_count":31},"backend/src/app.module.ts":{"size":4052,"mtime_ns":1787579631764695400,"indexed_at_ns":1787726728971183900,"word_count":382},"backend/src/app.service.ts":{"size":142,"mtime_ns":1783764561648840500,"indexed_at_ns":1787726728977275800,"word_count":19},"backend/src/auth/auth.constants.ts":{"size":456,"mtime_ns":1787072106385980100,"indexed_at_ns":1787726728983890000,"word_count":32},"backend/src/auth/auth.controller.spec.ts":{"size":1528,"mtime_ns":1785327951179468000,"indexed_at_ns":1787726728988890000,"word_count":149},"backend/src/auth/auth.controller.ts":{"size":4304,"mtime_ns":1787645037368025500,"indexed_at_ns":1787726728996333500,"word_count":410},"backend/src/auth/auth.module.ts":{"size":724,"mtime_ns":1787072106388501600,"indexed_at_ns":1787726729002365400,"word_count":80},"backend/src/auth/auth.service.spec.ts":{"size":4306,"mtime_ns":1787726718498526800,"indexed_at_ns":1787726729008423400,"word_count":381},"backend/src/auth/auth.service.ts":{"size":9713,"mtime_ns":1787127978228589700,"indexed_at_ns":1787726729014017400,"word_count":933},"backend/src/auth/dto/admin-login.dto.ts":{"size":766,"mtime_ns":1787127978229587400,"indexed_at_ns":1787726729021017300,"word_count":82},"backend/src/auth/dto/login.dto.ts":{"size":587,"mtime_ns":1783764561659109000,"indexed_at_ns":1787726729027109900,"word_count":63},"backend/src/auth/dto/register.dto.ts":{"size":1197,"mtime_ns":1785327951186476900,"indexed_at_ns":1787726729033385300,"word_count":115},"backend/src/auth/dto/send-otp.dto.ts":{"size":374,"mtime_ns":1783764561661106500,"indexed_at_ns":1787726729039417400,"word_count":39},"backend/src/auth/dto/verify-otp.dto.ts":{"size":594,"mtime_ns":1783764561662112100,"indexed_at_ns":1787726729045971800,"word_count":64},"backend/src/auth/jwt-auth.guard.ts":{"size":494,"mtime_ns":1786799852205862700,"indexed_at_ns":1787726729051550300,"word_count":58},"backend/src/auth/jwt.strategy.ts":{"size":1122,"mtime_ns":1786883225794343300,"indexed_at_ns":1787726729058027000,"word_count":116},"backend/src/auth/roles.decorator.ts":{"size":54,"mtime_ns":1786799852208379600,"indexed_at_ns":1787726729064059300,"word_count":4},"backend/src/auth/roles.guard.ts":{"size":46,"mtime_ns":1786799852209003400,"indexed_at_ns":1787726729070031800,"word_count":4},"backend/src/b2b/b2b.controller.ts":{"size":2782,"mtime_ns":1787645037369065300,"indexed_at_ns":1787726729075540200,"word_count":261},"backend/src/b2b/b2b.module.ts":{"size":342,"mtime_ns":1786799852212013200,"indexed_at_ns":1787726729082375900,"word_count":38},"backend/src/b2b/b2b.service.ts":{"size":2379,"mtime_ns":1786799852214009300,"indexed_at_ns":1787726729088349500,"word_count":243},"backend/src/banners/banners.controller.ts":{"size":1923,"mtime_ns":1786799852215010200,"indexed_at_ns":1787726729094382800,"word_count":169},"backend/src/banners/banners.module.ts":{"size":374,"mtime_ns":1786799852216010300,"indexed_at_ns":1787726729099954900,"word_count":38},"backend/src/banners/banners.service.ts":{"size":1394,"mtime_ns":1786799852216010300,"indexed_at_ns":1787726729105481900,"word_count":160},"backend/src/blogs/blogs.controller.ts":{"size":2667,"mtime_ns":1787645037369588600,"indexed_at_ns":1787726729111864500,"word_count":238},"backend/src/blogs/blogs.module.ts":{"size":248,"mtime_ns":1783764561665678100,"indexed_at_ns":1787726729117858700,"word_count":28},"backend/src/blogs/blogs.service.ts":{"size":9915,"mtime_ns":1787644197139946100,"indexed_at_ns":1787726729123858800,"word_count":1093},"backend/src/blogs/dto/create-blog.dto.ts":{"size":30,"mtime_ns":1783764561671557000,"indexed_at_ns":1787726729130858800,"word_count":4},"backend/src/blogs/dto/update-blog.dto.ts":{"size":164,"mtime_ns":1783764561673712400,"indexed_at_ns":1787726729137866600,"word_count":18},"backend/src/blogs/entities/blog.entity.ts":{"size":21,"mtime_ns":1783764561675101100,"indexed_at_ns":1787726729143865200,"word_count":4},"backend/src/cms/cms.controller.ts":{"size":3521,"mtime_ns":1785327951196913100,"indexed_at_ns":1787726729149268700,"word_count":280},"backend/src/cms/cms.module.ts":{"size":342,"mtime_ns":1785148022206298000,"indexed_at_ns":1787726729156414600,"word_count":38},"backend/src/cms/cms.service.ts":{"size":2501,"mtime_ns":1785327951197940400,"indexed_at_ns":1787726729162441900,"word_count":256},"backend/src/cms/dto/cms.dto.ts":{"size":2357,"mtime_ns":1785327951199995500,"indexed_at_ns":1787726729169380900,"word_count":203},"backend/src/common/decorators/roles.decorator.ts":{"size":157,"mtime_ns":1786799852220522400,"indexed_at_ns":1787726729174954700,"word_count":20},"backend/src/common/dto/pagination.dto.ts":{"size":1188,"mtime_ns":1785327951201988900,"indexed_at_ns":1787726729180990600,"word_count":121},"backend/src/common/env.validation.ts":{"size":1162,"mtime_ns":1787645037370646800,"indexed_at_ns":1787726729187990800,"word_count":109},"backend/src/common/filters/http-exception.filter.ts":{"size":4993,"mtime_ns":1787645037371739300,"indexed_at_ns":1787726729194260200,"word_count":500},"backend/src/common/filters/prisma-exception.filter.ts":{"size":2862,"mtime_ns":1787645037372254700,"indexed_at_ns":1787726729201199300,"word_count":280},"backend/src/common/guards/roles.guard.spec.ts":{"size":2426,"mtime_ns":1786799852225556800,"indexed_at_ns":1787726729208239500,"word_count":223},"backend/src/common/guards/roles.guard.ts":{"size":1285,"mtime_ns":1786799852226565200,"indexed_at_ns":1787726729214246900,"word_count":120},"backend/src/common/interceptors/decimal.interceptor.spec.ts":{"size":1677,"mtime_ns":1786799852227565700,"indexed_at_ns":1787726729220254800,"word_count":164},"backend/src/common/interceptors/decimal.interceptor.ts":{"size":1094,"mtime_ns":1786799852227565700,"indexed_at_ns":1787726729226825500,"word_count":118},"backend/src/common/metrics.controller.ts":{"size":2093,"mtime_ns":1786799852229073100,"indexed_at_ns":1787726729232447400,"word_count":206},"backend/src/common/revalidation/revalidation.module.ts":{"size":240,"mtime_ns":1787579631769582300,"indexed_at_ns":1787726729239087900,"word_count":24},"backend/src/common/revalidation/revalidation.service.ts":{"size":3410,"mtime_ns":1787579631770587500,"indexed_at_ns":1787726729246057400,"word_count":272},"backend/src/common/schemas/error-response.schema.ts":{"size":1680,"mtime_ns":1785330913144701500,"indexed_at_ns":1787726729252104800,"word_count":162},"backend/src/common/schemas/paginated-response.schema.ts":{"size":1108,"mtime_ns":1786799852230082200,"indexed_at_ns":1787726729258104400,"word_count":110},"backend/src/common/services/sms.service.ts":{"size":31964,"mtime_ns":1787072106396073600,"indexed_at_ns":1787726729265265900,"word_count":3028},"backend/src/common/sms.module.ts":{"size":204,"mtime_ns":1785330750996125100,"indexed_at_ns":1787726729274176800,"word_count":24},"backend/src/common/utils/phone.utils.ts":{"size":1089,"mtime_ns":1786883225801396000,"indexed_at_ns":1787726729280624000,"word_count":149},"backend/src/contact/contact.controller.ts":{"size":2088,"mtime_ns":1787645037373264000,"indexed_at_ns":1787726729286660600,"word_count":192},"backend/src/contact/contact.module.ts":{"size":365,"mtime_ns":1786799852236599000,"indexed_at_ns":1787726729292806800,"word_count":38},"backend/src/contact/contact.service.ts":{"size":4690,"mtime_ns":1787127978233104000,"indexed_at_ns":1787726729298791600,"word_count":451},"backend/src/doctors/doctors.controller.ts":{"size":1583,"mtime_ns":1787148092311692900,"indexed_at_ns":1787726729304627000,"word_count":148},"backend/src/doctors/doctors.module.ts":{"size":374,"mtime_ns":1786971396035575100,"indexed_at_ns":1787726729310709500,"word_count":38},"backend/src/doctors/doctors.service.ts":{"size":2336,"mtime_ns":1787148092312693100,"indexed_at_ns":1787726729316710800,"word_count":266},"backend/src/doctors/dto/doctor-query.dto.ts":{"size":1009,"mtime_ns":1787148092314699500,"indexed_at_ns":1787726729323711800,"word_count":116},"backend/src/faq/faq.controller.ts":{"size":2210,"mtime_ns":1787148092316694700,"indexed_at_ns":1787726729329710800,"word_count":199},"backend/src/faq/faq.module.ts":{"size":234,"mtime_ns":1787148092316694700,"indexed_at_ns":1787726729335913700,"word_count":28},"backend/src/faq/faq.service.ts":{"size":1541,"mtime_ns":1787148092319911700,"indexed_at_ns":1787726729341879200,"word_count":184},"backend/src/home/dto/create-home.dto.ts":{"size":30,"mtime_ns":1783764561682365300,"indexed_at_ns":1787726729348678200,"word_count":4},"backend/src/home/dto/update-home.dto.ts":{"size":164,"mtime_ns":1783764561682365300,"indexed_at_ns":1787726729354360200,"word_count":18},"backend/src/home/entities/home.entity.ts":{"size":21,"mtime_ns":1783764561684884800,"indexed_at_ns":1787726729360332100,"word_count":4},"backend/src/home/home.controller.ts":{"size":757,"mtime_ns":1785327951212087300,"indexed_at_ns":1787726729365692000,"word_count":69},"backend/src/home/home.module.ts":{"size":241,"mtime_ns":1783764561687108000,"indexed_at_ns":1787726729372815400,"word_count":28},"backend/src/home/home.service.ts":{"size":1372,"mtime_ns":1785327951214087300,"indexed_at_ns":1787726729378370200,"word_count":144},"backend/src/ingredients/ingredients.controller.ts":{"size":1952,"mtime_ns":1786799852237596500,"indexed_at_ns":1787726729384776300,"word_count":165},"backend/src/ingredients/ingredients.module.ts":{"size":406,"mtime_ns":1786799852238596500,"indexed_at_ns":1787726729391513400,"word_count":38},"backend/src/ingredients/ingredients.service.ts":{"size":1526,"mtime_ns":1786799852240108300,"indexed_at_ns":1787726729397517700,"word_count":162},"backend/src/main.ts":{"size":4089,"mtime_ns":1787645037374260500,"indexed_at_ns":1787726729404030400,"word_count":362},"backend/src/menu/menu.controller.ts":{"size":2920,"mtime_ns":1787564348681948800,"indexed_at_ns":1787726729410971900,"word_count":265},"backend/src/menu/menu.module.ts":{"size":267,"mtime_ns":1787148092323869500,"indexed_at_ns":1787726729418641500,"word_count":30},"backend/src/menu/menu.service.ts":{"size":7799,"mtime_ns":1787564362262172600,"indexed_at_ns":1787726729424116700,"word_count":799},"backend/src/orders/dto/create-order.dto.ts":{"size":1899,"mtime_ns":1785327951218626100,"indexed_at_ns":1787726729430534500,"word_count":162},"backend/src/orders/orders.controller.spec.ts":{"size":1910,"mtime_ns":1785327951219627700,"indexed_at_ns":1787726729437590400,"word_count":194},"backend/src/orders/orders.controller.ts":{"size":5930,"mtime_ns":1787072106398077200,"indexed_at_ns":1787726729444156500,"word_count":517},"backend/src/orders/orders.module.ts":{"size":255,"mtime_ns":1783764561697598200,"indexed_at_ns":1787726729449863600,"word_count":28},"backend/src/orders/orders.service.spec.ts":{"size":5121,"mtime_ns":1787726718499536400,"indexed_at_ns":1787726729455899000,"word_count":493},"backend/src/orders/orders.service.ts":{"size":17203,"mtime_ns":1787127978236103400,"indexed_at_ns":1787726729460936600,"word_count":1611},"backend/src/payment/dto/admin-transaction-filter.dto.ts":{"size":2060,"mtime_ns":1787072106401590500,"indexed_at_ns":1787726729467565100,"word_count":191},"backend/src/payment/dto/ebank-checkout.dto.ts":{"size":1378,"mtime_ns":1787394001603461200,"indexed_at_ns":1787726729473467400,"word_count":118},"backend/src/payment/dto/initiate-payment.dto.ts":{"size":775,"mtime_ns":1786870552874246400,"indexed_at_ns":1787726729479997200,"word_count":69},"backend/src/payment/dto/verify-payment.dto.ts":{"size":1421,"mtime_ns":1786894580126857900,"indexed_at_ns":1787726729487007600,"word_count":126},"backend/src/payment/interfaces/payment-gateway.interface.ts":{"size":1330,"mtime_ns":1786870552876751100,"indexed_at_ns":1787726729493007700,"word_count":128},"backend/src/payment/payment.controller.ts":{"size":19167,"mtime_ns":1787564362263176000,"indexed_at_ns":1787726729498694600,"word_count":1574},"backend/src/payment/payment.module.ts":{"size":608,"mtime_ns":1787394001605617900,"indexed_at_ns":1787726729505386600,"word_count":61},"backend/src/payment/payment.service.ts":{"size":30818,"mtime_ns":1787564362264174300,"indexed_at_ns":1787726729511641700,"word_count":2752},"backend/src/payment/zibal-ebank.service.ts":{"size":10087,"mtime_ns":1787461919452306600,"indexed_at_ns":1787726729518640700,"word_count":1006},"backend/src/payment/zibal.service.ts":{"size":25781,"mtime_ns":1787461919453309100,"indexed_at_ns":1787726729525641200,"word_count":2490},"backend/src/pets/dto/create-health-log.dto.ts":{"size":761,"mtime_ns":1785327951229443300,"indexed_at_ns":1787726729532595600,"word_count":69},"backend/src/pets/dto/create-pet.dto.ts":{"size":1143,"mtime_ns":1785327951230948800,"indexed_at_ns":1787726729539689500,"word_count":104},"backend/src/pets/dto/create-reminder.dto.ts":{"size":810,"mtime_ns":1785327951231958200,"indexed_at_ns":1787726729545689700,"word_count":71},"backend/src/pets/dto/update-pet.dto.ts":{"size":160,"mtime_ns":1783764561709557500,"indexed_at_ns":1787726729551201600,"word_count":18},"backend/src/pets/pets.controller.spec.ts":{"size":2544,"mtime_ns":1786799852248118800,"indexed_at_ns":1787726729556953000,"word_count":269},"backend/src/pets/pets.controller.ts":{"size":8427,"mtime_ns":1787461919454308900,"indexed_at_ns":1787726729563595800,"word_count":781},"backend/src/pets/pets.module.ts":{"size":241,"mtime_ns":1783764561714469800,"indexed_at_ns":1787726729570135400,"word_count":28},"backend/src/pets/pets.service.spec.ts":{"size":2961,"mtime_ns":1785327951238208000,"indexed_at_ns":1787726729576202600,"word_count":272},"backend/src/pets/pets.service.ts":{"size":6978,"mtime_ns":1786799852250117400,"indexed_at_ns":1787726729581853500,"word_count":710},"backend/src/prescriptions/prescriptions.controller.ts":{"size":2356,"mtime_ns":1786799852253748300,"indexed_at_ns":1787726729589105100,"word_count":232},"backend/src/prescriptions/prescriptions.module.ts":{"size":495,"mtime_ns":1786954681815809200,"indexed_at_ns":1787726729595362900,"word_count":45},"backend/src/prescriptions/prescriptions.service.ts":{"size":4666,"mtime_ns":1787072106408779000,"indexed_at_ns":1787726729601839800,"word_count":498},"backend/src/prisma/prisma.module.ts":{"size":210,"mtime_ns":1783764561718199800,"indexed_at_ns":1787726729608494400,"word_count":24},"backend/src/prisma/prisma.service.ts":{"size":4250,"mtime_ns":1787640806107781000,"indexed_at_ns":1787726729614499200,"word_count":425},"backend/src/products/dto/get-products.dto.ts":{"size":1320,"mtime_ns":1786799852260271600,"indexed_at_ns":1787726729621151100,"word_count":115},"backend/src/products/products.controller.spec.ts":{"size":1863,"mtime_ns":1785327951243280800,"indexed_at_ns":1787726729629866100,"word_count":166},"backend/src/products/products.controller.ts":{"size":2445,"mtime_ns":1786799852261281700,"indexed_at_ns":1787726729636530800,"word_count":209},"backend/src/products/products.module.ts":{"size":269,"mtime_ns":1783764561723672400,"indexed_at_ns":1787726729642530900,"word_count":28},"backend/src/products/products.service.spec.ts":{"size":1860,"mtime_ns":1787726718500534100,"indexed_at_ns":1787726729648503800,"word_count":175},"backend/src/products/products.service.ts":{"size":7493,"mtime_ns":1787579631773583700,"indexed_at_ns":1787726729653656200,"word_count":762},"backend/src/redis/redis.module.ts":{"size":205,"mtime_ns":1783764561727662100,"indexed_at_ns":1787726729660667100,"word_count":24},"backend/src/redis/redis.service.spec.ts":{"size":1525,"mtime_ns":1783764561728672300,"indexed_at_ns":1787726729667111900,"word_count":145},"backend/src/redis/redis.service.ts":{"size":1202,"mtime_ns":1786895436211834600,"indexed_at_ns":1787726729673119800,"word_count":132},"backend/src/reviews/dto/create-review.dto.ts":{"size":949,"mtime_ns":1787072106414306300,"indexed_at_ns":1787726729680066000,"word_count":92},"backend/src/reviews/dto/update-review.dto.ts":{"size":534,"mtime_ns":1787072106415805700,"indexed_at_ns":1787726729686118000,"word_count":53},"backend/src/reviews/reviews.controller.ts":{"size":3318,"mtime_ns":1787645037375268800,"indexed_at_ns":1787726729692109200,"word_count":329},"backend/src/reviews/reviews.module.ts":{"size":374,"mtime_ns":1786944769517310800,"indexed_at_ns":1787726729699837600,"word_count":38},"backend/src/reviews/reviews.service.ts":{"size":7013,"mtime_ns":1787579631775586600,"indexed_at_ns":1787726729706361600,"word_count":742},"backend/src/seo/seo.controller.ts":{"size":904,"mtime_ns":1785327951247283200,"indexed_at_ns":1787726729713027000,"word_count":85},"backend/src/seo/seo.module.ts":{"size":342,"mtime_ns":1785148022268580900,"indexed_at_ns":1787726729720026400,"word_count":38},"backend/src/seo/seo.service.ts":{"size":2023,"mtime_ns":1787127978249385200,"indexed_at_ns":1787726729726026200,"word_count":182},"backend/src/settings/default-ui-texts.ts":{"size":19291,"mtime_ns":1787564362266172200,"indexed_at_ns":1787726729732056900,"word_count":1538},"backend/src/settings/dto/sms-log-query.dto.ts":{"size":1343,"mtime_ns":1787072106421339300,"indexed_at_ns":1787726729739063400,"word_count":125},"backend/src/settings/settings.controller.spec.ts":{"size":2855,"mtime_ns":1787726718501534000,"indexed_at_ns":1787726729746092700,"word_count":239},"backend/src/settings/settings.controller.ts":{"size":8977,"mtime_ns":1787072106423347900,"indexed_at_ns":1787726729751701000,"word_count":708},"backend/src/settings/settings.module.ts":{"size":382,"mtime_ns":1783764561735515700,"indexed_at_ns":1787726729758697700,"word_count":38},"backend/src/settings/settings.service.spec.ts":{"size":3028,"mtime_ns":1787726718501534000,"indexed_at_ns":1787726729764272100,"word_count":279},"backend/src/settings/settings.service.ts":{"size":20225,"mtime_ns":1787461919455310100,"indexed_at_ns":1787726729769779600,"word_count":1589},"backend/src/smart-advisor/smart-advisor.controller.ts":{"size":1821,"mtime_ns":1786799852275441500,"indexed_at_ns":1787726729775867900,"word_count":152},"backend/src/smart-advisor/smart-advisor.module.ts":{"size":416,"mtime_ns":1786799852276441700,"indexed_at_ns":1787726729782878800,"word_count":38},"backend/src/smart-advisor/smart-advisor.service.ts":{"size":1241,"mtime_ns":1786799852277440400,"indexed_at_ns":1787726729788878100,"word_count":131},"backend/src/testimonials/testimonials.controller.ts":{"size":1905,"mtime_ns":1787148092329786500,"indexed_at_ns":1787726729795446100,"word_count":160},"backend/src/testimonials/testimonials.module.ts":{"size":414,"mtime_ns":1786799852279441800,"indexed_at_ns":1787726729801924900,"word_count":38},"backend/src/testimonials/testimonials.service.ts":{"size":1268,"mtime_ns":1787148092332501600,"indexed_at_ns":1787726729810241500,"word_count":140},"backend/src/tickets/dto/create-ticket.dto.ts":{"size":2374,"mtime_ns":1787072106430874900,"indexed_at_ns":1787726729816278100,"word_count":201},"backend/src/tickets/dto/ticket-query.dto.ts":{"size":1103,"mtime_ns":1787072106431871400,"indexed_at_ns":1787726729824281400,"word_count":106},"backend/src/tickets/tickets.controller.ts":{"size":3114,"mtime_ns":1787072106433878000,"indexed_at_ns":1787726729829734800,"word_count":293},"backend/src/tickets/tickets.module.ts":{"size":374,"mtime_ns":1786890779322296800,"indexed_at_ns":1787726729836741100,"word_count":38},"backend/src/tickets/tickets.service.ts":{"size":7310,"mtime_ns":1787072106434874300,"indexed_at_ns":1787726729844342200,"word_count":781},"backend/src/users/dto/address.dto.ts":{"size":1098,"mtime_ns":1783764561739871500,"indexed_at_ns":1787726729851866000,"word_count":99},"backend/src/users/dto/update-profile.dto.ts":{"size":1068,"mtime_ns":1786885876805472100,"indexed_at_ns":1787726729858986800,"word_count":98},"backend/src/users/users.controller.spec.ts":{"size":3333,"mtime_ns":1785327951253796500,"indexed_at_ns":1787726729865019600,"word_count":322},"backend/src/users/users.controller.ts":{"size":6854,"mtime_ns":1786799852282481500,"indexed_at_ns":1787726729871026300,"word_count":590},"backend/src/users/users.module.ts":{"size":275,"mtime_ns":1783764561748154400,"indexed_at_ns":1787726729878590100,"word_count":30},"backend/src/users/users.service.spec.ts":{"size":3844,"mtime_ns":1787726718502533700,"indexed_at_ns":1787726729883561300,"word_count":320},"backend/src/users/users.service.ts":{"size":8207,"mtime_ns":1787127978253040800,"indexed_at_ns":1787726729889415400,"word_count":782},"backend/src/videos/dto/create-video.dto.ts":{"size":1573,"mtime_ns":1786971396042093900,"indexed_at_ns":1787726729895417800,"word_count":127},"backend/src/videos/dto/get-videos-query.dto.ts":{"size":643,"mtime_ns":1786799852287643500,"indexed_at_ns":1787726729903314300,"word_count":77},"backend/src/videos/videos.controller.ts":{"size":1924,"mtime_ns":1786799852291153100,"indexed_at_ns":1787726729909344900,"word_count":173},"backend/src/videos/videos.module.ts":{"size":283,"mtime_ns":1785148022306583700,"indexed_at_ns":1787726729915346300,"word_count":30},"backend/src/videos/videos.service.ts":{"size":2732,"mtime_ns":1786971396047872400,"indexed_at_ns":1787726729921804200,"word_count":290},"backend/src/wholesale/dto/wholesale-apply.dto.ts":{"size":739,"mtime_ns":1785148022317622300,"indexed_at_ns":1787726729928834600,"word_count":66},"backend/src/wholesale/wholesale.controller.ts":{"size":2037,"mtime_ns":1786799852294177000,"indexed_at_ns":1787726729934839900,"word_count":160},"backend/src/wholesale/wholesale.module.ts":{"size":390,"mtime_ns":1785148022328746300,"indexed_at_ns":1787726729941840900,"word_count":38},"backend/src/wholesale/wholesale.service.ts":{"size":2627,"mtime_ns":1785330913149233300,"indexed_at_ns":1787726729946807300,"word_count":266},"backend/src/wiki/dto/create-wiki.dto.ts":{"size":30,"mtime_ns":1783764561752933200,"indexed_at_ns":1787726729953896900,"word_count":4},"backend/src/wiki/dto/update-wiki.dto.ts":{"size":164,"mtime_ns":1783764561753945200,"indexed_at_ns":1787726729959896600,"word_count":18},"backend/src/wiki/entities/wiki.entity.ts":{"size":21,"mtime_ns":1783764561755039400,"indexed_at_ns":1787726729966410900,"word_count":4},"backend/src/wiki/wiki.controller.ts":{"size":1219,"mtime_ns":1785327951272850400,"indexed_at_ns":1787726729972418600,"word_count":110},"backend/src/wiki/wiki.module.ts":{"size":241,"mtime_ns":1783764561756925000,"indexed_at_ns":1787726729978966700,"word_count":28},"backend/src/wiki/wiki.service.ts":{"size":1562,"mtime_ns":1786799852295173000,"indexed_at_ns":1787726729985599000,"word_count":174},"backend/test/app-audit-verification.e2e-spec.d.ts":{"size":11,"mtime_ns":1787073059109005600,"indexed_at_ns":1787726729992165500,"word_count":2},"backend/test/app-audit-verification.e2e-spec.js":{"size":8429,"mtime_ns":1787073059110516300,"indexed_at_ns":1787726729998303900,"word_count":714},"backend/test/app-audit-verification.e2e-spec.ts":{"size":6464,"mtime_ns":1786799852296174700,"indexed_at_ns":1787726730009127800,"word_count":569},"backend/test/app.e2e-spec.d.ts":{"size":11,"mtime_ns":1787073059112563300,"indexed_at_ns":1787726730014789500,"word_count":2},"backend/test/app.e2e-spec.js":{"size":1228,"mtime_ns":1787073059113572500,"indexed_at_ns":1787726730020887300,"word_count":97},"backend/test/app.e2e-spec.ts":{"size":981,"mtime_ns":1786799852297175000,"indexed_at_ns":1787726730030564200,"word_count":83},"backend/test/jest-e2e.json":{"size":183,"mtime_ns":1783764561762911800,"indexed_at_ns":1787726739771257900,"word_count":17,"hashes":{"backend/test/jest-e2e.json":"94091f560937212ad7027afcb77e62e6ac79e3e4cb401c3a16a56e7be4cac721"}},"backend/tsconfig.build.json":{"size":107,"mtime_ns":1783764561763447000,"indexed_at_ns":1787726739772258300,"word_count":10,"hashes":{"backend/tsconfig.build.json":"1f47c7dc3c8b5a15558654f45f21e0f553acc1680046f09dc24428e8538c4f9d"}},"backend/tsconfig.json":{"size":785,"mtime_ns":1787073059116167600,"indexed_at_ns":1787726739773257700,"word_count":56,"hashes":{"backend/tsconfig.json":"9b20fbca537d1e55f3a113fcee6683f0eb1f06752d3c8c52edf26eef8e2053f2"}},"backend/uploads/1781288429353-508765350.jpg":{"size":110246,"mtime_ns":1783764561766257000,"indexed_at_ns":1787726730057371500,"word_count":3882},"canina.md":{"size":21919,"mtime_ns":1786885876809472400,"indexed_at_ns":1787726730067353200,"word_count":1983},"canina.pdf":{"size":2858373,"mtime_ns":1785148022370811500,"indexed_at_ns":1787726730072352400,"word_count":0},"docker-compose.yml":{"size":2193,"mtime_ns":1786883225811564200,"indexed_at_ns":1787726730078567700,"word_count":127},"docs/01-introduction.md":{"size":5537,"mtime_ns":1786885876812474900,"indexed_at_ns":1787726730085575100,"word_count":523},"docs/02-user-guide.md":{"size":4303,"mtime_ns":1786885876813985900,"indexed_at_ns":1787726730091574900,"word_count":422},"docs/03-developer-guide.md":{"size":6717,"mtime_ns":1783764561771660500,"indexed_at_ns":1787726730099089600,"word_count":678},"docs/04-setup-and-deployment.md":{"size":4005,"mtime_ns":1787127978256847800,"indexed_at_ns":1787726739861230800,"word_count":425,"hashes":{"docs/04-setup-and-deployment.md":"aee712cb19a8475be75f8073f7e39870e704923a561ffb9f4ce4b31b1d4bd830"}},"docs/05-devops-and-monitoring.md":{"size":3590,"mtime_ns":1783764561774446100,"indexed_at_ns":1787726739862230700,"word_count":374,"hashes":{"docs/05-devops-and-monitoring.md":"53f1f45bbbdd3cf81cb4bc082ef4e49f506627f10f581d3c4b835028d02b5421"}},"docs/06-testing.md":{"size":4214,"mtime_ns":1783764561774967500,"indexed_at_ns":1787726739862740900,"word_count":457,"hashes":{"docs/06-testing.md":"69d50bd5e233f030d8076b55b69599cee201e1c393b7ee1beeb495c304fd4bd3"}},"docs/README.md":{"size":2740,"mtime_ns":1786885876816996700,"indexed_at_ns":1787726739864750200,"word_count":253,"hashes":{"docs/readme.md":"1b7ffde4b290e742802fc554f2dd2f7a2316fe25bd1cd328421ffa823b36f40f"}},"docs/audit/00-repository-map.md":{"size":3171,"mtime_ns":1786799852298174200,"indexed_at_ns":1787726739865750000,"word_count":351,"hashes":{"docs/audit/00-repository-map.md":"dde4a63c991d0f469086a147df03b97d8370cd75fa19cc83af1199f267d7bc55"}},"docs/audit/01-system-discovery.md":{"size":3790,"mtime_ns":1786799852299174400,"indexed_at_ns":1787726739866750300,"word_count":467,"hashes":{"docs/audit/01-system-discovery.md":"6c91253cac025506db71adea33a054f88f4c367ba81fc3cb1b85c2bdcfec5c70"}},"docs/audit/02-audit-plan.md":{"size":5058,"mtime_ns":1786799852300175400,"indexed_at_ns":1787726739867750300,"word_count":530,"hashes":{"docs/audit/02-audit-plan.md":"b623d8f8c2b8a14c1ddca1ad956cd8afc9203f7a94eda8e63fd608bc8e9164d1"}},"docs/audit/03-baseline-command-plan.md":{"size":4904,"mtime_ns":1786799852300175400,"indexed_at_ns":1787726739868750300,"word_count":735,"hashes":{"docs/audit/03-baseline-command-plan.md":"fcf49beae52c69d7e9cf85967f028052fa1a78eaae5a2bb9b18072b0273e80e1"}},"docs/audit/04-open-questions.md":{"size":1690,"mtime_ns":1786799852301682100,"indexed_at_ns":1787726739869750100,"word_count":224,"hashes":{"docs/audit/04-open-questions.md":"02fbd51a9131da0b12122a5280cc6f842c299b436a72b117e2263f011b9ebf9c"}},"docs/audit/05-architectural-audit.md":{"size":4884,"mtime_ns":1786799852302689800,"indexed_at_ns":1787726730169702300,"word_count":560},"docs/audit/06-storefront-audit.md":{"size":4191,"mtime_ns":1786799852303691400,"indexed_at_ns":1787726739871758800,"word_count":520,"hashes":{"docs/audit/06-storefront-audit.md":"1e2f2d9d867dc553f503ef91b3bd60310202225da12bc7d324e192f4e15d8c38"}},"docs/audit/07-backend-audit.md":{"size":5037,"mtime_ns":1786799852304689900,"indexed_at_ns":1787726739872758800,"word_count":581,"hashes":{"docs/audit/07-backend-audit.md":"0436a967b82026334bf45c9ca677d1e79ce688681bea4dc06a7fd19e2d5a2129"}},"docs/audit/08-admin-features-audit.md":{"size":4222,"mtime_ns":1786799852305951400,"indexed_at_ns":1787726739873758600,"word_count":479,"hashes":{"docs/audit/08-admin-features-audit.md":"dda5b0bae4f843a51274269dcb91d8b65db2f2917d336d511790da4718b05b8d"}},"docs/audit/09-database-audit.md":{"size":4126,"mtime_ns":1786799852306969500,"indexed_at_ns":1787726739874758900,"word_count":521,"hashes":{"docs/audit/09-database-audit.md":"d4f82b84ae6c1899ab4da1310414d993d9c23dcd2759120fbe551f5b8da95a08"}},"docs/audit/10-security-audit.md":{"size":5560,"mtime_ns":1786799852307952600,"indexed_at_ns":1787726730204465900,"word_count":678},"docs/audit/11-code-quality-audit.md":{"size":3379,"mtime_ns":1786799852308957000,"indexed_at_ns":1787726739875758500,"word_count":419,"hashes":{"docs/audit/11-code-quality-audit.md":"b6b9a4845e0bd5674d897c08f5451f8cab4df22722826f7c9d55ca19b94d88da"}},"docs/audit/12-testing-audit.md":{"size":4106,"mtime_ns":1786799852309952600,"indexed_at_ns":1787726739877758700,"word_count":486,"hashes":{"docs/audit/12-testing-audit.md":"8bdf2058520a88de4d08c0635999de8f79fdab83055ef560ca3a865026b6450a"}},"docs/audit/13-devops-audit.md":{"size":3435,"mtime_ns":1786799852310953800,"indexed_at_ns":1787726739878758700,"word_count":440,"hashes":{"docs/audit/13-devops-audit.md":"d21daac201fcfc3a0e27c27348806f3f5d2790071578dcb98e7869cd6e9ec8a9"}},"docs/audit/14-documentation-audit.md":{"size":3311,"mtime_ns":1786799852311952200,"indexed_at_ns":1787726739879758400,"word_count":379,"hashes":{"docs/audit/14-documentation-audit.md":"e64be175bd632a05e37be823621eb8a8f13bdb74887d10f5f20887d41cef5c62"}},"docs/audit/15-raw-findings-index.json":{"size":9909,"mtime_ns":1786799852313066900,"indexed_at_ns":1787726739774686100,"word_count":817,"hashes":{"docs/audit/15-raw-findings-index.json":"3c1e582431f5f25edd2c38285c9d59f83c83d5348eaf0ced91d6e7c94a9afb6d"}},"docs/audit/16-deep-audit-summary.md":{"size":3111,"mtime_ns":1786799852313066900,"indexed_at_ns":1787726739880758700,"word_count":393,"hashes":{"docs/audit/16-deep-audit-summary.md":"8ea08de6ac54dddd9da6de934bc850bb31ab7e3c5470059d02d7f84dd120a0e4"}},"docs/audit/17-source-coverage-manifest.json":{"size":128714,"mtime_ns":1786799852315065000,"indexed_at_ns":1787726739775692000,"word_count":7827,"hashes":{"docs/audit/17-source-coverage-manifest.json":"834e6c341db760439d2e7a9c17531b03c17151ab0f2f16b92aac8a350bcae51d"}},"docs/audit/18-compiler-diagnostic-dispositions.md":{"size":1961,"mtime_ns":1786799852315065000,"indexed_at_ns":1787726739881758500,"word_count":285,"hashes":{"docs/audit/18-compiler-diagnostic-dispositions.md":"246b9164725e89c67c76f2305cd128f0c0f9bfdba46e45e0e958fe92ccdcda53"}},"docs/audit/19-finding-verification-report.md":{"size":5464,"mtime_ns":1786799852316064800,"indexed_at_ns":1787726739883758400,"word_count":753,"hashes":{"docs/audit/19-finding-verification-report.md":"1cd1bc37f9e76ba7e4d4ef82b8565def786abfeb159bc4d822e364e3f2ea694f"}},"docs/audit/20-verified-findings-index.json":{"size":21797,"mtime_ns":1786799852317071400,"indexed_at_ns":1787726739777692600,"word_count":1903,"hashes":{"docs/audit/20-verified-findings-index.json":"b20d0b140bd727faefde9f29aa4d787199dd386464030eecdf58e5a8ab629442"}},"docs/audit/21-phase2-quality-gate-summary.md":{"size":1706,"mtime_ns":1786799852318066000,"indexed_at_ns":1787726739883758400,"word_count":211,"hashes":{"docs/audit/21-phase2-quality-gate-summary.md":"1b117f866e73cd17c43e3a4e856584f03997a3c897d1de9afbd128ff8a86d09e"}},"docs/audit/22-tracked-first-party-files.txt":{"size":4452,"mtime_ns":1786799852319066000,"indexed_at_ns":1787726730289099900,"word_count":139},"docs/audit/23-untracked-first-party-files.txt":{"size":59,"mtime_ns":1786799852319066000,"indexed_at_ns":1787726730295099800,"word_count":7},"docs/audit/24-omitted-file-inspection-report.md":{"size":2462,"mtime_ns":1786799852320065700,"indexed_at_ns":1787726739885266400,"word_count":227,"hashes":{"docs/audit/24-omitted-file-inspection-report.md":"d4484eea65f1861b9b6a30813d2c233d947c2965a13ed5b399462b80ca9c1513"}},"docs/audit/25-reference-integrity-validation.json":{"size":1002,"mtime_ns":1786799852321571600,"indexed_at_ns":1787726739778692300,"word_count":82,"hashes":{"docs/audit/25-reference-integrity-validation.json":"31b900ed297325cabee3e0804809ecd4229f4427283e449f5d82951bb5ed7fde"}},"docs/audit/26-phase2-integrity-repair-report.md":{"size":3191,"mtime_ns":1786799852322091800,"indexed_at_ns":1787726739887276800,"word_count":385,"hashes":{"docs/audit/26-phase2-integrity-repair-report.md":"2b2f385705db6729fccedc63db0f5709afa23e08a80fc859fe0138b416356cd9"}},"docs/audit/27-all-tracked-repository-files.txt":{"size":4631,"mtime_ns":1786799852323099900,"indexed_at_ns":1787726730320693600,"word_count":148},"docs/audit/28-full-repository-classification.json":{"size":27913,"mtime_ns":1786799852324099500,"indexed_at_ns":1787726739779692400,"word_count":1782,"hashes":{"docs/audit/28-full-repository-classification.json":"bcb50229ceddb267c8839ee69c05f5e5c8c4460485c92849532bcf163c37faa8"}},"docs/audit/29-file-content-evidence.json":{"size":109095,"mtime_ns":1786799852325608100,"indexed_at_ns":1787726739781691000,"word_count":9098,"hashes":{"docs/audit/29-file-content-evidence.json":"c4696525e8ab3c252ff9b6b38d5882225e0a9016698111df28064edbe7bf5124"}},"docs/audit/30-compiler-diagnostics-index.json":{"size":3707,"mtime_ns":1786799852326617100,"indexed_at_ns":1787726739783194500,"word_count":324,"hashes":{"docs/audit/30-compiler-diagnostics-index.json":"85bd1a964e41cc5e615c7260be2beb54b49dd444da40d96ae31e2a33c1c6bc24"}},"docs/audit/31-module-audit-closure.md":{"size":7587,"mtime_ns":1786799852327616800,"indexed_at_ns":1787726739888276700,"word_count":709,"hashes":{"docs/audit/31-module-audit-closure.md":"a1c9d7902131d71cf87a072876cc309ac8dfc7cd6e1f33e9619ac12d99f685ba"}},"docs/audit/32-evidence-grade-validation.json":{"size":1613,"mtime_ns":1786799852328616800,"indexed_at_ns":1787726739784200700,"word_count":123,"hashes":{"docs/audit/32-evidence-grade-validation.json":"12ddcc21ff65a2aa76845935ebc0d8313c39991335356fbe3ae7cdd201251af5"}},"docs/audit/33-final-phase2-audit-closure.md":{"size":2535,"mtime_ns":1786799852328616800,"indexed_at_ns":1787726739889276900,"word_count":271,"hashes":{"docs/audit/33-final-phase2-audit-closure.md":"217cadb664c7f7d27f8f849ea1249dfd88d5398fd2af154fd385c80e4d559bb1"}},"docs/audit/34-repository-observations.json":{"size":594,"mtime_ns":1786799852329618700,"indexed_at_ns":1787726739785199000,"word_count":49,"hashes":{"docs/audit/34-repository-observations.json":"28ce67ed3f5bcc3e5c3c80d73a16a34d8053d570be0af62be8afaffbc9318a27"}},"docs/audit/35-semantic-review-ledger.json":{"size":99353,"mtime_ns":1786799852330616000,"indexed_at_ns":1787726739786706200,"word_count":6011,"hashes":{"docs/audit/35-semantic-review-ledger.json":"ac0529050e87efc9e2b5a6c5b3a2ce6379186b4b07f23d8ec9cebf214ff885ef"}},"docs/audit/36-mandatory-semantic-scope.json":{"size":7960,"mtime_ns":1786799852331617100,"indexed_at_ns":1787726739787707200,"word_count":638,"hashes":{"docs/audit/36-mandatory-semantic-scope.json":"af62db825dd527009b8d79a6edab6ab627fe55303d3f7fd1c2d8e5fab9a8760b"}},"docs/audit/ADR-AUTH-001.md":{"size":3274,"mtime_ns":1786799852332642700,"indexed_at_ns":1787726730388254300,"word_count":398},"docs/audit/CROSS_BOUNDARY_DEPENDENCIES.md":{"size":2146,"mtime_ns":1786799852332642700,"indexed_at_ns":1787726730394794200,"word_count":239},"docs/audit/FRONTEND_INTEGRATION_REQUIREMENTS.md":{"size":15307,"mtime_ns":1787127978258848200,"indexed_at_ns":1787726730402390500,"word_count":1579},"docs/audit/MASTER-TASK-BACKLOG.md":{"size":30107,"mtime_ns":1786799852335470200,"indexed_at_ns":1787726730410947100,"word_count":3510},"docs/audit/audit-state.json":{"size":4135,"mtime_ns":1786799852337382200,"indexed_at_ns":1787726739788704900,"word_count":267,"hashes":{"docs/audit/audit-state.json":"4b804494570a2812170cb8dab35d15da659f57d6e637652328725e956f7d98aa"}},"docs/audit/build_manifest.js":{"size":4060,"mtime_ns":1786799852338393200,"indexed_at_ns":1787726730421985600,"word_count":348},"docs/audit/frontend-route-map.md":{"size":2558,"mtime_ns":1786799852339389800,"indexed_at_ns":1787726730429495100,"word_count":329},"docs/audit/generate_classification.js":{"size":2186,"mtime_ns":1786799852339389800,"indexed_at_ns":1787726730434093300,"word_count":204},"docs/audit/generate_evidence.js":{"size":3098,"mtime_ns":1786799852340390100,"indexed_at_ns":1787726730440532500,"word_count":253},"docs/audit/generate_ledger.js":{"size":7648,"mtime_ns":1786799852341897300,"indexed_at_ns":1787726730446281100,"word_count":620},"docs/audit/generate_manifest.js":{"size":6357,"mtime_ns":1786799852341897300,"indexed_at_ns":1787726730452526800,"word_count":489},"docs/audit/master-task-backlog.json":{"size":22336,"mtime_ns":1786799852342906700,"indexed_at_ns":1787726739790706500,"word_count":2071,"hashes":{"docs/audit/master-task-backlog.json":"f1c994d971b4e58165ab9f74f8b69b97c07fe74005f64dc11badf5e287b5fd28"}},"docs/audit/phase3-execution-plan.md":{"size":6007,"mtime_ns":1786799852343952400,"indexed_at_ns":1787726730466602900,"word_count":736},"docs/audit/phase3-traceability-matrix.md":{"size":5237,"mtime_ns":1786799852344952800,"indexed_at_ns":1787726739890276800,"word_count":692,"hashes":{"docs/audit/phase3-traceability-matrix.md":"c46b1b09c5f6be7f54ba888652e69698b26d955a8e7c8e4fa19cda8729ee2f7b"}},"docs/audit/phase3.1-backlog-review.md":{"size":9737,"mtime_ns":1786799852345952800,"indexed_at_ns":1787726739891276700,"word_count":1202,"hashes":{"docs/audit/phase3.1-backlog-review.md":"021895bb0b90dd75935ebe0317d3198a2c448ccdd6861b1302cc29735f48da82"}},"docs/audit/phase3.1-change-log.md":{"size":3756,"mtime_ns":1786799852346954800,"indexed_at_ns":1787726739893276700,"word_count":451,"hashes":{"docs/audit/phase3.1-change-log.md":"093d244c2788ead47c69e3068ccf66930ba52e04430bdba87020cb4a4edcb817"}},"docs/audit/phase3.2-change-log.md":{"size":8272,"mtime_ns":1786799852347952200,"indexed_at_ns":1787726739894276600,"word_count":930,"hashes":{"docs/audit/phase3.2-change-log.md":"00bff98e2ae2ef50c4daf265d5f34469f21c244b6dca88b70e1f9ffa17a71d83"}},"docs/audit/phase3.2-implementation-readiness.md":{"size":4694,"mtime_ns":1786799852347952200,"indexed_at_ns":1787726739895276700,"word_count":517,"hashes":{"docs/audit/phase3.2-implementation-readiness.md":"9f1e0335fdc0fa2db0fd5ceaa97e50be85d04bc1ad5d3db1ef74e85de97f71a6"}},"docs/audit/rebuild_honest_ledger.js":{"size":6113,"mtime_ns":1786799852348952900,"indexed_at_ns":1787726730506440800,"word_count":559},"docs/audit/sync_honest_manifest.js":{"size":1213,"mtime_ns":1786799852349953100,"indexed_at_ns":1787726730513042200,"word_count":75},"docs/audit/sync_manifest.js":{"size":997,"mtime_ns":1786799852350953300,"indexed_at_ns":1787726730519090300,"word_count":62},"docs/audit/validate_evidence_grade.js":{"size":6141,"mtime_ns":1786799852351954100,"indexed_at_ns":1787726730524859000,"word_count":526},"docs/audit/validate_integrity.js":{"size":3408,"mtime_ns":1786799852352952400,"indexed_at_ns":1787726730530859600,"word_count":284},"docs/backlog.md":{"size":26175,"mtime_ns":1786799852356021600,"indexed_at_ns":1787726730538035500,"word_count":2834},"frontend/admin-panel/README.md":{"size":2425,"mtime_ns":1783764561778952800,"indexed_at_ns":1787726739896276700,"word_count":212,"hashes":{"frontend/admin-panel/readme.md":"3945c052249ebd020b013303d5921815b52d847bd36c748a03bfdc8eb2a390b8"}},"frontend/admin-panel/eslint.config.js":{"size":906,"mtime_ns":1787148092334501700,"indexed_at_ns":1787726730554130000,"word_count":69},"frontend/admin-panel/index.html":{"size":363,"mtime_ns":1783764561780558500,"indexed_at_ns":1787726730559871600,"word_count":28},"frontend/admin-panel/package.json":{"size":1072,"mtime_ns":1785570791953119000,"indexed_at_ns":1787726739792704600,"word_count":84,"hashes":{"frontend/admin-panel/package.json":"6d61fb108392e86320c75b42e69ba7138bdc47bba4883fafbeb6e661cc5f51e4"}},"frontend/admin-panel/postcss.config.js":{"size":91,"mtime_ns":1783764561796281900,"indexed_at_ns":1787726730571159000,"word_count":11},"frontend/admin-panel/public/favicon.svg":{"size":9522,"mtime_ns":1783764561797801500,"indexed_at_ns":1787726730577396200,"word_count":491},"frontend/admin-panel/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856792435855000,"indexed_at_ns":1787726730602607800,"word_count":15},"frontend/admin-panel/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856792445365000,"indexed_at_ns":1787726730626154600,"word_count":15},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856792454604400,"indexed_at_ns":1787726739897276800,"word_count":1077,"hashes":{"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/changelog.md":"4003fe6a71221e735897cfe03ac11bd59ef9951572007763151bf95663256a3d"}},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/README.md":{"size":4136,"mtime_ns":1783856792502503100,"indexed_at_ns":1787726739898786800,"word_count":366,"hashes":{"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/readme.md":"880beb9c92fd527a098de27bc779b6891a36af98ae994f506a64be199ed50392"}},"frontend/admin-panel/public/fonts/sahel-font-v3.4.0/sample-variable.gif":{"size":236102,"mtime_ns":1783856792546496500,"indexed_at_ns":1787726731162750800,"word_count":10881},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856792548005600,"indexed_at_ns":1787726739900396600,"word_count":951,"hashes":{"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/changelog.md":"a735e1b29ad9d3361a0d1ecfd5c1f2f78c200a272918606decc377c469944321"}},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/README.md":{"size":3696,"mtime_ns":1783856792595155200,"indexed_at_ns":1787726739901406500,"word_count":283,"hashes":{"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/readme.md":"3b6e2d78372a72b67e339bfd7331d408f43245840749d2f46df5c356a208fbfd"}},"frontend/admin-panel/public/fonts/shabnam-font-v5.0.1/sample.png":{"size":85019,"mtime_ns":1783856792645667900,"indexed_at_ns":1787726731663450200,"word_count":2615},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856792646666000,"indexed_at_ns":1787726731673001900,"word_count":55},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856792647671700,"indexed_at_ns":1787726739903406700,"word_count":5086,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/changelog.md":"5207a2a148ccfd0338342325a39d9b5b2d39514429c93e0aedf68b21f23fd71e"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/OFL.txt":{"size":4391,"mtime_ns":1783856792648669800,"indexed_at_ns":1787726731688185800,"word_count":671},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856792648669800,"indexed_at_ns":1787726739904406600,"word_count":270,"hashes":{"frontend/admin-panel/public/fonts/vazirmatn-v33.003/readme.md":"0d736c7dd11e89622e7105e6a5958fc3d83ec827b8a00debc0943bc8e3a3d201"}},"frontend/admin-panel/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":{"size":211,"mtime_ns":1783856792971535000,"indexed_at_ns":1787726733915800800,"word_count":14},"frontend/admin-panel/public/icons.svg":{"size":5031,"mtime_ns":1783764561799320300,"indexed_at_ns":1787726733920800200,"word_count":382},"frontend/admin-panel/src/App.tsx":{"size":1088,"mtime_ns":1786799852365481100,"indexed_at_ns":1787726733931929300,"word_count":99},"frontend/admin-panel/src/assets/hero.png":{"size":13057,"mtime_ns":1783764561812863000,"indexed_at_ns":1787726733938940400,"word_count":437},"frontend/admin-panel/src/assets/react.svg":{"size":4126,"mtime_ns":1783764561813924700,"indexed_at_ns":1787726733944940500,"word_count":366},"frontend/admin-panel/src/assets/vite.svg":{"size":8709,"mtime_ns":1783764561814995700,"indexed_at_ns":1787726733951568000,"word_count":439},"frontend/admin-panel/src/components/Layout.tsx":{"size":726,"mtime_ns":1784621786958594800,"indexed_at_ns":1787726733957572200,"word_count":69},"frontend/admin-panel/src/components/ProtectedRoute.tsx":{"size":2336,"mtime_ns":1786799852369164100,"indexed_at_ns":1787726733964577700,"word_count":210},"frontend/admin-panel/src/components/RouteErrorBoundary.tsx":{"size":4042,"mtime_ns":1787062174623011100,"indexed_at_ns":1787726733970575200,"word_count":350},"frontend/admin-panel/src/components/Sidebar.tsx":{"size":13111,"mtime_ns":1787461920842084500,"indexed_at_ns":1787726733977661300,"word_count":1198},"frontend/admin-panel/src/components/Topbar.tsx":{"size":19016,"mtime_ns":1787466234964385700,"indexed_at_ns":1787726733983181100,"word_count":1586},"frontend/admin-panel/src/components/TransactionReceiptModal.tsx":{"size":9674,"mtime_ns":1787405554804618300,"indexed_at_ns":1787726733989180000,"word_count":738},"frontend/admin-panel/src/components/ui/Badge.tsx":{"size":1554,"mtime_ns":1787461920844094000,"indexed_at_ns":1787726733997180400,"word_count":158},"frontend/admin-panel/src/components/ui/Button.tsx":{"size":3591,"mtime_ns":1787467799871536000,"indexed_at_ns":1787726734004723300,"word_count":338},"frontend/admin-panel/src/components/ui/ConfirmModal.tsx":{"size":2294,"mtime_ns":1786972191359099700,"indexed_at_ns":1787726734011333000,"word_count":192},"frontend/admin-panel/src/components/ui/FormField.tsx":{"size":1683,"mtime_ns":1786954681823527000,"indexed_at_ns":1787726734018369200,"word_count":148},"frontend/admin-panel/src/components/ui/IconPickerModal.tsx":{"size":4853,"mtime_ns":1787071159959928200,"indexed_at_ns":1787726734024338100,"word_count":397},"frontend/admin-panel/src/components/ui/ImagePreviewModal.tsx":{"size":3351,"mtime_ns":1786954681824534900,"indexed_at_ns":1787726734032842500,"word_count":270},"frontend/admin-panel/src/components/ui/Input.tsx":{"size":1747,"mtime_ns":1786954681825535900,"indexed_at_ns":1787726734038847900,"word_count":147},"frontend/admin-panel/src/components/ui/MaskableField.tsx":{"size":3246,"mtime_ns":1787405554805712000,"indexed_at_ns":1787726734045422000,"word_count":310},"frontend/admin-panel/src/components/ui/MediaSelector.tsx":{"size":21604,"mtime_ns":1787038450536696800,"indexed_at_ns":1787726734051928800,"word_count":1686},"frontend/admin-panel/src/components/ui/Modal.tsx":{"size":3381,"mtime_ns":1787461920845094300,"indexed_at_ns":1787726734060570900,"word_count":324},"frontend/admin-panel/src/components/ui/Pagination.tsx":{"size":5510,"mtime_ns":1786799852387442100,"indexed_at_ns":1787726734066608900,"word_count":447},"frontend/admin-panel/src/components/ui/PriceInput.tsx":{"size":2633,"mtime_ns":1786948119771162400,"indexed_at_ns":1787726734074127900,"word_count":267},"frontend/admin-panel/src/components/ui/RichTextEditor.tsx":{"size":35899,"mtime_ns":1787577523704353400,"indexed_at_ns":1787726734080159100,"word_count":2719},"frontend/admin-panel/src/components/ui/Select.tsx":{"size":1881,"mtime_ns":1786954681828537500,"indexed_at_ns":1787726734087116300,"word_count":160},"frontend/admin-panel/src/components/ui/Skeleton.tsx":{"size":178,"mtime_ns":1783856792977535800,"indexed_at_ns":1787726734092926500,"word_count":22},"frontend/admin-panel/src/components/ui/Spinner.tsx":{"size":650,"mtime_ns":1783856792979049200,"indexed_at_ns":1787726734100568500,"word_count":67},"frontend/admin-panel/src/components/ui/Textarea.tsx":{"size":1287,"mtime_ns":1786954681828537500,"indexed_at_ns":1787726734107173200,"word_count":110},"frontend/admin-panel/src/components/ui/ThSort.tsx":{"size":1478,"mtime_ns":1787461920845094300,"indexed_at_ns":1787726734113136300,"word_count":148},"frontend/admin-panel/src/components/ui/ToggleSwitch.tsx":{"size":1623,"mtime_ns":1786954681830044900,"indexed_at_ns":1787726734120391600,"word_count":143},"frontend/admin-panel/src/main.tsx":{"size":1055,"mtime_ns":1787062325395038600,"indexed_at_ns":1787726734130217700,"word_count":106},"frontend/admin-panel/src/pages/B2BManager.tsx":{"size":24689,"mtime_ns":1787660449612514700,"indexed_at_ns":1787726734137223100,"word_count":1682},"frontend/admin-panel/src/pages/BannersManager.tsx":{"size":19583,"mtime_ns":1787467799874171700,"indexed_at_ns":1787726734145966800,"word_count":1396},"frontend/admin-panel/src/pages/Blogs.tsx":{"size":82294,"mtime_ns":1787726718504533700,"indexed_at_ns":1787726734151997900,"word_count":5654},"frontend/admin-panel/src/pages/CMS.tsx":{"size":10114,"mtime_ns":1787467933664259800,"indexed_at_ns":1787726734157997900,"word_count":791},"frontend/admin-panel/src/pages/Categories.tsx":{"size":16242,"mtime_ns":1787469989141511600,"indexed_at_ns":1787726734164506500,"word_count":1174},"frontend/admin-panel/src/pages/ContactSubmissions.tsx":{"size":12346,"mtime_ns":1787467799877343800,"indexed_at_ns":1787726734172638600,"word_count":842},"frontend/admin-panel/src/pages/Coupons.tsx":{"size":27812,"mtime_ns":1787469989144204800,"indexed_at_ns":1787726734179658200,"word_count":2147},"frontend/admin-panel/src/pages/Dashboard.tsx":{"size":6006,"mtime_ns":1786885876829510000,"indexed_at_ns":1787726734186274700,"word_count":534},"frontend/admin-panel/src/pages/DoctorsManager.tsx":{"size":23282,"mtime_ns":1787467799879923800,"indexed_at_ns":1787726734193275100,"word_count":1666},"frontend/admin-panel/src/pages/FAQManager.tsx":{"size":12625,"mtime_ns":1787467799881924800,"indexed_at_ns":1787726734201784400,"word_count":937},"frontend/admin-panel/src/pages/FinancialSettingsPage.tsx":{"size":13303,"mtime_ns":1787467799882925200,"indexed_at_ns":1787726734207782600,"word_count":928},"frontend/admin-panel/src/pages/IngredientsManager.tsx":{"size":17943,"mtime_ns":1787467933669934500,"indexed_at_ns":1787726734213391200,"word_count":1254},"frontend/admin-panel/src/pages/Login.tsx":{"size":11545,"mtime_ns":1787127978262361000,"indexed_at_ns":1787726734221391500,"word_count":838},"frontend/admin-panel/src/pages/Media.tsx":{"size":29374,"mtime_ns":1787467799885925200,"indexed_at_ns":1787726734227390500,"word_count":2304},"frontend/admin-panel/src/pages/MenuManager.tsx":{"size":19625,"mtime_ns":1787469989146215000,"indexed_at_ns":1787726734240896100,"word_count":1512},"frontend/admin-panel/src/pages/MonitoringPage.tsx":{"size":16455,"mtime_ns":1787466234965980200,"indexed_at_ns":1787726734246489100,"word_count":1289},"frontend/admin-panel/src/pages/Orders.tsx":{"size":55864,"mtime_ns":1787660932418522400,"indexed_at_ns":1787726734252994000,"word_count":4169},"frontend/admin-panel/src/pages/PaymentGatewaysPage.tsx":{"size":37893,"mtime_ns":1787467799889939500,"indexed_at_ns":1787726734259598900,"word_count":2521},"frontend/admin-panel/src/pages/Pets.tsx":{"size":16631,"mtime_ns":1787467799891938300,"indexed_at_ns":1787726734268435300,"word_count":1209},"frontend/admin-panel/src/pages/PrescriptionsManager.tsx":{"size":19424,"mtime_ns":1787467799892935800,"indexed_at_ns":1787726734275434500,"word_count":1419},"frontend/admin-panel/src/pages/Products.tsx":{"size":119422,"mtime_ns":1787640978245565100,"indexed_at_ns":1787726734281548900,"word_count":7835},"frontend/admin-panel/src/pages/Reports.tsx":{"size":24050,"mtime_ns":1787726718505537600,"indexed_at_ns":1787726734288737200,"word_count":1832},"frontend/admin-panel/src/pages/Reviews.tsx":{"size":20769,"mtime_ns":1787467799897934900,"indexed_at_ns":1787726734294738100,"word_count":1479},"frontend/admin-panel/src/pages/SeoSettingsPage.tsx":{"size":15089,"mtime_ns":1787467799899934200,"indexed_at_ns":1787726734302505600,"word_count":1137},"frontend/admin-panel/src/pages/Settings.tsx":{"size":24256,"mtime_ns":1787468615457819400,"indexed_at_ns":1787726734308156100,"word_count":1701},"frontend/admin-panel/src/pages/ShippingSettingsPage.tsx":{"size":7615,"mtime_ns":1787467799901935300,"indexed_at_ns":1787726734314725100,"word_count":585},"frontend/admin-panel/src/pages/SmartAdvisorManager.tsx":{"size":13745,"mtime_ns":1787467799902933600,"indexed_at_ns":1787726734320253400,"word_count":1014},"frontend/admin-panel/src/pages/SmsSettingsPage.tsx":{"size":78907,"mtime_ns":1787467799904439000,"indexed_at_ns":1787726734327410400,"word_count":5444},"frontend/admin-panel/src/pages/SslSettingsPage.tsx":{"size":25502,"mtime_ns":1787467799905446700,"indexed_at_ns":1787726734336379700,"word_count":1847},"frontend/admin-panel/src/pages/SystemSettingsPage.tsx":{"size":16821,"mtime_ns":1787467799907448000,"indexed_at_ns":1787726734343379300,"word_count":1133},"frontend/admin-panel/src/pages/TestimonialsManager.tsx":{"size":18547,"mtime_ns":1787467799908955400,"indexed_at_ns":1787726734348881900,"word_count":1297},"frontend/admin-panel/src/pages/Tickets.tsx":{"size":20254,"mtime_ns":1787467799909962900,"indexed_at_ns":1787726734355478000,"word_count":1455},"frontend/admin-panel/src/pages/Transactions.tsx":{"size":45136,"mtime_ns":1787471434872188300,"indexed_at_ns":1787726734362406800,"word_count":3213},"frontend/admin-panel/src/pages/UITexts.tsx":{"size":70758,"mtime_ns":1787564362267171200,"indexed_at_ns":1787726734368359700,"word_count":5750},"frontend/admin-panel/src/pages/Users.tsx":{"size":39503,"mtime_ns":1787661363262635500,"indexed_at_ns":1787726734375869000,"word_count":2663},"frontend/admin-panel/src/pages/Videos.tsx":{"size":22648,"mtime_ns":1787467799914548300,"indexed_at_ns":1787726734383949000,"word_count":1604},"frontend/admin-panel/src/pages/WholesaleApplications.tsx":{"size":6713,"mtime_ns":1787467799916852500,"indexed_at_ns":1787726734390128300,"word_count":505},"frontend/admin-panel/src/pages/Wiki.tsx":{"size":15651,"mtime_ns":1787469989158212800,"indexed_at_ns":1787726734396025400,"word_count":1221},"frontend/admin-panel/src/pages/ZibalPortalPage.tsx":{"size":55699,"mtime_ns":1787570438155805200,"indexed_at_ns":1787726734402122900,"word_count":3753},"frontend/admin-panel/src/routes/adminRoutes.tsx":{"size":6245,"mtime_ns":1787461920854097100,"indexed_at_ns":1787726734408451000,"word_count":603},"frontend/admin-panel/src/services/api.ts":{"size":5190,"mtime_ns":1786896758433963000,"indexed_at_ns":1787726734415809200,"word_count":479},"frontend/admin-panel/src/store/adminAuthStore.ts":{"size":666,"mtime_ns":1786799852469037000,"indexed_at_ns":1787726734421659400,"word_count":65},"frontend/admin-panel/src/types/admin.ts":{"size":4146,"mtime_ns":1787139270957407700,"indexed_at_ns":1787726734427790900,"word_count":454},"frontend/admin-panel/src/utils/lazyWithRetry.ts":{"size":1129,"mtime_ns":1787062174626227900,"indexed_at_ns":1787726734435357300,"word_count":114},"frontend/admin-panel/src/utils/useTableParams.ts":{"size":4060,"mtime_ns":1787461920855096000,"indexed_at_ns":1787726734441273300,"word_count":441},"frontend/admin-panel/tailwind.config.js":{"size":182,"mtime_ns":1783764561861721300,"indexed_at_ns":1787726734447096600,"word_count":20},"frontend/admin-panel/tsconfig.app.json":{"size":633,"mtime_ns":1787055476779566300,"indexed_at_ns":1787726739794704700,"word_count":48,"hashes":{"frontend/admin-panel/tsconfig.app.json":"2d9838ee1119342fd03bf7644781b8b6aced2cbdc908ff186cdd6ab7ab9ba1c4"}},"frontend/admin-panel/tsconfig.json":{"size":119,"mtime_ns":1783764561863393600,"indexed_at_ns":1787726739795705100,"word_count":15,"hashes":{"frontend/admin-panel/tsconfig.json":"7a6c2e21b6eaa2355b4e2ed29db2a767499a88498bde745cdccf3ba8c7f64f2b"}},"frontend/admin-panel/tsconfig.node.json":{"size":591,"mtime_ns":1783764561863923100,"indexed_at_ns":1787726739796704600,"word_count":44,"hashes":{"frontend/admin-panel/tsconfig.node.json":"035a8143cff9651dbb67885756a07cc3f8ed1c5dcbf04a6e2042600b7989d525"}},"frontend/admin-panel/vite.config.ts":{"size":161,"mtime_ns":1783764561864454900,"indexed_at_ns":1787726734467280600,"word_count":18},"frontend/application/AGENTS.md":{"size":717,"mtime_ns":1787127978268943700,"indexed_at_ns":1787726734477280500,"word_count":88},"frontend/application/CLAUDE.md":{"size":11,"mtime_ns":1783764561866744500,"indexed_at_ns":1787726739905406700,"word_count":1,"hashes":{"frontend/application/claude.md":"0776fbbe8c29c6dc861efa70683090a370ab56dc77c22cb9de74895b4c783320"}},"frontend/application/README.md":{"size":1450,"mtime_ns":1783764561867354300,"indexed_at_ns":1787726739906406500,"word_count":155,"hashes":{"frontend/application/readme.md":"dd829cdf325092d859080ac1db3cbf2cca3198e72834f0f228495ef3c49a2240"}},"frontend/application/app/ClientLayout.tsx":{"size":7677,"mtime_ns":1787726718506132700,"indexed_at_ns":1787726734494425900,"word_count":698},"frontend/application/app/HomeClient.tsx":{"size":13267,"mtime_ns":1787148092347461500,"indexed_at_ns":1787726734499606500,"word_count":851},"frontend/application/app/about/page.tsx":{"size":5706,"mtime_ns":1787139270959412500,"indexed_at_ns":1787726734506477700,"word_count":474},"frontend/application/app/api/revalidate/route.ts":{"size":1889,"mtime_ns":1787579631780106700,"indexed_at_ns":1787726734514149300,"word_count":220},"frontend/application/app/b2b/error.tsx":{"size":380,"mtime_ns":1787645037377262000,"indexed_at_ns":1787726734520148500,"word_count":50},"frontend/application/app/b2b/page.tsx":{"size":1506,"mtime_ns":1787644197141618200,"indexed_at_ns":1787726734526117900,"word_count":135},"frontend/application/app/blog/[slug]/page.tsx":{"size":8201,"mtime_ns":1787641161057694000,"indexed_at_ns":1787726734533148700,"word_count":767},"frontend/application/app/blog/error.tsx":{"size":382,"mtime_ns":1787645037378268200,"indexed_at_ns":1787726734540186900,"word_count":50},"frontend/application/app/blog/loading.tsx":{"size":1293,"mtime_ns":1787645037379262800,"indexed_at_ns":1787726734546152600,"word_count":115},"frontend/application/app/blog/page.tsx":{"size":3318,"mtime_ns":1787581191870074600,"indexed_at_ns":1787726734552322400,"word_count":340},"frontend/application/app/blog/rss.xml/route.ts":{"size":3076,"mtime_ns":1787577523710351300,"indexed_at_ns":1787726734558947600,"word_count":280},"frontend/application/app/catalog/CatalogClient.tsx":{"size":1389,"mtime_ns":1786872121566485100,"indexed_at_ns":1787726734564982500,"word_count":129},"frontend/application/app/catalog/page.tsx":{"size":671,"mtime_ns":1787139270965525300,"indexed_at_ns":1787726734570982600,"word_count":66},"frontend/application/app/checkout/page.tsx":{"size":604,"mtime_ns":1787139270967535500,"indexed_at_ns":1787726734576551900,"word_count":60},"frontend/application/app/checkout/success/[id]/page.tsx":{"size":231,"mtime_ns":1783764561878668300,"indexed_at_ns":1787726734582122000,"word_count":31},"frontend/application/app/contact/page.tsx":{"size":2655,"mtime_ns":1787644197143198500,"indexed_at_ns":1787726734588729900,"word_count":214},"frontend/application/app/dashboard/page.tsx":{"size":903,"mtime_ns":1787394935318217400,"indexed_at_ns":1787726734595730700,"word_count":83},"frontend/application/app/error.tsx":{"size":383,"mtime_ns":1785148022478709000,"indexed_at_ns":1787726734601792600,"word_count":50},"frontend/application/app/layout.tsx":{"size":4776,"mtime_ns":1787644197144196600,"indexed_at_ns":1787726734617397100,"word_count":400},"frontend/application/app/loading.tsx":{"size":1373,"mtime_ns":1785148022487650000,"indexed_at_ns":1787726734623432900,"word_count":122},"frontend/application/app/not-found.tsx":{"size":124,"mtime_ns":1783764561891411400,"indexed_at_ns":1787726734629416600,"word_count":15},"frontend/application/app/page.tsx":{"size":1003,"mtime_ns":1787139270974959500,"indexed_at_ns":1787726734635909300,"word_count":114},"frontend/application/app/payment/verify/page.tsx":{"size":14338,"mtime_ns":1786891855356078600,"indexed_at_ns":1787726734641507800,"word_count":1094},"frontend/application/app/privacy/page.tsx":{"size":4098,"mtime_ns":1787139270976563700,"indexed_at_ns":1787726734648804500,"word_count":336},"frontend/application/app/profile/page.tsx":{"size":623,"mtime_ns":1787139270978803200,"indexed_at_ns":1787726734655771200,"word_count":63},"frontend/application/app/robots.ts":{"size":825,"mtime_ns":1787578481501464000,"indexed_at_ns":1787726734660416500,"word_count":72},"frontend/application/app/search/page.tsx":{"size":786,"mtime_ns":1787139270979946700,"indexed_at_ns":1787726734667451100,"word_count":82},"frontend/application/app/shop/[slug]/page.tsx":{"size":8722,"mtime_ns":1787579631787104400,"indexed_at_ns":1787726734672932300,"word_count":786},"frontend/application/app/shop/error.tsx":{"size":382,"mtime_ns":1787645037380267900,"indexed_at_ns":1787726734679433600,"word_count":50},"frontend/application/app/shop/feed.xml/route.ts":{"size":3391,"mtime_ns":1787578481506463600,"indexed_at_ns":1787726734685442300,"word_count":301},"frontend/application/app/shop/loading.tsx":{"size":1596,"mtime_ns":1787645037380267900,"indexed_at_ns":1787726734691441600,"word_count":144},"frontend/application/app/shop/page.tsx":{"size":2715,"mtime_ns":1787644197146199100,"indexed_at_ns":1787726734698441300,"word_count":295},"frontend/application/app/sitemap-categories.xml/route.ts":{"size":1797,"mtime_ns":1787578481507462100,"indexed_at_ns":1787726734703951500,"word_count":179},"frontend/application/app/sitemap-products.xml/route.ts":{"size":1980,"mtime_ns":1787578481508464300,"indexed_at_ns":1787726734710719000,"word_count":186},"frontend/application/app/sitemap.ts":{"size":3510,"mtime_ns":1787578481510463300,"indexed_at_ns":1787726734715717900,"word_count":350},"frontend/application/app/track/page.tsx":{"size":612,"mtime_ns":1787139270984213600,"indexed_at_ns":1787726734723190300,"word_count":60},"frontend/application/app/trust-seals/page.tsx":{"size":7155,"mtime_ns":1787394001609306700,"indexed_at_ns":1787726734729188900,"word_count":566},"frontend/application/app/videos/page.tsx":{"size":2822,"mtime_ns":1787644197147196700,"indexed_at_ns":1787726734735191600,"word_count":266},"frontend/application/app/wiki/[slug]/page.tsx":{"size":8912,"mtime_ns":1787644197149197300,"indexed_at_ns":1787726734743193100,"word_count":702},"frontend/application/app/wiki/page.tsx":{"size":910,"mtime_ns":1787139270987830800,"indexed_at_ns":1787726734749703000,"word_count":85},"frontend/application/components/AddressModal.tsx":{"size":16148,"mtime_ns":1786799852571178400,"indexed_at_ns":1787726734756265200,"word_count":1109},"frontend/application/components/ArchivePage.tsx":{"size":40040,"mtime_ns":1787726814759671400,"indexed_at_ns":1787729425150027900,"word_count":3129},"frontend/application/components/AuthModal.tsx":{"size":45254,"mtime_ns":1787726718509142900,"indexed_at_ns":1787726734768269700,"word_count":2996},"frontend/application/components/B2BLandingClient.tsx":{"size":25866,"mtime_ns":1787645037381267600,"indexed_at_ns":1787726734774269600,"word_count":1824},"frontend/application/components/B2BPortal.tsx":{"size":14014,"mtime_ns":1786894580156857600,"indexed_at_ns":1787726734780287600,"word_count":1094},"frontend/application/components/BackButton.tsx":{"size":1120,"mtime_ns":1786965281357277800,"indexed_at_ns":1787726734786847300,"word_count":117},"frontend/application/components/BannerPlacement.tsx":{"size":7703,"mtime_ns":1787564348689902000,"indexed_at_ns":1787726734793846300,"word_count":527},"frontend/application/components/BlogPage.tsx":{"size":21976,"mtime_ns":1787726718510142200,"indexed_at_ns":1787726734800046600,"word_count":1583},"frontend/application/components/BlogPostClient.tsx":{"size":18802,"mtime_ns":1787641161059331400,"indexed_at_ns":1787726734805497100,"word_count":1239},"frontend/application/components/BlogPreviewSection.tsx":{"size":7535,"mtime_ns":1787640735445200900,"indexed_at_ns":1787726734812776300,"word_count":544},"frontend/application/components/BrandLogo.tsx":{"size":3307,"mtime_ns":1787564348690862200,"indexed_at_ns":1787726734819682600,"word_count":287},"frontend/application/components/CartDrawer.tsx":{"size":21813,"mtime_ns":1787729207417550800,"indexed_at_ns":1787729425202468600,"word_count":1442},"frontend/application/components/CheckoutPage.tsx":{"size":40480,"mtime_ns":1787657845522979100,"indexed_at_ns":1787726734832681700,"word_count":2746},"frontend/application/components/ContactFormClient.tsx":{"size":10833,"mtime_ns":1787666597409244500,"indexed_at_ns":1787726734838776800,"word_count":784},"frontend/application/components/DeleteConfirmModal.tsx":{"size":2328,"mtime_ns":1786799852608752300,"indexed_at_ns":1787726734845321800,"word_count":195},"frontend/application/components/EnamadBadge.tsx":{"size":1516,"mtime_ns":1786799852612361900,"indexed_at_ns":1787726734850835400,"word_count":114},"frontend/application/components/ErrorBoundary.tsx":{"size":2617,"mtime_ns":1786799852614549600,"indexed_at_ns":1787726734857066500,"word_count":235},"frontend/application/components/ErrorPages.tsx":{"size":2809,"mtime_ns":1787661485945074600,"indexed_at_ns":1787726734862654700,"word_count":243},"frontend/application/components/FAQSection.tsx":{"size":4790,"mtime_ns":1787148092351047600,"indexed_at_ns":1787726734868659500,"word_count":394},"frontend/application/components/FeaturedProducts.tsx":{"size":10701,"mtime_ns":1787726718510142200,"indexed_at_ns":1787726734875659400,"word_count":919},"frontend/application/components/Footer.tsx":{"size":13707,"mtime_ns":1787644197154198800,"indexed_at_ns":1787726734881167600,"word_count":903},"frontend/application/components/Header.tsx":{"size":37307,"mtime_ns":1787726718512139900,"indexed_at_ns":1787726734887172400,"word_count":2603},"frontend/application/components/HeaderButton.tsx":{"size":2242,"mtime_ns":1786799852637156100,"indexed_at_ns":1787726734893172700,"word_count":208},"frontend/application/components/Hero.tsx":{"size":19216,"mtime_ns":1787577523539588200,"indexed_at_ns":1787726734899680700,"word_count":1616},"frontend/application/components/IngredientWiki.tsx":{"size":20337,"mtime_ns":1786965281374206800,"indexed_at_ns":1787726734906680500,"word_count":1496},"frontend/application/components/LoginModal.tsx":{"size":13846,"mtime_ns":1786885876932267500,"indexed_at_ns":1787726734914249200,"word_count":1121},"frontend/application/components/MaintenancePage.tsx":{"size":3686,"mtime_ns":1786946249984693000,"indexed_at_ns":1787726734921249900,"word_count":313},"frontend/application/components/NetworkBanner.tsx":{"size":2350,"mtime_ns":1786799852662138900,"indexed_at_ns":1787726734928082300,"word_count":214},"frontend/application/components/OrderDetailsModal.tsx":{"size":36149,"mtime_ns":1787564348694929900,"indexed_at_ns":1787726734935086200,"word_count":2477},"frontend/application/components/OrderSuccess.tsx":{"size":6396,"mtime_ns":1786799852665542300,"indexed_at_ns":1787726734947087000,"word_count":521},"frontend/application/components/OrderTracking.tsx":{"size":9269,"mtime_ns":1787657266639234000,"indexed_at_ns":1787726734953129500,"word_count":681},"frontend/application/components/PetProfile.tsx":{"size":83314,"mtime_ns":1787564348695930500,"indexed_at_ns":1787726734959758100,"word_count":5882},"frontend/application/components/PodcastInlinePlayer.tsx":{"size":17030,"mtime_ns":1787579631796809000,"indexed_at_ns":1787726734967757900,"word_count":1382},"frontend/application/components/PodcastPlayerModal.tsx":{"size":18090,"mtime_ns":1787564348697931500,"indexed_at_ns":1787726734976259700,"word_count":1485},"frontend/application/components/PrescriptionUploadModal.tsx":{"size":18907,"mtime_ns":1786965281385656300,"indexed_at_ns":1787726734983772300,"word_count":1331},"frontend/application/components/ProductPage.tsx":{"size":75610,"mtime_ns":1787729275665211400,"indexed_at_ns":1787729425324915200,"word_count":5409},"frontend/application/components/ProductReviews.tsx":{"size":16108,"mtime_ns":1787048863691774800,"indexed_at_ns":1787726734999417900,"word_count":1194},"frontend/application/components/SafeImage.tsx":{"size":3431,"mtime_ns":1787579631801836700,"indexed_at_ns":1787726735006020500,"word_count":318},"frontend/application/components/SearchResultsPage.tsx":{"size":8335,"mtime_ns":1786799852701578200,"indexed_at_ns":1787726735012019400,"word_count":594},"frontend/application/components/SearchableSelect.tsx":{"size":4375,"mtime_ns":1785575516155554800,"indexed_at_ns":1787726735019020000,"word_count":336},"frontend/application/components/Skeleton.tsx":{"size":3084,"mtime_ns":1783764561943996900,"indexed_at_ns":1787726735026024900,"word_count":291},"frontend/application/components/SmartAdvisor.tsx":{"size":36808,"mtime_ns":1787726718513139700,"indexed_at_ns":1787726735032024800,"word_count":2811},"frontend/application/components/TestimonialsSection.tsx":{"size":6473,"mtime_ns":1787148092353045800,"indexed_at_ns":1787726735038649700,"word_count":494},"frontend/application/components/TickerBanner.tsx":{"size":1605,"mtime_ns":1786885876960835800,"indexed_at_ns":1787726735043649000,"word_count":140},"frontend/application/components/Tooltip.tsx":{"size":5039,"mtime_ns":1787729375434226400,"indexed_at_ns":1787729425370922800,"word_count":423},"frontend/application/components/TopUpModal.tsx":{"size":9381,"mtime_ns":1787406597303349300,"indexed_at_ns":1787726735057286900,"word_count":741},"frontend/application/components/UserDashboard.tsx":{"size":92697,"mtime_ns":1787394935320317600,"indexed_at_ns":1787726735063292200,"word_count":5939},"frontend/application/components/VetGallery.tsx":{"size":8292,"mtime_ns":1787074301692915100,"indexed_at_ns":1787726735071297200,"word_count":643},"frontend/application/components/VideoModalPlayer.tsx":{"size":24486,"mtime_ns":1787726718514140200,"indexed_at_ns":1787726735078297400,"word_count":1842},"frontend/application/components/VideosPage.tsx":{"size":8815,"mtime_ns":1787726718515142400,"indexed_at_ns":1787726735083812700,"word_count":672},"frontend/application/components/__tests__/CartDrawer.test.tsx":{"size":3197,"mtime_ns":1786799852761825800,"indexed_at_ns":1787726735089813300,"word_count":285},"frontend/application/components/__tests__/FeaturedProducts.test.tsx":{"size":2922,"mtime_ns":1787726718516142100,"indexed_at_ns":1787726735098319700,"word_count":246},"frontend/application/components/__tests__/Footer.test.tsx":{"size":1200,"mtime_ns":1787726718516142100,"indexed_at_ns":1787726735104325800,"word_count":97},"frontend/application/components/__tests__/Header.test.tsx":{"size":3336,"mtime_ns":1787726718517142800,"indexed_at_ns":1787726735110326400,"word_count":266},"frontend/application/components/__tests__/Hero.test.tsx":{"size":1980,"mtime_ns":1786799852776010800,"indexed_at_ns":1787726735115917200,"word_count":192},"frontend/application/components/__tests__/Tooltip.test.tsx":{"size":1508,"mtime_ns":1786799852784348900,"indexed_at_ns":1787726735121917300,"word_count":137},"frontend/application/components/catalog/CatalogPageSpread.tsx":{"size":24099,"mtime_ns":1786885876979161800,"indexed_at_ns":1787726735128917400,"word_count":1912},"frontend/application/components/catalog/FlipbookCatalog.tsx":{"size":32968,"mtime_ns":1786885876982161900,"indexed_at_ns":1787726735135921200,"word_count":2807},"frontend/application/components/catalog/ProductDetailModal.tsx":{"size":7763,"mtime_ns":1786872121572482100,"indexed_at_ns":1787726735143987500,"word_count":557},"frontend/application/eslint.config.mjs":{"size":747,"mtime_ns":1787148092358055900,"indexed_at_ns":1787726735150541200,"word_count":61},"frontend/application/lib/data/products.ts":{"size":104224,"mtime_ns":1787578481513988500,"indexed_at_ns":1787726735158143700,"word_count":9748},"frontend/application/lib/data/provinces.ts":{"size":2993,"mtime_ns":1785571725610676000,"indexed_at_ns":1787726735166169300,"word_count":203},"frontend/application/lib/data/scientificTerms.ts":{"size":18042,"mtime_ns":1786958978743097300,"indexed_at_ns":1787726735173169300,"word_count":1756},"frontend/application/lib/fonts.ts":{"size":683,"mtime_ns":1787579631802834900,"indexed_at_ns":1787726735179751500,"word_count":59},"frontend/application/lib/hooks/useNetworkStatus.ts":{"size":610,"mtime_ns":1786799852793488000,"indexed_at_ns":1787726735185762100,"word_count":59},"frontend/application/lib/schema.ts":{"size":7336,"mtime_ns":1787644197156205400,"indexed_at_ns":1787726735192345800,"word_count":609},"frontend/application/lib/seo.ts":{"size":8046,"mtime_ns":1787139270988834800,"indexed_at_ns":1787726735198345500,"word_count":737},"frontend/application/lib/services/api.ts":{"size":3694,"mtime_ns":1786954681844297300,"indexed_at_ns":1787726735203856100,"word_count":391},"frontend/application/lib/services/authService.ts":{"size":4524,"mtime_ns":1786885876986184800,"indexed_at_ns":1787726735211416700,"word_count":509},"frontend/application/lib/services/orderService.ts":{"size":2428,"mtime_ns":1786799852810726500,"indexed_at_ns":1787726735217187400,"word_count":279},"frontend/application/lib/services/productService.ts":{"size":15840,"mtime_ns":1787579631803836100,"indexed_at_ns":1787726735223578000,"word_count":1409},"frontend/application/lib/services/ticketService.ts":{"size":1569,"mtime_ns":1786890779340901800,"indexed_at_ns":1787726735230632600,"word_count":170},"frontend/application/lib/services/videoService.ts":{"size":1234,"mtime_ns":1786967385871970500,"indexed_at_ns":1787726735237739200,"word_count":144},"frontend/application/lib/store/__tests__/cartStore.test.ts":{"size":4430,"mtime_ns":1786799852822036900,"indexed_at_ns":1787726735244738400,"word_count":386},"frontend/application/lib/store/__tests__/settingsStore.test.ts":{"size":1949,"mtime_ns":1783856793043803200,"indexed_at_ns":1787726735251871200,"word_count":194},"frontend/application/lib/store/__tests__/userStore.test.ts":{"size":3639,"mtime_ns":1786799852825547700,"indexed_at_ns":1787726735257815200,"word_count":289},"frontend/application/lib/store/cartStore.ts":{"size":6972,"mtime_ns":1787660831220289700,"indexed_at_ns":1787726735265091600,"word_count":697},"frontend/application/lib/store/settingsStore.ts":{"size":3630,"mtime_ns":1786948119787096800,"indexed_at_ns":1787726735271091300,"word_count":371},"frontend/application/lib/store/uiStore.ts":{"size":872,"mtime_ns":1786799852833588000,"indexed_at_ns":1787726735277092600,"word_count":100},"frontend/application/lib/store/usePetStore.ts":{"size":8680,"mtime_ns":1786954681845300600,"indexed_at_ns":1787726735283172200,"word_count":850},"frontend/application/lib/store/userStore.ts":{"size":10320,"mtime_ns":1787726718518139100,"indexed_at_ns":1787726735290016500,"word_count":894},"frontend/application/lib/types.ts":{"size":2222,"mtime_ns":1787729306979598600,"indexed_at_ns":1787729425569543900,"word_count":239},"frontend/application/lib/utils.ts":{"size":478,"mtime_ns":1786799852847284000,"indexed_at_ns":1787726735301154500,"word_count":61},"frontend/application/next.config.ts":{"size":2274,"mtime_ns":1787579631805387200,"indexed_at_ns":1787726735310154400,"word_count":208},"frontend/application/package.json":{"size":844,"mtime_ns":1787640978247182300,"indexed_at_ns":1787726739799715600,"word_count":72,"hashes":{"frontend/application/package.json":"6f60e7e1648827d0553bb5db6faa06d1a77f6809f0a6370f9b9517c91dd19db7"}},"frontend/application/postcss.config.mjs":{"size":94,"mtime_ns":1783764561988252100,"indexed_at_ns":1787726735322173300,"word_count":13},"frontend/application/public/assets/images/canina-product-placeholder.png":{"size":6990105,"mtime_ns":1787461919505024400,"indexed_at_ns":1787726735328171600,"word_count":267685},"frontend/application/public/assets/images/hero-section-image.png":{"size":6990105,"mtime_ns":1783856793095044200,"indexed_at_ns":1787726735461222100,"word_count":267685},"frontend/application/public/assets/images/regenerated_image_1779109861747.png":{"size":2269101,"mtime_ns":1783764562014110300,"indexed_at_ns":1787726735596033500,"word_count":84979},"frontend/application/public/file.svg":{"size":391,"mtime_ns":1783764562016213600,"indexed_at_ns":1787726735643616000,"word_count":50},"frontend/application/public/fonts/A-Iranian-Sans/A-Iranian-Sans/read me!.txt":{"size":281,"mtime_ns":1783856793098052000,"indexed_at_ns":1787726735668659800,"word_count":15},"frontend/application/public/fonts/IranNastaliq/IranNastaliq/read me!.txt":{"size":281,"mtime_ns":1783856793107660400,"indexed_at_ns":1787726735694207900,"word_count":15},"frontend/application/public/fonts/sahel-font-v3.4.0/CHANGELOG.md":{"size":8519,"mtime_ns":1783856793113660500,"indexed_at_ns":1787726739908406400,"word_count":1077,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/changelog.md":"be9b046e69dc5442c30d61cca51a69e4238f861da265d1ce8cd0192bafce40a9"}},"frontend/application/public/fonts/sahel-font-v3.4.0/README.md":{"size":4136,"mtime_ns":1783856793156251700,"indexed_at_ns":1787726739909406300,"word_count":366,"hashes":{"frontend/application/public/fonts/sahel-font-v3.4.0/readme.md":"9b0e689f6474b487d70db0ecb05321072f15df92266522497b60aaa47579aac5"}},"frontend/application/public/fonts/sahel-font-v3.4.0/sample-variable.gif":{"size":236102,"mtime_ns":1783856793229119700,"indexed_at_ns":1787726736213031900,"word_count":10881},"frontend/application/public/fonts/shabnam-font-v5.0.1/CHANGELOG.md":{"size":7177,"mtime_ns":1783856793230118600,"indexed_at_ns":1787726736225832200,"word_count":951},"frontend/application/public/fonts/shabnam-font-v5.0.1/README.md":{"size":3696,"mtime_ns":1783856793279542700,"indexed_at_ns":1787726736475009300,"word_count":283},"frontend/application/public/fonts/shabnam-font-v5.0.1/sample.png":{"size":85019,"mtime_ns":1783856793315146800,"indexed_at_ns":1787726736717303100,"word_count":2615},"frontend/application/public/fonts/vazirmatn-v33.003/AUTHORS.txt":{"size":339,"mtime_ns":1783856793316155600,"indexed_at_ns":1787726736727313200,"word_count":55},"frontend/application/public/fonts/vazirmatn-v33.003/CHANGELOG.md":{"size":38550,"mtime_ns":1783856793317690100,"indexed_at_ns":1787726736736959200,"word_count":5086},"frontend/application/public/fonts/vazirmatn-v33.003/OFL.txt":{"size":4391,"mtime_ns":1783856793319422000,"indexed_at_ns":1787726736744957500,"word_count":671},"frontend/application/public/fonts/vazirmatn-v33.003/README.md":{"size":2339,"mtime_ns":1783856793320489000,"indexed_at_ns":1787726736753050400,"word_count":270},"frontend/application/public/fonts/vazirmatn-v33.003/\u0631\u0627\u0647\u0646\u0645\u0627.txt":{"size":211,"mtime_ns":1783856793668096800,"indexed_at_ns":1787726738964542200,"word_count":14},"frontend/application/public/globe.svg":{"size":1035,"mtime_ns":1783764562016720700,"indexed_at_ns":1787726738969546300,"word_count":154},"frontend/application/public/images/vets/vet1.webp":{"size":6990105,"mtime_ns":1787461919541761600,"indexed_at_ns":1787726738988845300,"word_count":267685},"frontend/application/public/next.svg":{"size":1375,"mtime_ns":1783764562018238900,"indexed_at_ns":1787726739135424800,"word_count":183},"frontend/application/public/vercel.svg":{"size":128,"mtime_ns":1783764562019253000,"indexed_at_ns":1787726739141424700,"word_count":12},"frontend/application/public/window.svg":{"size":385,"mtime_ns":1783764562019253000,"indexed_at_ns":1787726739147423800,"word_count":63},"frontend/application/tsconfig.json":{"size":750,"mtime_ns":1786799852865640000,"indexed_at_ns":1787726739800717100,"word_count":61,"hashes":{"frontend/application/tsconfig.json":"adcade0f962ec5888be99b4b1402d98812cfd570b0c5669bda73142b2cb9210d"}},"frontend/application/vitest.config.ts":{"size":244,"mtime_ns":1786799852868652900,"indexed_at_ns":1787726739161997600,"word_count":25},"frontend/application/vitest.setup.ts":{"size":1237,"mtime_ns":1787726718519138800,"indexed_at_ns":1787726739167593200,"word_count":141},"manual-test-scenarios.md":{"size":0,"mtime_ns":1787658071444330600,"indexed_at_ns":1787726739910406100,"word_count":0,"hashes":{"manual-test-scenarios.md":"c6e53ad8216c7ae7d9e1449511caca4c768d1c68b0b859ae24f0add4afe8e502"}},"metadata.json":{"size":334,"mtime_ns":1783856793672137200,"indexed_at_ns":1787726739801716800,"word_count":35,"hashes":{"metadata.json":"c44b4c4ba60752554ceae65e2f22bddb756cbeb25a4a31ee79160b6eb182255a"}},"package.json":{"size":1237,"mtime_ns":1787665334605777200,"indexed_at_ns":1787726739802716500,"word_count":136,"hashes":{"package.json":"3ca5b265c68cc5660e5fd57b0aeb13de7eb49732740eafe405f6f0804671ceeb"}},"playwright.config.ts":{"size":2710,"mtime_ns":1787661561809749100,"indexed_at_ns":1787726739192125200,"word_count":270},"prometheus.yml":{"size":164,"mtime_ns":1783764562027779300,"indexed_at_ns":1787726739197125100,"word_count":13},"scripts/backup_db.sh":{"size":1362,"mtime_ns":1786799852876784600,"indexed_at_ns":1787726739803716600,"word_count":134,"hashes":{"scripts/backup_db.sh":"f90cf2d0c954f3eaca83566ccb365bff62fd97a2af0225816c19902ee4dfdd6c"}},"scripts/compose.prod.yml":{"size":2166,"mtime_ns":1787077093990777200,"indexed_at_ns":1787726739209165700,"word_count":120},"scripts/compose.stage.yml":{"size":2557,"mtime_ns":1787077093991779700,"indexed_at_ns":1787726739215476500,"word_count":137},"scripts/deploy.sh":{"size":3346,"mtime_ns":1787136904559094200,"indexed_at_ns":1787726739805264300,"word_count":351,"hashes":{"scripts/deploy.sh":"64d276bb6eb6cfb83690c529b9d1c0c71fa46aa912a458f684dfcf842fab2aea"}},"scripts/open-browsers.js":{"size":1551,"mtime_ns":1787640978248234500,"indexed_at_ns":1787726739230479800,"word_count":202},"scripts/start-dev.js":{"size":1689,"mtime_ns":1787072106514646900,"indexed_at_ns":1787726739236447600,"word_count":186},"start.sh":{"size":26,"mtime_ns":1784033954813080300,"indexed_at_ns":1787726739806268200,"word_count":4,"hashes":{"start.sh":"694c258b963c309734a3316c770f5fef29703bc6f24754b04155fd8db94cf862"}},"swagger.yml":{"size":95785,"mtime_ns":1786799852892091600,"indexed_at_ns":1787726739249239800,"word_count":7031},"test-coverage-map.md":{"size":13899,"mtime_ns":1787665722646010200,"indexed_at_ns":1787726739911406300,"word_count":1524,"hashes":{"test-coverage-map.md":"970d0bc2af7773ce27006da7c642991e3f094e71838201680fca7d9dfe809746"}},"tests/e2e/admin/admin-b2b-submissions.spec.ts":{"size":8979,"mtime_ns":1787668210920500800,"indexed_at_ns":1787726739262186200,"word_count":742},"tests/e2e/admin/admin-blogs-crud.spec.ts":{"size":5540,"mtime_ns":1787667059976029600,"indexed_at_ns":1787726739268192800,"word_count":490},"tests/e2e/admin/admin-crud.spec.ts":{"size":6485,"mtime_ns":1787647141438813100,"indexed_at_ns":1787726739273817600,"word_count":569},"tests/e2e/admin/admin-orders-flow.spec.ts":{"size":4130,"mtime_ns":1787660839295886100,"indexed_at_ns":1787726739278815800,"word_count":352},"tests/e2e/admin/admin-rbac-roles.spec.ts":{"size":4011,"mtime_ns":1787661275438587400,"indexed_at_ns":1787726739285322000,"word_count":327},"tests/e2e/security/xss-ratelimit.spec.ts":{"size":5646,"mtime_ns":1787666650254181600,"indexed_at_ns":1787726739290898900,"word_count":491},"tests/e2e/storefront/auth-otp-recovery.spec.ts":{"size":4540,"mtime_ns":1787661085290638100,"indexed_at_ns":1787726739296615200,"word_count":384},"tests/e2e/storefront/b2b-flow.spec.ts":{"size":3521,"mtime_ns":1787646184071240700,"indexed_at_ns":1787726739303637200,"word_count":288},"tests/e2e/storefront/blog-wiki.spec.ts":{"size":2107,"mtime_ns":1787646189173148500,"indexed_at_ns":1787726739309235200,"word_count":185},"tests/e2e/storefront/cart-operations.spec.ts":{"size":3910,"mtime_ns":1787667189833394600,"indexed_at_ns":1787726739315335500,"word_count":332},"tests/e2e/storefront/checkout-flow.spec.ts":{"size":2766,"mtime_ns":1787650478684129200,"indexed_at_ns":1787726739321114600,"word_count":251},"tests/e2e/storefront/concurrency-stock.spec.ts":{"size":5868,"mtime_ns":1787663655637297800,"indexed_at_ns":1787726739327114800,"word_count":537},"tests/e2e/storefront/contact.spec.ts":{"size":2899,"mtime_ns":1787646431984582600,"indexed_at_ns":1787726739332612600,"word_count":238},"tests/e2e/storefront/error-pages-404-500.spec.ts":{"size":1238,"mtime_ns":1787661409021863900,"indexed_at_ns":1787726739338390800,"word_count":121},"tests/e2e/storefront/order-tracking.spec.ts":{"size":3125,"mtime_ns":1787657088442316700,"indexed_at_ns":1787726739344389200,"word_count":282},"tests/e2e/storefront/shop-filter-search.spec.ts":{"size":2151,"mtime_ns":1787659690298137400,"indexed_at_ns":1787726739349896500,"word_count":187},"tests/fixtures/admin-auth.setup.ts":{"size":1950,"mtime_ns":1787647018072959200,"indexed_at_ns":1787726739355457600,"word_count":195},"tests/fixtures/index.ts":{"size":194,"mtime_ns":1787646170488211800,"indexed_at_ns":1787726739360706700,"word_count":32},"tsconfig.json":{"size":439,"mtime_ns":1787650119041351000,"indexed_at_ns":1787726739807775300,"word_count":37,"hashes":{"tsconfig.json":"12f2e30da1a34da7d06440370b7d1930cd5a3c3293f485789f5cfa2434aeea6f"}}} \ No newline at end of file diff --git a/graphify-out/graph.html b/graphify-out/graph.html index 9f7487a..d372767 100644 --- a/graphify-out/graph.html +++ b/graphify-out/graph.html @@ -63,21 +63,12 @@
-<<<<<<< HEAD -
4107 nodes · 7379 edges · 301 communities
+
4104 nodes · 7379 edges · 311 communities